blob: 7741e609b7b0b825378f0ab06cf56262c0e858db [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500225L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700226W: http://piie.net/?section=acerhdf
227S: Maintained
228F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200229
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230ACER WMI LAPTOP EXTRAS
Lee, Chun-Yi182ae552012-12-14 16:14:24 +0800231M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700237M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200238M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500239L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400240W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800241Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400242T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700244F: drivers/acpi/
245F: drivers/pnp/pnpacpi/
246F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700247F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248
Len Brown8b59a452007-01-08 19:03:28 -0500249ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500251L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300252W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700254F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700262
Len Brown359acec2007-02-10 01:59:24 -0500263ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500269
Carlos Corbachobff431e2008-02-05 02:17:04 +0000270ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500271L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700273F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100275AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700276M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200277W: http://wiki.parisc-linux.org/AD1889
278L: linux-parisc@vger.kernel.org
279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700280F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
283M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100284L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700285W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000286S: Supported
287F: drivers/misc/ad525x_dpot.c
288
289AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/regulator/ad5398.c
295
296AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/input/misc/ad714x.c
302
303AD7877 TOUCHSCREEN DRIVER
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/touchscreen/ad7877.c
309
310AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7879.c
316
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700317ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
318M: Jiri Kosina <jkosina@suse.cz>
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200323L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/hwmon/adm1025
326F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330L: lm-sensors@lm-sensors.org
331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333
Michael Wucc0b88c2007-08-31 01:15:25 -0400334ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400335L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200336W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400339
Sakari Ailuse8e31622012-11-12 18:14:39 -0300340ADP1653 FLASH CONTROLLER DRIVER
341M: Sakari Ailus <sakari.ailus@iki.fi>
342L: linux-media@vger.kernel.org
343S: Maintained
344F: drivers/media/i2c/adp1653.c
345F: include/media/adp1653.h
346
Michael Hennerich527a1a82010-10-28 11:31:28 +0000347ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
348M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100349L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700350W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000351S: Supported
352F: drivers/mfd/adp5520.c
353F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700354F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800355F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000356F: drivers/input/keyboard/adp5520-keys.c
357
358ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
359M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100360L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700361W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362S: Supported
363F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800364F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000365
366ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
367M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100368L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700369W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000370S: Supported
371F: drivers/video/backlight/adp8860_bl.c
372
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100373ADS1015 HARDWARE MONITOR DRIVER
374M: Dirk Eibach <eibach@gdsys.de>
375L: lm-sensors@lm-sensors.org
376S: Maintained
377F: Documentation/hwmon/ads1015
378F: drivers/hwmon/ads1015.c
379F: include/linux/i2c/ads1015.h
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700382M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700384F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Jean Delvareb058b852009-12-09 20:36:08 +0100386ADT7475 HARDWARE MONITOR DRIVER
387M: Jean Delvare <khali@linux-fr.org>
388L: lm-sensors@lm-sensors.org
389S: Maintained
390F: Documentation/hwmon/adt7475
391F: drivers/hwmon/adt7475.c
392
Michael Hennerich527a1a82010-10-28 11:31:28 +0000393ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
394M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100395L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700396W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000397S: Supported
398F: drivers/input/misc/adxl34x.c
399
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400400ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400402L: linux-scsi@vger.kernel.org
403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700404F: Documentation/scsi/advansys.txt
405F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700408M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700410F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Antti Palosaari91952bc2012-10-01 12:28:46 -0300412AF9013 MEDIA DRIVER
413M: Antti Palosaari <crope@iki.fi>
414L: linux-media@vger.kernel.org
415W: http://linuxtv.org/
416W: http://palosaari.fi/linux/
417Q: http://patchwork.linuxtv.org/project/linux-media/list/
418T: git git://linuxtv.org/anttip/media_tree.git
419S: Maintained
420F: drivers/media/dvb-frontends/af9013*
421
422AF9033 MEDIA DRIVER
423M: Antti Palosaari <crope@iki.fi>
424L: linux-media@vger.kernel.org
425W: http://linuxtv.org/
426W: http://palosaari.fi/linux/
427Q: http://patchwork.linuxtv.org/project/linux-media/list/
428T: git git://linuxtv.org/anttip/media_tree.git
429S: Maintained
430F: drivers/media/dvb-frontends/af9033*
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200433L: linux-fsdevel@vger.kernel.org
434S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700435F: Documentation/filesystems/affs.txt
436F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700439M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700440L: linux-afs@lists.infradead.org
441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700442F: fs/afs/
443F: include/net/af_rxrpc.h
444F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700448T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/char/agp/
451F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800452F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700455M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456L: linux-scsi@vger.kernel.org
457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700458F: drivers/scsi/aha152x*
459F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Hannes Reinecke64624d42007-10-19 10:32:29 +0200461AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700462M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200463L: linux-scsi@vger.kernel.org
464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700465F: drivers/scsi/aic7xxx/
466F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200467
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700468AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700469M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700470L: linux-aio@kvack.org
471S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700472F: fs/aio.c
473F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700476M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700477L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478W: http://www.linux-usb.org/SpeedTouch/
479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700480F: drivers/usb/atm/speedtch.c
481F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Pierre Ossman272f1332007-05-14 21:25:26 +0200483ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700484M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700486F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200487
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000488ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700489M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100490L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700492F: Documentation/i2c/busses/i2c-ali1563
493F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700496M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700497M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500498M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700499S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700500L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700501F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Tobias Klauseradf92512011-02-09 10:58:29 +0100503ALTERA UART/JTAG UART SERIAL DRIVERS
504M: Tobias Klauser <tklauser@distanz.ch>
505L: linux-serial@vger.kernel.org
506L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
507S: Maintained
508F: drivers/tty/serial/altera_uart.c
509F: drivers/tty/serial/altera_jtaguart.c
510F: include/linux/altera_uart.h
511F: include/linux/altera_jtaguart.h
512
Andreas Herrmann512d1022011-05-25 20:43:31 +0200513AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100514M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200515L: lm-sensors@lm-sensors.org
516S: Maintained
517F: Documentation/hwmon/fam15h_power
518F: drivers/hwmon/fam15h_power.c
519
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700520AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700521M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700522L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700523S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700524F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700525
Jordan Crousef90b8112006-01-06 00:12:14 -0800526AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800527P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700528L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800529W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700531F: drivers/char/hw_random/geode-rng.c
532F: drivers/crypto/geode*
533F: drivers/video/geode/
534F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800535
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200536AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200537M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200538L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100539T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200540S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800541F: drivers/iommu/amd_iommu*.[ch]
542F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200543
Peter Orubae7f5b302008-07-28 18:44:11 +0200544AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100545M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700546L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700548F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200549
Stelian Pop284f42b2006-12-12 18:18:31 +0100550AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700551M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100552S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200553F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100554
Tom Tuckerf94b5332006-09-22 15:22:48 -0700555AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700556M: Tom Tucker <tom@opengridcomputing.com>
557M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700558L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700560F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700561
Michael Hennerich527a1a82010-10-28 11:31:28 +0000562ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200563M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100564L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000565L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700566W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000567S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100568F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200569F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000570F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000571F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100572F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000573
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400574ANALOG DEVICES INC ASOC DRIVERS
575L: uclinux-dist-devel@blackfin.uclinux.org
576L: alsa-devel@alsa-project.org (moderated for non-subscribers)
577W: http://blackfin.uclinux.org/
578S: Supported
579F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400580
Johannes Berg42269062006-07-25 16:15:50 +0200581AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700582M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000583L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700584L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700586F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200589M: Jiri Kosina <jkosina@suse.cz>
590S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700591F: arch/x86/kernel/apm_32.c
592F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800593F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200594F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700596APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700597M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700598L: linux-input@vger.kernel.org
599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700600F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700601
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700602APPLE SMC DRIVER
Henrik Rydbergd6185402010-04-14 16:14:11 +0200603M: Henrik Rydberg <rydberg@euromail.se>
604L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700606F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700609M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700611F: drivers/net/appletalk/
612F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Viresh Kumara4801672011-02-22 15:46:07 +0530614ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700615M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530616L: linux-ide@vger.kernel.org
617S: Maintained
618F: include/linux/pata_arasan_cf_data.h
619F: drivers/ata/pata_arasan_cf.c
620
Jaya Kumar1154ea72005-06-21 17:17:04 -0700621ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700622M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700624F: drivers/video/arcfb.c
625F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700628M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700630F: arch/arm/lib/floppydma.S
631F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Will Deacon6f965212011-07-01 14:38:53 +0100633ARM PMU PROFILING AND DEBUGGING
634M: Will Deacon <will.deacon@arm.com>
635S: Maintained
636F: arch/arm/kernel/perf_event*
637F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100638F: arch/arm/include/asm/pmu.h
639F: arch/arm/kernel/hw_breakpoint.c
640F: arch/arm/include/asm/hw_breakpoint.h
641
Russell Kingd4275352009-04-16 14:05:27 +0100642ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700643M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700644L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100645W: http://www.arm.linux.org.uk/
646S: Maintained
647F: arch/arm/
648
Stephen Boydd323c2432012-10-24 11:00:29 -0700649ARM SUB-ARCHITECTURES
650L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Zhang Yanfei56ca9d92013-01-11 14:32:04 -0800651S: Maintained
Stephen Boydd323c2432012-10-24 11:00:29 -0700652F: arch/arm/mach-*/
653F: arch/arm/plat-*/
654T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
655
Russell Kingcefbf4e2009-11-22 17:40:28 +0000656ARM PRIMECELL AACI PL041 DRIVER
657M: Russell King <linux@arm.linux.org.uk>
658S: Maintained
659F: sound/arm/aaci.*
660
661ARM PRIMECELL CLCD PL110 DRIVER
662M: Russell King <linux@arm.linux.org.uk>
663S: Maintained
664F: drivers/video/amba-clcd.*
665
666ARM PRIMECELL KMI PL050 DRIVER
667M: Russell King <linux@arm.linux.org.uk>
668S: Maintained
669F: drivers/input/serio/ambakmi.*
670F: include/linux/amba/kmi.h
671
Russell King2761f5c2007-05-24 06:56:08 +0200672ARM PRIMECELL MMCI PL180/1 DRIVER
Russell King08a5c9a2013-02-11 15:28:51 +0000673M: Russell King <linux@arm.linux.org.uk>
674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700675F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000676F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200677
Russell King1b4304e2013-02-11 15:26:27 +0000678ARM PRIMECELL UART PL010 AND PL011 DRIVERS
679M: Russell King <linux@arm.linux.org.uk>
680S: Maintained
681F: drivers/tty/serial/amba-pl01*.c
682F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683
Russell Kingcefbf4e2009-11-22 17:40:28 +0000684ARM PRIMECELL BUS SUPPORT
685M: Russell King <linux@arm.linux.org.uk>
686S: Maintained
687F: drivers/amba/
688F: include/linux/amba/bus.h
689
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800690ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700691M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700692L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800693S: Maintained
694
Sergey Lapin9c784f92008-08-03 02:29:48 +0100695ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700696M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700697L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100698S: Maintained
699
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800700ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700701M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700702L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800703S: Maintained
704
Maxime Ripard1b106692012-11-15 21:51:26 +0100705ARM/Allwinner A1X SoC support
706M: Maxime Ripard <maxime.ripard@free-electrons.com>
707L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
708S: Maintained
709F: arch/arm/mach-sunxi/
710
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800711ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700712M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800713M: Nicolas Ferre <nicolas.ferre@atmel.com>
714M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700715L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200716W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800717W: http://www.linux4sam.org
718S: Supported
719F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100720
Rob Herring986cf2e2011-06-22 11:28:53 -0500721ARM/CALXEDA HIGHBANK ARCHITECTURE
722M: Rob Herring <rob.herring@calxeda.com>
723L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
724S: Maintained
725F: arch/arm/mach-highbank/
726
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300727ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
728M: Anton Vorontsov <avorontsov@mvista.com>
729S: Maintained
730F: arch/arm/mach-cns3xxx/
731T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
732
Alexander Shiyan386ab512012-11-17 17:57:24 +0400733ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
734M: Alexander Shiyan <shc_work@mail.ru>
735L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
736S: Odd Fixes
737F: arch/arm/mach-clps711x/
738
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800739ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100740M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000741M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700742L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800743S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100744F: arch/arm/mach-ep93xx/
745F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800746
747ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700748M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700749L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800750S: Maintained
751
Russell Kingd4275352009-04-16 14:05:27 +0100752ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700753M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700754L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700755S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100756F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700757F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100758
Mike Rapoportd48134e2008-08-20 09:03:26 +0100759ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700760M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700761L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100762S: Maintained
763
Hubert Feurstein94150092009-10-07 08:36:07 +0100764ARM/CONTEC MICRO9 MACHINE SUPPORT
765M: Hubert Feurstein <hubert.feurstein@contec.at>
766S: Maintained
767F: arch/arm/mach-ep93xx/micro9.c
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700770M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771S: Maintained
772
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200773ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100774M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700775L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100776T: git git://git.berlios.de/gemini-board
777S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300778F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200779
Barry Songa990cbd2011-07-12 21:44:10 +0800780ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
781M: Barry Song <baohua.song@csr.com>
782L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
783S: Maintained
784F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800785F: drivers/dma/sirf-dma.c
786F: drivers/i2c/busses/i2c-sirf.c
787F: drivers/pinctrl/pinctrl-sirf.c
788F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800789
Russell Kingd4275352009-04-16 14:05:27 +0100790ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700791M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700792L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100793W: http://www.arm.linux.org.uk/
794S: Maintained
795F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700796F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100797
Russell Kinga9da4f72008-07-12 21:42:04 +0100798ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700799M: Daniel Ribeiro <drwyrm@gmail.com>
800M: Stefan Schmidt <stefan@openezx.org>
801M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200802L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100803W: http://www.openezx.org/
804S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200805T: topgit git://git.openezx.org/openezx.git
806F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100807
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200808ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100809M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700810L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100811S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700812T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300813F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200814
Russell Kingd4275352009-04-16 14:05:27 +0100815ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700816M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700817L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100818W: http://www.arm.linux.org.uk/
819S: Maintained
820F: arch/arm/include/asm/hardware/dec21285.h
821F: arch/arm/mach-footbridge/
822
Sascha Hauer86183a52008-07-24 23:50:35 +0200823ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700824M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700825L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200826S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700827T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100828F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700829F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200830
Shawn Guo8bcb9762011-10-07 22:24:18 +0800831ARM/FREESCALE IMX6
832M: Shawn Guo <shawn.guo@linaro.org>
833L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
834S: Maintained
835T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
836F: arch/arm/mach-imx/*imx6*
837
Shawn Guoa9866a02011-10-21 11:53:34 +0800838ARM/FREESCALE MXS ARM ARCHITECTURE
839M: Shawn Guo <shawn.guo@linaro.org>
840L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
841S: Maintained
842T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
843F: arch/arm/mach-mxs/
844
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800845ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700846M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700847L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800848S: Maintained
849
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100850ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700851M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700852L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100853S: Maintained
854
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200855ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700856M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100857M: Paul Parsons <lost.distance@yahoo.com>
858L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200859S: Maintained
860F: arch/arm/mach-pxa/hx4700.c
861F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100862F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200863
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100864ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700865M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200866W: www.jlime.com
867S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700868T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
869F: arch/arm/mach-sa1100/jornada720.c
870F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100871
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200872ARM/IGEP MACHINE SUPPORT
873M: Enric Balletbo i Serra <eballetbo@gmail.com>
874M: Javier Martinez Canillas <javier@dowhile0.org>
875L: linux-omap@vger.kernel.org
876L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
877S: Maintained
878F: arch/arm/mach-omap2/board-igep0020.c
879
Marek Vasut403d2972010-05-22 00:29:39 +0200880ARM/INCOME PXA270 SUPPORT
881M: Marek Vasut <marek.vasut@gmail.com>
882L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
883S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700884F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200885
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800886ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700887M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700888M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700889L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700890S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100891
892ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700893M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700894L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700895S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800896
897ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700898M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700899M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700901S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800902
903ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700904M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700905M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700906L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700907S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800908
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800909ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700910M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700911L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800912S: Maintained
913
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200914ARM/INTEL IXP4XX ARM ARCHITECTURE
915M: Imre Kaloz <kaloz@openwrt.org>
916M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100917L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200918S: Maintained
919F: arch/arm/mach-ixp4xx/
920
Joe Perches838553c2010-10-26 14:22:59 -0700921ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100922M: Jonathan Cameron <jic23@cam.ac.uk>
923L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
924S: Maintained
925F: arch/arm/mach-pxa/stargate2.c
926F: drivers/pcmcia/pxa2xx_stargate2.c
927
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800928ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700929M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700930M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700931L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700932S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800933
934ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700935M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700936L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800937S: Maintained
938
939ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700940M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700941L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800942S: Maintained
943
Philipp Zabel3b8861712008-07-09 21:27:15 +0100944ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700945M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100946S: Maintained
947
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200948ARM/Marvell Armada 370 and Armada XP SOC support
949M: Jason Cooper <jason@lakedaemon.net>
950M: Andrew Lunn <andrew@lunn.ch>
951M: Gregory Clement <gregory.clement@free-electrons.com>
952L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
953S: Maintained
954F: arch/arm/mach-mvebu/
955
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400956ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
957M: Jason Cooper <jason@lakedaemon.net>
958M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700959L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400960S: Maintained
961F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400962F: arch/arm/mach-kirkwood/
963F: arch/arm/mach-mv78xx0/
964F: arch/arm/mach-orion5x/
965F: arch/arm/plat-orion/
966
Alexander Clouterd69ac132011-04-14 15:22:02 -0700967ARM/Orion SoC/Technologic Systems TS-78xx platform support
968M: Alexander Clouter <alex@digriz.org.uk>
969L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
970W: http://www.digriz.org.uk/ts78xx/kernel
971S: Maintained
972F: arch/arm/mach-orion5x/ts78xx-*
973
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000974ARM/MICREL KS8695 ARCHITECTURE
975M: Greg Ungerer <gerg@uclinux.org>
976L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
977F: arch/arm/mach-ks8695
978S: Odd Fixes
979
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200980ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700981M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700982L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200983F: arch/arm/mach-pxa/mioa701.c
984S: Maintained
985
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100986ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700987M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100988S: Maintained
989
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100990ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700991M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200992M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700993M: STEricsson <STEricsson_nomadik_linux@list.st.com>
994L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
995S: Maintained
996F: arch/arm/mach-nomadik/
997F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100998F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200999T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001000
Andy Green9d762952009-05-19 06:41:42 -03001001ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001002M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001003L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1004W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1005S: Supported
1006
Daniel Walker0c19d212009-12-07 16:53:51 -08001007ARM/QUALCOMM MSM MACHINE SUPPORT
1008M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001009M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001010M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001011L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001012F: arch/arm/mach-msm/
1013F: drivers/video/msm/
1014F: drivers/mmc/host/msm_sdcc.c
1015F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001016F: drivers/tty/serial/msm_serial.h
1017F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001018F: drivers/*/pm8???-*
1019F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001020T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001021S: Maintained
1022
Dirk Opfer8459c152005-11-06 14:27:52 +00001023ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001024M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1025M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001026S: Maintained
1027
Marek Vasut5d783a22009-07-16 13:26:48 +02001028ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001029M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001030L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001031W: http://hackndev.com
1032S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001033F: arch/arm/mach-pxa/include/mach/palmtx.h
1034F: arch/arm/mach-pxa/palmtx.c
1035F: arch/arm/mach-pxa/include/mach/palmt5.h
1036F: arch/arm/mach-pxa/palmt5.c
1037F: arch/arm/mach-pxa/include/mach/palmld.h
1038F: arch/arm/mach-pxa/palmld.c
1039F: arch/arm/mach-pxa/include/mach/palmte2.h
1040F: arch/arm/mach-pxa/palmte2.c
1041F: arch/arm/mach-pxa/include/mach/palmtc.h
1042F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001043
Joe Perchesb57fe922009-12-14 18:00:52 -08001044ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001045M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001046L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001047W: http://hackndev.com
1048S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001049F: arch/arm/mach-pxa/include/mach/palmtreo.h
1050F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001051
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001052ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001053M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001054L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001055W: http://hackndev.com
1056S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001057F: arch/arm/mach-pxa/include/mach/palmz72.h
1058F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001061M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1063S: Maintained
1064
1065ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001066M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001067L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068W: http://www.arm.linux.org.uk/
1069S: Maintained
1070
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001071ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001072M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001073L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001074S: Maintained
1075
Russell Kingd4275352009-04-16 14:05:27 +01001076ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001077M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001078L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001079W: http://www.arm.linux.org.uk/
1080S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001081F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1082F: arch/arm/include/asm/hardware/ioc.h
1083F: arch/arm/include/asm/hardware/iomd.h
1084F: arch/arm/include/asm/hardware/memc.h
1085F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001086F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001087F: drivers/net/ethernet/i825xx/ether1*
1088F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001089F: drivers/scsi/arm/
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001092M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093W: http://www.shark-linux.de/shark.html
1094S: Maintained
1095
Ben Dooksb21477f2009-06-13 10:46:34 +01001096ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001097M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001098M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001099L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001100L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001101W: http://www.fluff.org/ben/linux/
1102S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001103F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001104F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001105F: arch/arm/mach-s3c24*/
1106F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001107F: drivers/*/*s3c2410*
1108F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001109F: drivers/spi/spi-s3c*
1110F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001112ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb02010-09-30 15:15:35 -07001113M: Kukjin Kim <kgene.kim@samsung.com>
1114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1115L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1116S: Maintained
1117F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001118F: arch/arm/mach-exynos*/
Kukjin Kimf556cb02010-09-30 15:15:35 -07001119
Kyungmin Park10ffa962011-03-04 17:36:26 -08001120ARM/SAMSUNG MOBILE MACHINE SUPPORT
1121M: Kyungmin Park <kyungmin.park@samsung.com>
1122L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1123S: Maintained
1124F: arch/arm/mach-s5pv210/mach-aquila.c
1125F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001126F: arch/arm/mach-exynos/mach-universal_c210.c
1127F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001128
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001129ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1130M: Kyungmin Park <kyungmin.park@samsung.com>
1131M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1132L: linux-arm-kernel@lists.infradead.org
1133L: linux-media@vger.kernel.org
1134S: Maintained
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001135F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001136F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001137
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001138ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1139M: Kyungmin Park <kyungmin.park@samsung.com>
1140M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001141M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001142L: linux-arm-kernel@lists.infradead.org
1143L: linux-media@vger.kernel.org
1144S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001145F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001146F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001147
1148ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1149M: Kyungmin Park <kyungmin.park@samsung.com>
1150M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1151L: linux-arm-kernel@lists.infradead.org
1152L: linux-media@vger.kernel.org
1153S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001154F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001155
Paul Mundtd48d38e2010-02-08 12:50:24 +09001156ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001157M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001158M: Magnus Damm <magnus.damm@gmail.com>
1159L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001160W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001161Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001162T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001163S: Supported
1164F: arch/arm/mach-shmobile/
1165F: drivers/sh/
1166
Dinh Nguyen66314222012-07-18 16:07:18 -06001167ARM/SOCFPGA ARCHITECTURE
1168M: Dinh Nguyen <dinguyen@altera.com>
1169S: Maintained
1170F: arch/arm/mach-socfpga/
1171
1172ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1173M: Dinh Nguyen <dinguyen@altera.com>
1174S: Maintained
1175F: drivers/clk/socfpga/
1176
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001177ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001178M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001179L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001180S: Maintained
1181
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001182ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001183M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001184L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1185S: Maintained
1186
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001187ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001188M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001189L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001190S: Maintained
1191
wanzongshun98ad6e32009-02-13 06:04:32 +01001192ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001193M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001194L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001195W: http://www.mcuos.com
1196S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001197F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001198F: drivers/input/keyboard/w90p910_keypad.c
1199F: drivers/input/touchscreen/w90p910_ts.c
1200F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001201F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001202F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001203F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001204F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001205F: drivers/usb/host/ehci-w90x900.c
1206F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001207
Linus Walleij54274d72010-04-04 10:58:03 +01001208ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001209M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001210L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1211S: Supported
1212F: arch/arm/mach-u300/
1213F: drivers/i2c/busses/i2c-stu300.c
1214F: drivers/rtc/rtc-coh901331.c
1215F: drivers/watchdog/coh901327_wdt.c
1216F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001217F: drivers/mfd/ab3100*
1218F: drivers/rtc/rtc-ab3100.c
1219F: drivers/rtc/rtc-coh901331.c
1220T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001221
Linus Walleij87572882010-12-22 09:18:29 +01001222ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001223M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001224M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001225L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1226S: Maintained
1227F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001228F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001229F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001230F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001231F: drivers/mfd/abx500*
1232F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001233F: drivers/mfd/dbx500*
1234F: drivers/mfd/db8500*
1235F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001236F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001237F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001238T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001239
Russell Kingd4275352009-04-16 14:05:27 +01001240ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001241M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001242L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001243W: http://www.arm.linux.org.uk/
1244S: Maintained
1245F: arch/arm/vfp/
1246
Marek Vasute66b6d82010-03-26 06:51:32 +01001247ARM/VOIPAC PXA270 SUPPORT
1248M: Marek Vasut <marek.vasut@gmail.com>
1249L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1250S: Maintained
1251F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001252F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001253
Tony Prisk04529fe2012-07-24 04:19:37 +12001254ARM/VT8500 ARM ARCHITECTURE
1255M: Tony Prisk <linux@prisktech.co.nz>
1256L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1257S: Maintained
1258F: arch/arm/mach-vt8500/
1259F: drivers/video/vt8500lcdfb.*
1260F: drivers/video/wm8505fb*
1261F: drivers/video/wmt_ge_rops.*
1262F: drivers/tty/serial/vt8500_serial.c
Cesar Eduardo Barros7beefe12013-01-04 15:35:18 -08001263F: drivers/rtc/rtc-vt8500.c
Tony Prisk3a96dff2012-11-18 15:33:06 +13001264F: drivers/mmc/host/wmt-sdmmc.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001265
Marek Vasute66b6d82010-03-26 06:51:32 +01001266ARM/ZIPIT Z2 SUPPORT
1267M: Marek Vasut <marek.vasut@gmail.com>
1268L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1269S: Maintained
1270F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001271F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001272
Catalin Marinas38074222012-03-05 11:49:34 +00001273ARM64 PORT (AARCH64 ARCHITECTURE)
1274M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001275M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001276L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1277S: Maintained
1278F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001279F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001280
George Josephd58de032010-03-05 22:17:25 +01001281ASC7621 HARDWARE MONITOR DRIVER
1282M: George Joseph <george.joseph@fairview5.com>
1283L: lm-sensors@lm-sensors.org
1284S: Maintained
1285F: Documentation/hwmon/asc7621
1286F: drivers/hwmon/asc7621.c
1287
Corentin Charyb229ece2011-02-26 10:20:40 +01001288ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001289M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001291L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001292W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001294F: drivers/platform/x86/asus*.c
1295F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001297ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001298M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001299L: lm-sensors@lm-sensors.org
1300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001301F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001302
Andrew Morton953a6472008-11-06 12:53:28 -08001303ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001304M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001305W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001307F: Documentation/crypto/async-tx-api.txt
1308F: crypto/async_tx/
1309F: drivers/dma/
1310F: include/linux/dmaengine.h
1311F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001312
Wolfram Sanga1867d32009-09-18 22:45:51 +02001313AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001314M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001315L: linux-i2c@vger.kernel.org
1316S: Maintained
1317F: drivers/misc/eeprom/at24.c
1318F: include/linux/i2c/at24.h
1319
Randy Dunlape7839f22008-10-12 16:11:45 -07001320ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001321M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001322W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001324F: Documentation/aoe/
1325F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Joe Perches9a10a872010-12-01 09:37:55 -08001327ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001328M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001329L: linux-wireless@vger.kernel.org
1330S: Supported
1331F: drivers/net/wireless/ath/*
1332
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001333ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001334M: Jiri Slaby <jirislaby@gmail.com>
1335M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001336M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001337L: linux-wireless@vger.kernel.org
1338L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001339W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001340S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001341F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001342
Kalle Valo12e62d62011-09-13 10:21:25 +03001343ATHEROS ATH6KL WIRELESS DRIVER
1344M: Kalle Valo <kvalo@qca.qualcomm.com>
1345L: linux-wireless@vger.kernel.org
1346W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1347T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1348S: Supported
1349F: drivers/net/wireless/ath/ath6kl/
1350
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001351ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001352M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1353M: Jouni Malinen <jouni@qca.qualcomm.com>
1354M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1355M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001356L: linux-wireless@vger.kernel.org
1357L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001358W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001359S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001360F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001361
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001362WILOCITY WIL6210 WIRELESS DRIVER
1363M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1364L: linux-wireless@vger.kernel.org
1365L: wil6210@qca.qualcomm.com
1366S: Supported
1367W: http://wireless.kernel.org/en/users/Drivers/wil6210
1368F: drivers/net/wireless/ath/wil6210/
1369
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001370CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1371M: Christian Lamparter <chunkeey@googlemail.com>
1372L: linux-wireless@vger.kernel.org
1373W: http://wireless.kernel.org/en/users/Drivers/carl9170
1374S: Maintained
1375F: drivers/net/wireless/ath/carl9170/
1376
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001377ATK0110 HWMON DRIVER
1378M: Luca Tettamanti <kronos.it@gmail.com>
1379L: lm-sensors@lm-sensors.org
1380S: Maintained
1381F: drivers/hwmon/asus_atk0110.c
1382
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001383ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001384M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001386F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001387
Chris Snook7ae115b2008-09-09 03:26:57 -04001388ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001389M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001390M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001391L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001392W: http://sourceforge.net/projects/atl1
1393W: http://atl1.sourceforge.net
1394S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001395F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001398M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001399L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001400L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401W: http://linux-atm.sourceforge.net
1402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001403F: drivers/atm/
1404F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001405F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001407ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001408M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001409S: Maintained
1410F: drivers/mmc/host/atmel-mci.c
1411F: drivers/mmc/host/atmel-mci-regs.h
1412
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001413ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001414M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001415S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001416F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001417
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001418ATMEL DMA DRIVER
1419M: Nicolas Ferre <nicolas.ferre@atmel.com>
1420L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1421S: Supported
1422F: drivers/dma/at_hdmac.c
1423F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001424F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001425
Josh Wu15515542012-03-23 17:56:29 +08001426ATMEL ISI DRIVER
1427M: Josh Wu <josh.wu@atmel.com>
1428L: linux-media@vger.kernel.org
1429S: Supported
Cesar Eduardo Barrosf2294c22013-01-04 15:35:21 -08001430F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001431F: include/media/atmel-isi.h
1432
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001433ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001434M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001435L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001437F: drivers/video/atmel_lcdfb.c
1438F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001439
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001440ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001441M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001442S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001443F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001444
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001445ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001446M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001447S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001448F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001449
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001450ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1451M: Nicolas Ferre <nicolas.ferre@atmel.com>
1452L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1453S: Supported
1454F: drivers/misc/atmel_tclib.c
1455F: drivers/clocksource/tcb_clksrc.c
1456
Josh Wuff2675d2012-03-23 17:56:55 +08001457ATMEL TSADCC DRIVER
1458M: Josh Wu <josh.wu@atmel.com>
1459L: linux-input@vger.kernel.org
1460S: Supported
1461F: drivers/input/touchscreen/atmel_tsadcc.c
1462
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001463ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001464M: Nicolas Ferre <nicolas.ferre@atmel.com>
1465L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001466S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001467F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001470M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001471L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472W: http://www.thekelleys.org.uk/atmel
1473W: http://atmelwlandriver.sourceforge.net/
1474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001475F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Chris Wrighta92b7b82005-07-07 18:12:23 -07001477AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001478M: Al Viro <viro@zeniv.linux.org.uk>
1479M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001480L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001481W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001482T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001484F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001485F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001486F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001487
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001488AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001489M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001490W: http://miguelojeda.es/auxdisplay.htm
1491W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001493F: drivers/auxdisplay/
1494F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001495
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001496AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001497M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1498M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001499W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001500W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001501W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001503F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001504
1505AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001506M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1507M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001509F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001512M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001514W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001516F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001517F: include/net/ax25.h
1518F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001520AZ6007 DVB DRIVER
1521M: Mauro Carvalho Chehab <mchehab@redhat.com>
1522L: linux-media@vger.kernel.org
1523W: http://linuxtv.org
1524T: git git://linuxtv.org/media_tree.git
1525S: Maintained
1526F: drivers/media/usb/dvb-usb-v2/az6007.c
1527
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001528B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001529M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001530L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001531L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001532W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001534F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001535
1536B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001537M: Larry Finger <Larry.Finger@lwfinger.net>
1538M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001539L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001540L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001541W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001543F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001544
Richard Purdie300abeb2007-02-07 22:21:07 +00001545BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001546M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001548F: drivers/video/backlight/
1549F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001550
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001551BATMAN ADVANCED
1552M: Marek Lindner <lindner_marek@yahoo.de>
1553M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001554M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001555L: b.a.t.m.a.n@lists.open-mesh.org
1556W: http://www.open-mesh.org/
1557S: Maintained
1558F: net/batman-adv/
1559
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001560BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001561M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001562L: linux-hams@vger.kernel.org
1563W: http://www.baycom.org/~tom/ham/ham.html
1564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001565F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001566
1567BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001568S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001569F: Documentation/filesystems/befs.txt
1570F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001571
1572BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001573M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001575F: Documentation/filesystems/bfs.txt
1576F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001577F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001578
Bryan Wu1394f032007-05-06 14:50:22 -07001579BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001580M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001581L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001582W: http://blackfin.uclinux.org
1583S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001584F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001585
Bryan Wue190d6b2007-07-17 14:43:44 +08001586BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001587L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001588W: http://blackfin.uclinux.org
1589S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001590F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001591
Mike Frysinger566da5b2007-06-11 15:31:30 +08001592BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001593M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001594L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001595W: http://blackfin.uclinux.org
1596S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001597F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001598
Mike Frysinger936ed492010-03-10 15:20:38 -08001599BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001600M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001601L: uclinux-dist-devel@blackfin.uclinux.org
1602W: http://blackfin.uclinux.org
1603S: Supported
1604F: drivers/mmc/host/bfin_sdh.c
1605
Bryan Wu1394f032007-05-06 14:50:22 -07001606BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001607M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001608L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001609W: http://blackfin.uclinux.org
1610S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001611F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001612
Bryan Wu1e6d3202007-07-15 02:50:02 +08001613BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001614M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001615L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001616W: http://blackfin.uclinux.org
1617S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001618F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001619
Bryan Wud24ecfc2007-05-01 23:26:32 +02001620BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001621M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001622L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001623W: http://blackfin.uclinux.org/
1624S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001625F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001626
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001627BLINKM RGB LED DRIVER
1628M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1629S: Maintained
1630F: drivers/leds/leds-blinkm.c
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001633M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001634T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001636F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Joern Engel2b54aae2008-02-06 01:38:02 -08001638BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001639M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001640L: linux-mtd@lists.infradead.org
1641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001642F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001643
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001644BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001645M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001646M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001647M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001648L: linux-bluetooth@vger.kernel.org
1649W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001650T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1651T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001653F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001656M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001657M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001658M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001659L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001660W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001661T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1662T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001664F: net/bluetooth/
1665F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001668M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001669M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001670L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001671W: http://sourceforge.net/projects/bonding/
1672S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001673F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001674F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Gary Zambrano39105892006-06-22 17:26:20 -07001676BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001677M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001678L: netdev@vger.kernel.org
1679S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001680F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001681
Michael Chan948c51e2006-06-04 02:51:39 -07001682BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001683M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001684L: netdev@vger.kernel.org
1685S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001686F: drivers/net/ethernet/broadcom/bnx2.*
1687F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001688
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001689BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001690M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001691L: netdev@vger.kernel.org
1692S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001693F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001694
Stephen Warrenf680f252012-09-15 00:18:54 -06001695BROADCOM BCM2835 ARM ARCHICTURE
1696M: Stephen Warren <swarren@wwwdotorg.org>
1697L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1698T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1699S: Maintained
1700F: arch/arm/mach-bcm2835/
1701F: arch/arm/boot/dts/bcm2835*
1702F: arch/arm/configs/bcm2835_defconfig
1703F: drivers/*/*bcm2835*
1704
Michael Chan948c51e2006-06-04 02:51:39 -07001705BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001706M: Matt Carlson <mcarlson@broadcom.com>
1707M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001708L: netdev@vger.kernel.org
1709S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001710F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001711
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001712BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1713M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001714M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001715M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001716M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001717L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001718L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001719S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001720F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001721
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001722BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1723M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1724L: linux-scsi@vger.kernel.org
1725S: Supported
1726F: drivers/scsi/bnx2fc/
1727
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001728BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1729M: Rafał Miłecki <zajec5@gmail.com>
1730L: linux-wireless@vger.kernel.org
1731S: Maintained
1732F: drivers/bcma/
1733F: include/linux/bcma/
1734
Jing Huang7725ccf2009-09-23 17:46:15 -07001735BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001736M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001737L: linux-scsi@vger.kernel.org
1738S: Supported
1739F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001740
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001741BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1742M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001743L: netdev@vger.kernel.org
1744S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001745F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001746
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001747BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001748M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001749L: linux-scsi@vger.kernel.org
1750S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001751F: block/bsg.c
1752F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001753F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001754
Clemens Ladischaf399172011-01-10 16:32:54 +01001755BT87X AUDIO DRIVER
1756M: Clemens Ladisch <clemens@ladisch.de>
1757L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1758T: git git://git.alsa-project.org/alsa-kernel.git
1759S: Maintained
1760F: Documentation/sound/alsa/Bt87x.txt
1761F: sound/pci/bt87x.c
1762
Michael Bueschff1d5c22008-07-25 01:46:10 -07001763BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001764M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001765W: http://bu3sch.de/btgpio.php
1766S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001767F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001768
Joe Percheseb1eb042009-01-21 10:49:16 -05001769BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001770M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001771L: linux-btrfs@vger.kernel.org
1772W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001773Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001774T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001776F: Documentation/filesystems/btrfs.txt
1777F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001780M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001781L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001782W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001783T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001784S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001785F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001786F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Clemens Ladischaf399172011-01-10 16:32:54 +01001788C-MEDIA CMI8788 DRIVER
1789M: Clemens Ladisch <clemens@ladisch.de>
1790L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1791T: git git://git.alsa-project.org/alsa-kernel.git
1792S: Maintained
1793F: sound/pci/oxygen/
1794
Mark Salter21413552011-10-04 11:21:42 -04001795C6X ARCHITECTURE
1796M: Mark Salter <msalter@redhat.com>
1797M: Aurelien Jacquiot <a-jacquiot@ti.com>
1798L: linux-c6x-dev@linux-c6x.org
1799W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1800S: Maintained
1801F: arch/c6x/
1802
David Howellsa5432f52009-04-20 15:46:45 +01001803CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001804M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001805L: linux-cachefs@redhat.com
1806S: Supported
1807F: Documentation/filesystems/caching/cachefiles.txt
1808F: fs/cachefiles/
1809
Jonathan Corbet77d51402007-03-22 19:44:17 -03001810CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001811M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001812L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001813T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001815F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001816F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001817
Joe Perches201b6ba2010-09-07 20:33:24 +00001818CAIF NETWORK LAYER
1819M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1820L: netdev@vger.kernel.org
1821S: Supported
1822F: Documentation/networking/caif/
1823F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001824F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001825F: include/net/caif/
1826F: net/caif/
1827
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001828CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001829M: Muli Ben-Yehuda <muli@il.ibm.com>
1830M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001831L: discuss@x86-64.org
1832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001833F: arch/x86/kernel/pci-calgary_64.c
1834F: arch/x86/kernel/tce_64.c
1835F: arch/x86/include/asm/calgary.h
1836F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001837
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001838CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001839M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001840L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001841W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001842T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001843S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001844F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001845F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001846F: include/uapi/linux/can.h
1847F: include/uapi/linux/can/bcm.h
1848F: include/uapi/linux/can/raw.h
1849F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001850
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001851CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001852M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001853M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001854L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001855W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001856T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001857S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001858F: drivers/net/can/
1859F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001860F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001861F: include/uapi/linux/can/error.h
1862F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001863
James Morris95d16c72012-03-16 12:05:48 +11001864CAPABILITIES
1865M: Serge Hallyn <serge.hallyn@canonical.com>
1866L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001867S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001868F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001869F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001870F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001871F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001872F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001873
Arnd Bergmannb8154542008-05-16 11:10:59 +02001874CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001875M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001876L: linuxppc-dev@lists.ozlabs.org
1877L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001878W: http://www.ibm.com/developerworks/power/cell/
1879S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001880F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001881F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001882F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001883F: arch/powerpc/oprofile/*cell*
1884F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001885
Sage Weil9030aaf2009-10-06 11:31:15 -07001886CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001887M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001888L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001889W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001890T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001891S: Supported
1892F: Documentation/filesystems/ceph.txt
1893F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001894F: net/ceph
1895F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001896F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001897
David Vrabel18332a82008-09-17 16:34:44 +01001898CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001899L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001900S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001901F: Documentation/usb/WUSB-Design-overview.txt
1902F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001903F: drivers/usb/host/hwa-hc.c
1904F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001905F: drivers/usb/wusbcore/
1906F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001907
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001908CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001909M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001910W: http://miguelojeda.es/auxdisplay.htm
1911W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001913F: drivers/auxdisplay/cfag12864b.c
1914F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001915
1916CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001917M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001918W: http://miguelojeda.es/auxdisplay.htm
1919W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001921F: drivers/auxdisplay/cfag12864bfb.c
1922F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001923
Johannes Berg704232c2007-04-23 12:20:05 -07001924CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001925M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001926L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001927W: http://wireless.kernel.org/
1928T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1929T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001930S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001931F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07001932F: include/net/cfg80211.h
1933F: net/wireless/*
1934X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001935
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001936CHAR and MISC DRIVERS
1937M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001938M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001939T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001940S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001941F: drivers/char/*
1942F: drivers/misc/*
1943
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001944CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001945M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08001946M: Joe Perches <joe@perches.com>
1947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001948F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001949
Harry Weif8407f22011-02-25 14:44:15 -08001950CHINESE DOCUMENTATION
1951M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08001952L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f22011-02-25 14:44:15 -08001953L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1954S: Maintained
1955F: Documentation/zh_CN/
1956
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001957CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1958M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1959L: linux-usb@vger.kernel.org
1960S: Maintained
1961F: drivers/usb/chipidea/
1962
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001963CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001964M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001965M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001966M: Neel Patel <neepatel@cisco.com>
1967M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001968S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001969F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001970
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001971CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001972M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001973L: netdev@vger.kernel.org
1974S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001975F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001976
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001977CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001978M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001979L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001981F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001982
Timur Tabid9e9d822008-04-24 08:45:26 +10001983CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06001984M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07001985L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06001986S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07001987F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001988
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001989CLEANCACHE API
1990M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1991L: linux-kernel@vger.kernel.org
1992S: Maintained
1993F: mm/cleancache.c
1994F: include/linux/cleancache.h
1995
Russell Kingd4275352009-04-16 14:05:27 +01001996CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001997M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001998S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001999F: include/linux/clk.h
2000
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002001CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002002M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002003M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
2004M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002005L: linux-scsi@vger.kernel.org
2006S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002007F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002008
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002009CMPC ACPI DRIVER
2010M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2011M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002012L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002013S: Supported
2014F: drivers/platform/x86/classmate-laptop.c
2015
Nicolas Palix74425ee2010-06-06 17:15:01 +02002016COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002017M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002018M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002019M: Nicolas Palix <nicolas.palix@imag.fr>
2020L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002021W: http://coccinelle.lip6.fr/
2022S: Supported
2023F: scripts/coccinelle/
2024F: scripts/coccicheck
2025
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002027M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028M: coda@cs.cmu.edu
2029L: codalist@coda.cs.cmu.edu
2030W: http://www.coda.cs.cmu.edu/
2031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002032F: Documentation/filesystems/coda.txt
2033F: fs/coda/
2034F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002035F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
Mike Turquette7704add2012-05-02 18:37:45 -07002037COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002038M: Mike Turquette <mturquette@linaro.org>
2039L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2040T: git git://git.linaro.org/people/mturquette/linux.git
2041S: Maintained
2042F: drivers/clk/clk.c
2043F: drivers/clk/clk-*
2044F: include/linux/clk-pr*
2045
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002046COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002047M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002048L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002049L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002050W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002051Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002052T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002053S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002054F: Documentation/filesystems/cifs.txt
2055F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002058M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002059L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002061F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
2063COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002064M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002065L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002067F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
2069COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002070M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002071L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002073F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002075COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002076M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002077L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002079F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002080
Simon Arlott949be0f2007-03-06 02:47:46 -08002081CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002082M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002083L: accessrunner-general@lists.sourceforge.net
2084W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002086F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002087
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002088CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002089M: Joel Becker <jlbec@evilplan.org>
2090T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002091S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002092F: fs/configfs/
2093F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002094
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002095CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002096M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002097L: netdev@vger.kernel.org
2098S: Maintained
2099F: drivers/connector/
2100
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002101CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002102M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002103M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002104L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002105L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002106T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002108F: include/linux/cgroup*
2109F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002110F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002111
Rudolf Marekbebe4672007-05-08 17:22:02 +02002112CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002113M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002114L: lm-sensors@lm-sensors.org
2115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002116F: Documentation/hwmon/coretemp
2117F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002120M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121W: http://www.fi.muni.cz/~kas/cosa/
2122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002123F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Florian Fainelli4371ee32009-06-01 02:43:17 -07002125CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002126M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002127L: netdev@vger.kernel.org
2128S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002129F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002130
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002132M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002133L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002134L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002136F: drivers/cpufreq/
2137F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
2139CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002140M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002142F: arch/x86/kernel/cpuid.c
2143F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002145CPU POWER MONITORING SUBSYSTEM
2146M: Dominik Brodowski <linux@dominikbrodowski.net>
2147M: Thomas Renninger <trenn@suse.de>
2148S: Maintained
2149F: tools/power/cpupower
2150
Paul Jacksoned90fb42005-09-27 21:45:37 -07002151CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002152M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002153W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002154W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002156F: Documentation/cgroups/cpusets.txt
2157F: include/linux/cpuset.h
2158F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002161W: http://sourceforge.net/projects/cramfs/
2162S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002163F: Documentation/filesystems/cramfs.txt
2164F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
2166CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002167M: Mikael Starvik <starvik@axis.com>
2168M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002169L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170W: http://developer.axis.com
2171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002172F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002173F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
2175CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002176M: Herbert Xu <herbert@gondor.apana.org.au>
2177M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002179T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002181F: Documentation/crypto/
2182F: arch/*/crypto/
2183F: crypto/
2184F: drivers/crypto/
2185F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Neil Horman5b07bd52009-02-05 16:03:04 +11002187CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002188M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002189L: linux-crypto@vger.kernel.org
2190S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002191F: crypto/ansi_cprng.c
2192F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002193
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002194CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002195M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002197F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002198
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002199CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002200M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002201L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002202L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002203T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002204W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002205W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002207F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002208F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002209F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002210
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002211CX88 VIDEO4LINUX DRIVER
2212M: Mauro Carvalho Chehab <mchehab@redhat.com>
2213L: linux-media@vger.kernel.org
2214W: http://linuxtv.org
2215T: git git://linuxtv.org/media_tree.git
2216S: Odd fixes
2217F: Documentation/video4linux/cx88/
2218F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002219
Antti Palosaari91952bc2012-10-01 12:28:46 -03002220CXD2820R MEDIA DRIVER
2221M: Antti Palosaari <crope@iki.fi>
2222L: linux-media@vger.kernel.org
2223W: http://linuxtv.org/
2224W: http://palosaari.fi/linux/
2225Q: http://patchwork.linuxtv.org/project/linux-media/list/
2226T: git git://linuxtv.org/anttip/media_tree.git
2227S: Maintained
2228F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002229
Steve Wisee5ec3782008-05-20 14:06:33 -07002230CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002231M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002232L: netdev@vger.kernel.org
2233W: http://www.chelsio.com
2234S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002235F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002236
2237CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002238M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002239L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002240W: http://www.openfabrics.org
2241S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002242F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002243
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002244CXGB4 ETHERNET DRIVER (CXGB4)
2245M: Dimitris Michailidis <dm@chelsio.com>
2246L: netdev@vger.kernel.org
2247W: http://www.chelsio.com
2248S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002249F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002250
2251CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2252M: Steve Wise <swise@chelsio.com>
2253L: linux-rdma@vger.kernel.org
2254W: http://www.openfabrics.org
2255S: Supported
2256F: drivers/infiniband/hw/cxgb4/
2257
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002258CXGB4VF ETHERNET DRIVER (CXGB4VF)
2259M: Casey Leedom <leedom@chelsio.com>
2260L: netdev@vger.kernel.org
2261W: http://www.chelsio.com
2262S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002263F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002264
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002265STMMAC ETHERNET DRIVER
2266M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2267L: netdev@vger.kernel.org
2268W: http://www.stlinux.com
2269S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002270F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002273M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002274L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275W: http://www.arm.linux.org.uk/
2276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002277F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002278
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002280M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002281W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002283F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
2285CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002287S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002288F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002289F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002290F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
2292CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002294S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002295F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002297CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002298M: Javier Martinez Canillas <javier@dowhile0.org>
2299L: linux-input@vger.kernel.org
2300S: Maintained
2301F: drivers/input/touchscreen/cyttsp*
2302F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002303
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002305M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306W: http://yaina.de/jreuter/
2307W: http://www.qsl.net/dl1bke/
2308L: linux-hams@vger.kernel.org
2309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002310F: net/ax25/af_ax25.c
2311F: net/ax25/ax25_dev.c
2312F: net/ax25/ax25_ds_*
2313F: net/ax25/ax25_in.c
2314F: net/ax25/ax25_out.c
2315F: net/ax25/ax25_timer.c
2316F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002318DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002319L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002320S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002321F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002322F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002323
2324DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002325M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002326W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002327M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002329F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002330
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002332M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002333M: Ali Akcaagac <aliakc@web.de>
2334M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002336L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337L: http://lists.twibble.org/mailman/listinfo/dc395x/
2338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002339F: Documentation/scsi/dc395x.txt
2340F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002342DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002343M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002344L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002345W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002347F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002348F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002349F: include/linux/tfrc.h
2350F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353W: http://linux-decnet.sourceforge.net
2354L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002355S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002356F: Documentation/networking/decnet.txt
2357F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
2359DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002360M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002362F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002364DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002365M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002366L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002368F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002369
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002371M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372W: http://www.debian.org/~dz/i8k/
2373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002374F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002375F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Doug Warzecha90563ec2005-09-06 15:17:15 -07002377DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002378M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002380F: Documentation/dcdbas.txt
2381F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002382
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002383DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002384M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002385S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002386F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002387
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002388DESIGNWARE USB3 DRD IP DRIVER
2389M: Felipe Balbi <balbi@ti.com>
2390L: linux-usb@vger.kernel.org
2391L: linux-omap@vger.kernel.org
2392T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2393S: Maintained
2394F: drivers/usb/dwc3/
2395
Kyungmin Park89d07762012-01-10 15:09:09 -08002396DEVICE FREQUENCY (DEVFREQ)
2397M: MyungJoo Ham <myungjoo.ham@samsung.com>
2398M: Kyungmin Park <kyungmin.park@samsung.com>
2399L: linux-kernel@vger.kernel.org
2400S: Maintained
2401F: drivers/devfreq/
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002404M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406S: Maintained
2407
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002408DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002409M: Alasdair Kergon <agk@redhat.com>
2410M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002411L: dm-devel@redhat.com
2412W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002413Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002414T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002416F: Documentation/device-mapper/
2417F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002418F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002419F: include/linux/device-mapper.h
2420F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002421
Guenter Roeck335d7c52011-01-26 11:45:49 -08002422DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002423M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002424L: linux-i2c@vger.kernel.org
2425S: Maintained
2426F: drivers/i2c/busses/i2c-diolan-u2c.c
2427
Randy Dunlape7839f22008-10-12 16:11:45 -07002428DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002429M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002431F: Documentation/filesystems/dnotify.txt
2432F: fs/notify/dnotify/
2433F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
2435DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002436M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2438W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2439W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2440S: Maintained
2441
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002442DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002443M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002445F: Documentation/filesystems/quota.txt
2446F: fs/quota/
2447F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002448F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
Bernie Thompson702686a2012-03-01 13:52:13 -08002450DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2451M: Bernie Thompson <bernie@plugable.com>
2452L: linux-fbdev@vger.kernel.org
2453S: Maintained
2454W: http://plugable.com/category/projects/udlfb/
2455F: drivers/video/udlfb.c
2456F: include/video/udlfb.h
2457F: Documentation/fb/udlfb.txt
2458
Randy Dunlape7839f22008-10-12 16:11:45 -07002459DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002460M: Christine Caulfield <ccaulfie@redhat.com>
2461M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002462L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002463W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002464T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002465S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002466F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002467
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302468DMA BUFFER SHARING FRAMEWORK
2469M: Sumit Semwal <sumit.semwal@linaro.org>
2470S: Maintained
2471L: linux-media@vger.kernel.org
2472L: dri-devel@lists.freedesktop.org
2473L: linaro-mm-sig@lists.linaro.org
2474F: drivers/base/dma-buf*
2475F: include/linux/dma-buf*
2476F: Documentation/dma-buf-sharing.txt
2477T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2478
Dan Williamsb3e5f262007-08-07 10:26:35 -07002479DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002480M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002481M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002482S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002483F: drivers/dma/
2484F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302485T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2486T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002487
Juerg Haefligerb8250372007-06-09 10:11:16 -04002488DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002489M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002490L: lm-sensors@lm-sensors.org
2491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002492F: Documentation/hwmon/dme1737
2493F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002494
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002495DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002496M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002497L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002498S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002499F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002500
Joe Perches7d2c86b2009-04-07 20:59:01 -07002501DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002502M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002503L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002504T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002506F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002509M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510L: blinux-list@redhat.com
2511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002512F: drivers/char/dtlk.c
2513F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002515DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002516M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002517L: linux-scsi@vger.kernel.org
2518W: http://www.adaptec.com/
2519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002520F: drivers/scsi/dpt*
2521F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002522
Philipp Reisnerb411b362009-09-25 16:07:19 -07002523DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002524P: Philipp Reisner
2525P: Lars Ellenberg
2526M: drbd-dev@lists.linbit.com
2527L: drbd-user@lists.linbit.com
2528W: http://www.drbd.org
2529T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2530T: git git://git.drbd.org/drbd-8.3.git
2531S: Supported
2532F: drivers/block/drbd/
2533F: lib/lru_cache.c
2534F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002535
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002536DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002537M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002538T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002540F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002541F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002542F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002543F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002544F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002545F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002546F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
2548DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002549M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002550L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002551T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002553F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002554F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002555F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Chris Wilson8daf7472010-09-28 14:07:26 +01002557INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002558M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002559L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002560L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002561T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002562S: Supported
2563F: drivers/gpu/drm/i915
2564F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002565F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002566
Kyungmin Park398a6d42011-11-02 11:33:16 +09002567DRM DRIVERS FOR EXYNOS
2568M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002569M: Joonyoung Shim <jy0922.shim@samsung.com>
2570M: Seung-Woo Kim <sw0312.kim@samsung.com>
2571M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002572L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002573T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002574S: Supported
2575F: drivers/gpu/drm/exynos
2576F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002577F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002578
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002579DRM DRIVERS FOR NVIDIA TEGRA
2580M: Thierry Reding <thierry.reding@avionic-design.de>
2581L: dri-devel@lists.freedesktop.org
2582L: linux-tegra@vger.kernel.org
2583T: git git://gitorious.org/thierryreding/linux.git
2584S: Maintained
2585F: drivers/gpu/drm/tegra/
2586F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2587
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002589M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002590L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002592F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
Antti Palosaari91952bc2012-10-01 12:28:46 -03002594DVB_USB_AF9015 MEDIA DRIVER
2595M: Antti Palosaari <crope@iki.fi>
2596L: linux-media@vger.kernel.org
2597W: http://linuxtv.org/
2598W: http://palosaari.fi/linux/
2599Q: http://patchwork.linuxtv.org/project/linux-media/list/
2600T: git git://linuxtv.org/anttip/media_tree.git
2601S: Maintained
2602F: drivers/media/usb/dvb-usb-v2/af9015*
2603
2604DVB_USB_AF9035 MEDIA DRIVER
2605M: Antti Palosaari <crope@iki.fi>
2606L: linux-media@vger.kernel.org
2607W: http://linuxtv.org/
2608W: http://palosaari.fi/linux/
2609Q: http://patchwork.linuxtv.org/project/linux-media/list/
2610T: git git://linuxtv.org/anttip/media_tree.git
2611S: Maintained
2612F: drivers/media/usb/dvb-usb-v2/af9035*
2613
2614DVB_USB_ANYSEE MEDIA DRIVER
2615M: Antti Palosaari <crope@iki.fi>
2616L: linux-media@vger.kernel.org
2617W: http://linuxtv.org/
2618W: http://palosaari.fi/linux/
2619Q: http://patchwork.linuxtv.org/project/linux-media/list/
2620T: git git://linuxtv.org/anttip/media_tree.git
2621S: Maintained
2622F: drivers/media/usb/dvb-usb-v2/anysee*
2623
2624DVB_USB_AU6610 MEDIA DRIVER
2625M: Antti Palosaari <crope@iki.fi>
2626L: linux-media@vger.kernel.org
2627W: http://linuxtv.org/
2628W: http://palosaari.fi/linux/
2629Q: http://patchwork.linuxtv.org/project/linux-media/list/
2630T: git git://linuxtv.org/anttip/media_tree.git
2631S: Maintained
2632F: drivers/media/usb/dvb-usb-v2/au6610*
2633
2634DVB_USB_CE6230 MEDIA DRIVER
2635M: Antti Palosaari <crope@iki.fi>
2636L: linux-media@vger.kernel.org
2637W: http://linuxtv.org/
2638W: http://palosaari.fi/linux/
2639Q: http://patchwork.linuxtv.org/project/linux-media/list/
2640T: git git://linuxtv.org/anttip/media_tree.git
2641S: Maintained
2642F: drivers/media/usb/dvb-usb-v2/ce6230*
2643
Michael Krufkyd099dea2012-10-02 00:56:20 -03002644DVB_USB_CXUSB MEDIA DRIVER
2645M: Michael Krufky <mkrufky@linuxtv.org>
2646L: linux-media@vger.kernel.org
2647W: http://linuxtv.org/
2648W: http://github.com/mkrufky
2649Q: http://patchwork.linuxtv.org/project/linux-media/list/
2650T: git git://linuxtv.org/media_tree.git
2651S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002652F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002653
Antti Palosaari91952bc2012-10-01 12:28:46 -03002654DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2655M: Antti Palosaari <crope@iki.fi>
2656L: linux-media@vger.kernel.org
2657W: http://linuxtv.org/
2658W: http://palosaari.fi/linux/
2659Q: http://patchwork.linuxtv.org/project/linux-media/list/
2660T: git git://linuxtv.org/anttip/media_tree.git
2661S: Maintained
2662F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2663
2664DVB_USB_EC168 MEDIA DRIVER
2665M: Antti Palosaari <crope@iki.fi>
2666L: linux-media@vger.kernel.org
2667W: http://linuxtv.org/
2668W: http://palosaari.fi/linux/
2669Q: http://patchwork.linuxtv.org/project/linux-media/list/
2670T: git git://linuxtv.org/anttip/media_tree.git
2671S: Maintained
2672F: drivers/media/usb/dvb-usb-v2/ec168*
2673
Michael Krufky8856f5f2012-10-02 00:55:50 -03002674DVB_USB_MXL111SF MEDIA DRIVER
2675M: Michael Krufky <mkrufky@linuxtv.org>
2676L: linux-media@vger.kernel.org
2677W: http://linuxtv.org/
2678W: http://github.com/mkrufky
2679Q: http://patchwork.linuxtv.org/project/linux-media/list/
2680T: git git://linuxtv.org/mkrufky/mxl111sf.git
2681S: Maintained
2682F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2683
Antti Palosaari91952bc2012-10-01 12:28:46 -03002684DVB_USB_RTL28XXU MEDIA DRIVER
2685M: Antti Palosaari <crope@iki.fi>
2686L: linux-media@vger.kernel.org
2687W: http://linuxtv.org/
2688W: http://palosaari.fi/linux/
2689Q: http://patchwork.linuxtv.org/project/linux-media/list/
2690T: git git://linuxtv.org/anttip/media_tree.git
2691S: Maintained
2692F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2693
2694DVB_USB_V2 MEDIA DRIVER
2695M: Antti Palosaari <crope@iki.fi>
2696L: linux-media@vger.kernel.org
2697W: http://linuxtv.org/
2698W: http://palosaari.fi/linux/
2699Q: http://patchwork.linuxtv.org/project/linux-media/list/
2700T: git git://linuxtv.org/anttip/media_tree.git
2701S: Maintained
2702F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2703F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2704
Jason Baronac0ac382011-08-11 14:36:43 -04002705DYNAMIC DEBUG
2706M: Jason Baron <jbaron@redhat.com>
2707S: Maintained
2708F: lib/dynamic_debug.c
2709F: include/linux/dynamic_debug.h
2710
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002711DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002712M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002713S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002714F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002715
Antti Palosaari91952bc2012-10-01 12:28:46 -03002716E4000 MEDIA DRIVER
2717M: Antti Palosaari <crope@iki.fi>
2718L: linux-media@vger.kernel.org
2719W: http://linuxtv.org/
2720W: http://palosaari.fi/linux/
2721Q: http://patchwork.linuxtv.org/project/linux-media/list/
2722T: git git://linuxtv.org/anttip/media_tree.git
2723S: Maintained
2724F: drivers/media/tuners/e4000*
2725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002727M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002728L: linux-eata@i-connect.net
2729L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002731F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
2733EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002734M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735L: linux-scsi@vger.kernel.org
2736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002737F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
2739EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002740M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002741L: linux-eata@i-connect.net
2742L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002744F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
2746EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002747M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002748L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749W: http://ebtables.sourceforge.net/
2750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002751F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002752F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002753F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
Antti Palosaari91952bc2012-10-01 12:28:46 -03002755EC100 MEDIA DRIVER
2756M: Antti Palosaari <crope@iki.fi>
2757L: linux-media@vger.kernel.org
2758W: http://linuxtv.org/
2759W: http://palosaari.fi/linux/
2760Q: http://patchwork.linuxtv.org/project/linux-media/list/
2761T: git git://linuxtv.org/anttip/media_tree.git
2762S: Maintained
2763F: drivers/media/dvb-frontends/ec100*
2764
Michael Halcrow237fead2006-10-04 02:16:22 -07002765ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002766M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002767M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002768L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002769W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002771F: Documentation/filesystems/ecryptfs.txt
2772F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002773
Alan Coxda9bb1d2006-01-18 17:44:13 -08002774EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002775M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002776L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002777W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002778S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002779F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002780F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002781F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002782
Borislav Petkovc476c232009-05-20 20:31:58 +02002783EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002784M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002785M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002786L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002787W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002788S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002789F: drivers/edac/amd64_edac*
2790
Ralf Baechlef65aad42012-10-17 00:39:09 +02002791EDAC-CAVIUM
2792M: Ralf Baechle <ralf@linux-mips.org>
2793M: David Daney <david.daney@cavium.com>
2794L: linux-edac@vger.kernel.org
2795L: linux-mips@linux-mips.org
2796W: bluesmoke.sourceforge.net
2797S: Supported
2798F: drivers/edac/octeon_edac*
2799
Dave Peterson0e438e32006-03-26 01:38:55 -08002800EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002801M: Mark Gross <mark.gross@intel.com>
2802M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002803L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002804W: bluesmoke.sourceforge.net
2805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002806F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002807
2808EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002809M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002810L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002811W: bluesmoke.sourceforge.net
2812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002813F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002814
Douglas Thompson6bc78402007-07-19 01:50:12 -07002815EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002816M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002817L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002818W: bluesmoke.sourceforge.net
2819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002820F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002821
2822EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002823M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002824L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002825W: bluesmoke.sourceforge.net
2826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002827F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002828
2829EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002830M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002831L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002832W: bluesmoke.sourceforge.net
2833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002834F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002835
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002836EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002837M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002838L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002839W: bluesmoke.sourceforge.net
2840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002841F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002842
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002843EDAC-I7300
2844M: Mauro Carvalho Chehab <mchehab@redhat.com>
2845L: linux-edac@vger.kernel.org
2846W: bluesmoke.sourceforge.net
2847S: Maintained
2848F: drivers/edac/i7300_edac.c
2849
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002850EDAC-I7CORE
2851M: Mauro Carvalho Chehab <mchehab@redhat.com>
2852L: linux-edac@vger.kernel.org
2853W: bluesmoke.sourceforge.net
2854S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002855F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002856
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002857EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002858M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302859M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002860L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002861W: bluesmoke.sourceforge.net
2862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002863F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002864
2865EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002866M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002867L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002868W: bluesmoke.sourceforge.net
2869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002870F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002871
Dave Peterson0e438e32006-03-26 01:38:55 -08002872EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002873M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002874L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002875W: bluesmoke.sourceforge.net
2876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002877F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002878
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002879EDAC-SBRIDGE
2880M: Mauro Carvalho Chehab <mchehab@redhat.com>
2881L: linux-edac@vger.kernel.org
2882W: bluesmoke.sourceforge.net
2883S: Maintained
2884F: drivers/edac/sb_edac.c
2885
Clemens Ladischaf399172011-01-10 16:32:54 +01002886EDIROL UA-101/UA-1000 DRIVER
2887M: Clemens Ladisch <clemens@ladisch.de>
2888L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2889T: git git://git.alsa-project.org/alsa-kernel.git
2890S: Maintained
2891F: sound/usb/misc/ua101.c
2892
Matt Fleming1f7df952012-10-03 10:04:02 +01002893EXTENSIBLE FIRMWARE INTERFACE (EFI)
2894M: Matt Fleming <matt.fleming@intel.com>
2895L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002896T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002897S: Maintained
2898F: Documentation/x86/efi-stub.txt
2899F: arch/ia64/kernel/efi.c
2900F: arch/x86/boot/compressed/eboot.[ch]
2901F: arch/x86/include/asm/efi.h
2902F: arch/x86/platform/efi/*
2903F: drivers/firmware/efivars.c
2904F: include/linux/efi*.h
2905
Peter Jones85a00d92010-09-22 13:05:04 -07002906EFIFB FRAMEBUFFER DRIVER
2907L: linux-fbdev@vger.kernel.org
2908M: Peter Jones <pjones@redhat.com>
2909S: Maintained
2910F: drivers/video/efifb.c
2911
Josh Triplett0bee8d22006-07-30 03:03:58 -07002912EFS FILESYSTEM
2913W: http://aeschi.ch.eu.org/efs/
2914S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002915F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002916
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002917EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002918M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2919M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002920L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002921S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002922F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002923
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002924EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002925M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002926L: netdev@vger.kernel.org
2927S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002928F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002929
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02002930EM28XX VIDEO4LINUX DRIVER
2931M: Mauro Carvalho Chehab <mchehab@redhat.com>
2932L: linux-media@vger.kernel.org
2933W: http://linuxtv.org
2934T: git git://linuxtv.org/media_tree.git
2935S: Maintained
2936F: drivers/media/usb/em28xx/
2937
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002938EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002939M: Paul Gortmaker <paul.gortmaker@windriver.com>
2940M: Matt Mackall <mpm@selenic.com>
2941M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002942L: linux-embedded@vger.kernel.org
2943S: Maintained
2944
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002945EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002946M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002947L: linux-scsi@vger.kernel.org
2948W: http://sourceforge.net/projects/lpfcxxxx
2949S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002950F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002951
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002952ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002953M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002954S: Maintained
2955F: drivers/misc/cb710/
2956F: drivers/mmc/host/cb710-mmc.*
2957F: include/linux/cb710.h
2958
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002959ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2960M: Maxim Levitsky <maximlevitsky@gmail.com>
2961S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002962F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002963
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002964EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002965M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002966S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002967T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002968F: drivers/video/s1d13xxxfb.c
2969F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002970
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002972M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002973L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002975F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
2977ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08002978M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07002979L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002980L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002981W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002983F: include/linux/netfilter_bridge/
2984F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002987M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002988L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002990F: Documentation/filesystems/ext2.txt
2991F: fs/ext2/
2992F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
2994EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002995M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002996M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002997M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002998L: linux-ext4@vger.kernel.org
2999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003000F: Documentation/filesystems/ext3.txt
3001F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003002
3003EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003004M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003005M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003006L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003007W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003008Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003010F: Documentation/filesystems/ext4.txt
3011F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
Mimi Zoharc5532b02011-08-17 18:52:24 -04003013Extended Verification Module (EVM)
3014M: Mimi Zohar <zohar@us.ibm.com>
3015S: Supported
3016F: security/integrity/evm/
3017
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003018EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3019M: MyungJoo Ham <myungjoo.ham@samsung.com>
3020M: Chanwoo Choi <cw00.choi@samsung.com>
3021L: linux-kernel@vger.kernel.org
3022S: Maintained
3023F: drivers/extcon/
3024F: Documentation/extcon/
3025
Jingoo Han0a799512012-02-06 11:30:39 +09003026EXYNOS DP DRIVER
3027M: Jingoo Han <jg1.han@samsung.com>
3028L: linux-fbdev@vger.kernel.org
3029S: Maintained
3030F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003031F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003032
Donghwa Lee33ad3912012-03-06 11:44:58 +09003033EXYNOS MIPI DISPLAY DRIVERS
3034M: Inki Dae <inki.dae@samsung.com>
3035M: Donghwa Lee <dh09.lee@samsung.com>
3036M: Kyungmin Park <kyungmin.park@samsung.com>
3037L: linux-fbdev@vger.kernel.org
3038S: Maintained
3039F: drivers/video/exynos/exynos_mipi*
3040F: include/video/exynos_mipi*
3041
Jean Delvaree53004e2006-01-09 23:26:14 +01003042F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003043M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003044L: lm-sensors@lm-sensors.org
3045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003046F: Documentation/hwmon/f71805f
3047F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003048
Michael Büscheea977e2012-04-02 12:14:32 -03003049FC0011 TUNER DRIVER
3050M: Michael Buesch <m@bues.ch>
3051L: linux-media@vger.kernel.org
3052S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003053F: drivers/media/tuners/fc0011.h
3054F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003055
Antti Palosaari91952bc2012-10-01 12:28:46 -03003056FC2580 MEDIA DRIVER
3057M: Antti Palosaari <crope@iki.fi>
3058L: linux-media@vger.kernel.org
3059W: http://linuxtv.org/
3060W: http://palosaari.fi/linux/
3061Q: http://patchwork.linuxtv.org/project/linux-media/list/
3062T: git git://linuxtv.org/anttip/media_tree.git
3063S: Maintained
3064F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
Eric Paris88b2dbd2010-08-18 12:25:50 -04003066FANOTIFY
3067M: Eric Paris <eparis@redhat.com>
3068S: Maintained
3069F: fs/notify/fanotify/
3070F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003071F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003072
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003074M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075W: http://www.farsite.co.uk/
3076S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003077F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078
Akinobu Mitac5408b82007-04-23 14:41:20 -07003079FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003080M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003081S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003082F: Documentation/fault-injection/
3083F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003084
Robert Lovecae727d2010-02-16 12:16:00 -08003085FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3086M: Robert Love <robert.w.love@intel.com>
3087L: devel@open-fcoe.org
3088W: www.Open-FCoE.org
3089S: Supported
3090F: drivers/scsi/libfc/
3091F: drivers/scsi/fcoe/
3092F: include/scsi/fc/
3093F: include/scsi/libfc.h
3094F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003095F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003096
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003097FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003098M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003099L: linux-fsdevel@vger.kernel.org
3100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003101F: include/linux/fcntl.h
3102F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003103F: include/uapi/linux/fcntl.h
3104F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003105F: fs/fcntl.c
3106F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003107
3108FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003109M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003110L: linux-fsdevel@vger.kernel.org
3111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003112F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003113
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003114FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003115M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003116L: lm-sensors@lm-sensors.org
3117S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003118F: drivers/hwmon/f75375s.c
3119F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003120
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003121FIREWIRE AUDIO DRIVERS
3122M: Clemens Ladisch <clemens@ladisch.de>
3123L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3124T: git git://git.alsa-project.org/alsa-kernel.git
3125S: Maintained
3126F: sound/firewire/
3127
Stefan Richtereb86ec52012-11-03 09:25:20 +01003128FIREWIRE MEDIA DRIVERS (firedtv)
3129M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3130L: linux-media@vger.kernel.org
3131L: linux1394-devel@lists.sourceforge.net
3132T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3133S: Maintained
3134F: drivers/media/firewire/
3135
Chris Boota511ce32012-04-14 17:50:35 -07003136FIREWIRE SBP-2 TARGET
3137M: Chris Boot <bootc@bootc.net>
3138L: linux-scsi@vger.kernel.org
3139L: target-devel@vger.kernel.org
3140L: linux1394-devel@lists.sourceforge.net
3141T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3142S: Maintained
3143F: drivers/target/sbp/
3144
Joe Perches7d2c86b2009-04-07 20:59:01 -07003145FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003146M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003147L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003148W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003149T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003151F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003152F: include/linux/firewire.h
3153F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003154F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003155
3156FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003157M: Ming Lei <ming.lei@canonical.com>
3158L: linux-kernel@vger.kernel.org
3159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003160F: Documentation/firmware_class/
3161F: drivers/base/firmware*.c
3162F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003163
Jiri Kosina8206f662012-05-18 13:52:29 +02003164FLOPPY DRIVER
3165M: Jiri Kosina <jkosina@suse.cz>
3166T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3167S: Odd fixes
3168F: drivers/block/floppy.c
3169
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003170FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003171M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003172W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003174F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003175
3176FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003177L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003178S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003179F: drivers/net/wan/dlci.c
3180F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003181
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003183M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003184L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003186Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003187T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003189F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003190F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003191F: drivers/video/
3192F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003193F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003194F: include/uapi/video/
3195F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
Timur Tabia57c1882012-10-16 17:33:42 -05003197FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003198M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003199L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003200S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003201F: drivers/video/fsl-diu-fb.*
3202
Zhang Wei173acc72008-03-01 07:42:48 -07003203FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003204M: Li Yang <leoli@freescale.com>
3205M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003206L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003208F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003209
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003210FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003211M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003212L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003213L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003215F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003216
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003217FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003218M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003219L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003220L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003221S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003222F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003223F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003224
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003225FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003226M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3227M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003228L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003229L: netdev@vger.kernel.org
3230S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003231F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003232F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003233
Timur Tabid9e9d822008-04-24 08:45:26 +10003234FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003235L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003236S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003237F: arch/powerpc/sysdev/qe_lib/
3238F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003239
Joe Perchesb55ef922009-10-26 16:49:46 -07003240FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003241M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003242L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003243L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003244S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003245F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003246
Li Yangbeaf53b2007-05-25 13:54:02 +08003247FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003248M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003249L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003250L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003251S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003252F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003253
Timur Tabid9e9d822008-04-24 08:45:26 +10003254FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003255M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003256L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003257S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003258F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003259
3260FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003261M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003262L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003263L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003264S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003265F: sound/soc/fsl/fsl*
3266F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003267
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003269M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003272F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
Pavel Machek71038f52009-01-15 13:51:02 -08003274FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003275M: Pavel Machek <pavel@ucw.cz>
3276M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003277L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003278S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003279F: Documentation/power/freezing-of-tasks.txt
3280F: include/linux/freezer.h
3281F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003282
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003283FRONTSWAP API
3284M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3285L: linux-kernel@vger.kernel.org
3286S: Maintained
3287F: mm/frontswap.c
3288F: include/linux/frontswap.h
3289
David Howellsa5432f52009-04-20 15:46:45 +01003290FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003291M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003292L: linux-cachefs@redhat.com
3293S: Supported
3294F: Documentation/filesystems/caching/
3295F: fs/fscache/
3296F: include/linux/fscache*.h
3297
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003298F2FS FILE SYSTEM
3299M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3300L: linux-f2fs-devel@lists.sourceforge.net
3301W: http://en.wikipedia.org/wiki/F2FS
3302T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3303S: Maintained
3304F: Documentation/filesystems/f2fs.txt
3305F: fs/f2fs/
3306F: include/linux/f2fs_fs.h
3307
David Howells5ab7ffe2007-04-10 15:10:45 +01003308FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003309M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003311F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
Jonathan Woithe20b93732008-06-11 10:14:56 +09303313FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303314M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003315L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003317F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303318
Heungjun Kim4da621b2011-11-11 08:05:33 -03003319FUJITSU M-5MO LS CAMERA ISP DRIVER
3320M: Kyungmin Park <kyungmin.park@samsung.com>
3321M: Heungjun Kim <riverful.kim@samsung.com>
3322L: linux-media@vger.kernel.org
3323S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003324F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003325F: include/media/m5mols.h
3326
Robert Gerlach2d24c492012-01-18 14:26:22 +01003327FUJITSU TABLET EXTRAS
3328M: Robert Gerlach <khnz@gmx.de>
3329L: platform-driver-x86@vger.kernel.org
3330S: Maintained
3331F: drivers/platform/x86/fujitsu-tablet.c
3332
Miklos Szeredi04578f12005-09-09 13:10:22 -07003333FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003334M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003335L: fuse-devel@lists.sourceforge.net
3336W: http://fuse.sourceforge.net/
3337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003338F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003339F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003340
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003342M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003344S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003345F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346
3347GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003348M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349L: linux-scsi@vger.kernel.org
3350W: http://www.icp-vortex.com/
3351S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003352F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003354GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003355M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003356S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003357F: drivers/i2c/busses/i2c-gpio.c
3358F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003359
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003360GENERIC GPIO I2C MULTIPLEXER DRIVER
3361M: Peter Korsgaard <peter.korsgaard@barco.com>
3362L: linux-i2c@vger.kernel.org
3363S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003364F: drivers/i2c/muxes/i2c-mux-gpio.c
3365F: include/linux/i2c-mux-gpio.h
3366F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003367
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003368GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003369M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003372F: drivers/net/wan/c101.c
3373F: drivers/net/wan/hd6457*
3374F: drivers/net/wan/hdlc*
3375F: drivers/net/wan/n2.c
3376F: drivers/net/wan/pc300too.c
3377F: drivers/net/wan/pci200syn.c
3378F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003380GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003381M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003382L: linux-arch@vger.kernel.org
3383T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3384S: Maintained
3385F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003386F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003387
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003388GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003389M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003390L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003391S: Supported
3392F: drivers/uio/uio_pci_generic.c
3393
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003394GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003395M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003396L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003397W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003398T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3399T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003400S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003401F: Documentation/filesystems/gfs2*.txt
3402F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003403F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003404
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003405GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003406M: Hansjoerg Lipp <hjlipp@web.de>
3407M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003408L: gigaset307x-common@lists.sourceforge.net
3409W: http://gigaset307x.sourceforge.net/
3410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003411F: Documentation/isdn/README.gigaset
3412F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003413F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003414
Grant Likelya0dc00b2011-02-12 01:48:14 -07003415GPIO SUBSYSTEM
3416M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003417M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003418S: Maintained
3419T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003420F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003421F: drivers/gpio/
3422F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003423F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003424
Harry Wei71a6d0a2011-05-11 15:13:33 -07003425GRE DEMULTIPLEXER DRIVER
3426M: Dmitry Kozlov <xeb@mail.ru>
3427L: netdev@vger.kernel.org
3428S: Maintained
3429F: net/ipv4/gre.c
3430F: include/net/gre.h
3431
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003432GRETH 10/100/1G Ethernet MAC device driver
3433M: Kristoffer Glembo <kristoffer@gaisler.com>
3434L: netdev@vger.kernel.org
3435S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003436F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003437
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003438GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003439M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003440L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003441T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003442S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003443F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003444
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003445GSPCA GL860 SUBDRIVER
3446M: Olivier Lorin <o.lorin@laposte.net>
3447L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003448T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003449S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003450F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003451
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003452GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003453M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003454L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003455T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003456S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003457F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003458
3459GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003460M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003461L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003462T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003463S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003464F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003465
Brian Johnson261982f2009-07-19 15:58:56 -03003466GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003467M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003468L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003469T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003470S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003471F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003472
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003473GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003474M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003475L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003476T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003477S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003478F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003479
3480GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003481M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003482L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003483T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003484S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003485F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003486
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003487STK1160 USB VIDEO CAPTURE DRIVER
3488M: Ezequiel Garcia <elezegarcia@gmail.com>
3489L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003490T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003491S: Maintained
3492F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003493
Harry Wei71a6d0a2011-05-11 15:13:33 -07003494HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3495M: Frank Seidel <frank@f-seidel.de>
3496L: platform-driver-x86@vger.kernel.org
3497W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3498S: Maintained
3499F: drivers/platform/x86/hdaps.c
3500
3501HWPOISON MEMORY FAILURE HANDLING
3502M: Andi Kleen <andi@firstfloor.org>
3503L: linux-mm@kvack.org
3504T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3505S: Maintained
3506F: mm/memory-failure.c
3507F: mm/hwpoison-inject.c
3508
3509HYPERVISOR VIRTUAL CONSOLE DRIVER
3510L: linuxppc-dev@lists.ozlabs.org
3511S: Odd Fixes
3512F: drivers/tty/hvc/
3513
Michael Buesch844dd052006-06-26 00:24:59 -07003514HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003515M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003516M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003517L: lm-sensors@lm-sensors.org
3518W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003519T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003520T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003521S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003522F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003523F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003524F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003525
3526HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003527M: Matt Mackall <mpm@selenic.com>
3528M: Herbert Xu <herbert@gondor.apana.org.au>
3529S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003530F: Documentation/hw_random.txt
3531F: drivers/char/hw_random/
3532F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003533
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003534HARDWARE SPINLOCK CORE
3535M: Ohad Ben-Cohen <ohad@wizery.com>
3536S: Maintained
3537F: Documentation/hwspinlock.txt
3538F: drivers/hwspinlock/hwspinlock_*
3539F: include/linux/hwspinlock.h
3540
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003542L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003544F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
Antti Palosaari91952bc2012-10-01 12:28:46 -03003546HD29L2 MEDIA DRIVER
3547M: Antti Palosaari <crope@iki.fi>
3548L: linux-media@vger.kernel.org
3549W: http://linuxtv.org/
3550W: http://palosaari.fi/linux/
3551Q: http://patchwork.linuxtv.org/project/linux-media/list/
3552T: git git://linuxtv.org/anttip/media_tree.git
3553S: Maintained
3554F: drivers/media/dvb-frontends/hd29l2*
3555
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003556HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003557M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003558L: iss_storagedev@hp.com
3559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003560F: Documentation/blockdev/cpqarray.txt
3561F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003562
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003563HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003564M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003565L: iss_storagedev@hp.com
3566S: Supported
3567F: Documentation/scsi/hpsa.txt
3568F: drivers/scsi/hpsa*.[ch]
3569F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003570F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003571
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003572HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003573M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003574L: iss_storagedev@hp.com
3575S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003576F: Documentation/blockdev/cciss.txt
3577F: drivers/block/cciss*
3578F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003579F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003580
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003582L: linux-fsdevel@vger.kernel.org
3583S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003584F: Documentation/filesystems/hfs.txt
3585F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586
3587HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003588M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589L: linux-nvidia@lists.surfsouth.com
3590W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003592F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003594HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003595M: Pavel Machek <pavel@ucw.cz>
3596M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003597L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003598S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003599F: arch/x86/power/
3600F: drivers/base/power/
3601F: kernel/power/
3602F: include/linux/suspend.h
3603F: include/linux/freezer.h
3604F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003605F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003606
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003607HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003608M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003609L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003610T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003612F: drivers/hid/
3613F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003614F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003615
Ingo Molnar38bed542007-02-22 09:09:34 +01003616HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003617M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003618T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003620F: Documentation/timers/
3621F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003622F: kernel/time/clockevents.c
3623F: kernel/time/tick*.*
3624F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003625F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003626F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003627
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003630S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003631F: drivers/net/hamradio/dmascc.c
3632F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003634HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003635M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003636W: http://www.highpoint-tech.com
3637S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003638F: Documentation/scsi/hptiop.txt
3639F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003640
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003642M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643L: linux-hippi@sunsite.dk
3644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003645F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003646F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003647F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003648F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649
Jouni Malinenff1d2762005-05-12 22:54:16 -04003650HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003651M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003652L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003653L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003654W: http://hostap.epitest.fi/
3655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003656F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003657
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003658HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003659L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003660S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003661F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003662
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003663HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003664M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003665S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003666F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003667
Joe Perches7d2c86b2009-04-07 20:59:01 -07003668HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003669M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003671F: Documentation/timers/hpet.txt
3672F: drivers/char/hpet.c
3673F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003674F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003675
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003676HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003677M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003679F: arch/x86/kernel/hpet.c
3680F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003681
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003683M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003686F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687
Joe Perches7d2c86b2009-04-07 20:59:01 -07003688HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003689M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003690W: http://www.pharscape.org
3691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003692F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003693
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003694HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003695M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003696L: linux-input@vger.kernel.org
3697S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003698F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003699
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003701M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003703F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003705Hyper-V CORE AND DRIVERS
3706M: K. Y. Srinivasan <kys@microsoft.com>
3707M: Haiyang Zhang <haiyangz@microsoft.com>
3708L: devel@linuxdriverproject.org
3709S: Maintained
3710F: drivers/hv/
3711F: drivers/hid/hid-hyperv.c
3712F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003713
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003714I2C OVER PARALLEL PORT
3715M: Jean Delvare <khali@linux-fr.org>
3716L: linux-i2c@vger.kernel.org
3717S: Maintained
3718F: Documentation/i2c/busses/i2c-parport
3719F: Documentation/i2c/busses/i2c-parport-light
3720F: drivers/i2c/busses/i2c-parport.c
3721F: drivers/i2c/busses/i2c-parport-light.c
3722
3723I2C/SMBUS CONTROLLER DRIVERS FOR PC
3724M: Jean Delvare <khali@linux-fr.org>
3725L: linux-i2c@vger.kernel.org
3726S: Maintained
3727F: Documentation/i2c/busses/i2c-ali1535
3728F: Documentation/i2c/busses/i2c-ali1563
3729F: Documentation/i2c/busses/i2c-ali15x3
3730F: Documentation/i2c/busses/i2c-amd756
3731F: Documentation/i2c/busses/i2c-amd8111
3732F: Documentation/i2c/busses/i2c-i801
3733F: Documentation/i2c/busses/i2c-nforce2
3734F: Documentation/i2c/busses/i2c-piix4
3735F: Documentation/i2c/busses/i2c-sis5595
3736F: Documentation/i2c/busses/i2c-sis630
3737F: Documentation/i2c/busses/i2c-sis96x
3738F: Documentation/i2c/busses/i2c-via
3739F: Documentation/i2c/busses/i2c-viapro
3740F: drivers/i2c/busses/i2c-ali1535.c
3741F: drivers/i2c/busses/i2c-ali1563.c
3742F: drivers/i2c/busses/i2c-ali15x3.c
3743F: drivers/i2c/busses/i2c-amd756.c
3744F: drivers/i2c/busses/i2c-amd756-s4882.c
3745F: drivers/i2c/busses/i2c-amd8111.c
3746F: drivers/i2c/busses/i2c-i801.c
3747F: drivers/i2c/busses/i2c-isch.c
3748F: drivers/i2c/busses/i2c-nforce2.c
3749F: drivers/i2c/busses/i2c-nforce2-s4985.c
3750F: drivers/i2c/busses/i2c-piix4.c
3751F: drivers/i2c/busses/i2c-sis5595.c
3752F: drivers/i2c/busses/i2c-sis630.c
3753F: drivers/i2c/busses/i2c-sis96x.c
3754F: drivers/i2c/busses/i2c-via.c
3755F: drivers/i2c/busses/i2c-viapro.c
3756
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003757I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003758M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003759L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003760S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003761F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003762
Jean Delvare5b543962005-08-15 19:51:02 +02003763I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003764M: Wolfram Sang <wsa@the-dreams.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003765M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003766L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003767W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003768T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003770F: Documentation/i2c/
3771F: drivers/i2c/
3772F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003773F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003774F: include/uapi/linux/i2c.h
3775F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003777I2C-TAOS-EVM DRIVER
3778M: Jean Delvare <khali@linux-fr.org>
3779L: linux-i2c@vger.kernel.org
3780S: Maintained
3781F: Documentation/i2c/busses/i2c-taos-evm
3782F: drivers/i2c/busses/i2c-taos-evm.c
3783
Till Harbaume8c76ee2007-05-01 23:26:35 +02003784I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003785M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003786L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003787W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003789F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003790
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003792M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003794F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795
3796i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003797M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003798T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799S: Maintained
3800
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003802M: Tony Luck <tony.luck@intel.com>
3803M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003805T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003807F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808
Kent Yoder956c2032012-09-07 04:17:01 +08003809IBM Power in-Nest Crypto Acceleration
3810M: Kent Yoder <key@linux.vnet.ibm.com>
3811L: linux-crypto@vger.kernel.org
3812S: Supported
3813F: drivers/crypto/nx/
3814
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003815IBM Power 842 compression accelerator
3816M: Robert Jennings <rcj@linux.vnet.ibm.com>
3817S: Supported
3818F: drivers/crypto/nx/nx-842.c
3819F: include/linux/nx842.h
3820
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003822M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003824F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825
Santiago Leon9d348af2010-09-03 18:29:53 +00003826IBM Power Virtual Ethernet Device Driver
3827M: Santiago Leon <santil@linux.vnet.ibm.com>
3828L: netdev@vger.kernel.org
3829S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003830F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003831
Robert Jennings4b7652c2012-07-31 12:34:36 -05003832IBM Power Virtual SCSI/FC Device Drivers
3833M: Robert Jennings <rcj@linux.vnet.ibm.com>
3834L: linux-scsi@vger.kernel.org
3835S: Supported
3836F: drivers/scsi/ibmvscsi/
3837X: drivers/scsi/ibmvscsi/ibmvstgt.c
3838
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839IBM ServeRAID RAID DRIVER
3840P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003841M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003843S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003844F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003846ICH LPC AND GPIO DRIVER
3847M: Peter Tyser <ptyser@xes-inc.com>
3848S: Maintained
3849F: drivers/mfd/lpc_ich.c
3850F: drivers/gpio/gpio-ich.c
3851
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003852IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003853M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003855Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003856T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003858F: Documentation/ide/
3859F: drivers/ide/
3860F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861
Ike Panhc6cb8c132011-08-25 22:28:45 +08003862IDEAPAD LAPTOP EXTRAS DRIVER
3863M: Ike Panhc <ike.pan@canonical.com>
3864L: platform-driver-x86@vger.kernel.org
3865W: http://launchpad.net/ideapad-laptop
3866S: Maintained
3867F: drivers/platform/x86/ideapad-laptop.c
3868
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003869IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003870M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003871L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003873F: Documentation/cdrom/ide-cd
3874F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875
Andy Henroid27471fd2008-10-09 11:45:22 -07003876IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003877M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003878L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003879S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003880F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003881
Sergey Lapin02cf2282009-06-08 12:18:50 +00003882IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003883M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003884M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003885L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003886W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003887T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003888S: Maintained
3889F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003890F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08003891F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003892
Sean Young40ad4a32012-11-19 10:32:53 -03003893IGUANAWORKS USB IR TRANSCEIVER
3894M: Sean Young <sean@mess.org>
3895L: linux-media@vger.kernel.org
3896S: Maintained
3897F: drivers/media/rc/iguanair.c
3898
Ameya Palande9545f862012-01-10 09:00:58 -08003899IIO SUBSYSTEM AND DRIVERS
3900M: Jonathan Cameron <jic23@cam.ac.uk>
3901L: linux-iio@vger.kernel.org
3902S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003903F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003904F: drivers/staging/iio/
3905
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003906IKANOS/ADI EAGLE ADSL USB DRIVER
3907M: Matthieu Castet <castet.matthieu@free.fr>
3908M: Stanislaw Gruszka <stf_xl@wp.pl>
3909S: Maintained
3910F: drivers/usb/atm/ueagle-atm.c
3911
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01003912INDUSTRY PACK SUBSYSTEM (IPACK)
3913M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
3914M: Jens Taprogge <jens.taprogge@taprogge.org>
3915M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3916L: industrypack-devel@lists.sourceforge.net
3917W: http://industrypack.sourceforge.net
3918S: Maintained
3919F: drivers/ipack/
3920
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003921INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003922M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003923S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003924F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003925
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003927L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003928S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003929F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
3931INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003932M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003933M: Sean Hefty <sean.hefty@intel.com>
3934M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003935L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003936W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003937Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003938T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003940F: Documentation/infiniband/
3941F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003942F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943
Robert Lovec9f04f52005-07-15 12:21:07 -04003944INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003945M: John McCutchan <john@johnmccutchan.com>
3946M: Robert Love <rlove@rlove.org>
3947M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003949F: Documentation/filesystems/inotify.txt
3950F: fs/notify/inotify/
3951F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003952F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003953
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003954INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003955M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3956M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003957L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003958Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003959T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003961F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003962F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003963F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003964F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003965
Henrik Rydberg3267a872010-06-24 19:10:40 -07003966INPUT MULTITOUCH (MT) PROTOCOL
3967M: Henrik Rydberg <rydberg@euromail.se>
3968L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003969T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003970S: Maintained
3971F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003972F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003973K: \b(ABS|SYN)_MT_
3974
Dave Jiang4ac13e12011-07-29 17:16:55 -07003975INTEL C600 SERIES SAS CONTROLLER DRIVER
3976M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003977M: Lukasz Dorau <lukasz.dorau@intel.com>
3978M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003979M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003980L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003981T: git git://git.code.sf.net/p/intel-sas/isci
3982S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003983F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07003984
Len Brown26717172010-03-08 14:07:30 -05003985INTEL IDLE DRIVER
3986M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003987L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003988T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003989S: Supported
3990F: drivers/idle/intel_idle.c
3991
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003992INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003993M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003994L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003996F: Documentation/fb/intelfb.txt
3997F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003998
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004000M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004001L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004003F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304005INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004006M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004007L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304008W: http://www.lesswatts.org/projects/acpi/
4009S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004010F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304011
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004013M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004015F: arch/x86/kernel/microcode_core.c
4016F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004018INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004019M: Dan Williams <djbw@fb.com>
4020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004021F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004022
David Woodhouse6c8909b2008-10-18 16:12:17 +01004023INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004024M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004025L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004026T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004027S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004028F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004029F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004030
Dan Williamsb3e5f262007-08-07 10:26:35 -07004031INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004032M: Dan Williams <djbw@fb.com>
4033S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004034F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004035
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004036INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004037M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004039F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4040F: arch/arm/mach-ixp4xx/include/mach/npe.h
4041F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4042F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004043F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004044F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004045
Michael Buesch844dd052006-06-26 00:24:59 -07004046INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004047M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004049F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004050
Jeff Kirsher0d164402010-10-05 01:15:17 +00004051INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004052M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4053M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4054M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004055M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4056M: Don Skidmore <donald.c.skidmore@intel.com>
4057M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004058M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004059M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004060M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004061M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004062L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004063W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004064W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004065T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4066T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004068F: Documentation/networking/e100.txt
4069F: Documentation/networking/e1000.txt
4070F: Documentation/networking/e1000e.txt
4071F: Documentation/networking/igb.txt
4072F: Documentation/networking/igbvf.txt
4073F: Documentation/networking/ixgb.txt
4074F: Documentation/networking/ixgbe.txt
4075F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004076F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004078INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4079M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004080L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004082F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004083F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004084F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004085
Shane Wang4bd96a72010-03-10 14:36:10 +08004086INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004087M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4088M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004089M: Shane Wang <shane.wang@intel.com>
4090L: tboot-devel@lists.sourceforge.net
4091W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004092T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004093S: Supported
4094F: Documentation/intel_txt.txt
4095F: include/linux/tboot.h
4096F: arch/x86/kernel/tboot.c
4097
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004098INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004099M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004100M: linux-wimax@intel.com
4101L: wimax@linuxwimax.org
4102S: Supported
4103W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004104F: Documentation/wimax/README.i2400m
4105F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004106F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004107
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004108INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4109M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004110L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004111S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004112F: drivers/net/wireless/iwlegacy/
4113
Zhu Yib481de92007-09-25 17:54:57 -07004114INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004115M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004116M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004117M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004118L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004119W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07004120T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004121S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004122F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004123
Tomas Winklerde8fe022012-05-09 16:39:02 +03004124INTEL MANAGEMENT ENGINE (mei)
4125M: Tomas Winkler <tomas.winkler@intel.com>
4126L: linux-kernel@vger.kernel.org
4127S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004128F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004129F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08004130F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004131
Ralf Baechlecb109a02007-08-30 23:56:30 -07004132IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004133M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134L: linux-mips@linux-mips.org
4135S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004136F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137
Ralf Baechlecb109a02007-08-30 23:56:30 -07004138IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004139M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004140L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004141S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004142F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004143
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004144IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004145M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004147F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148
Francois Romieu1202d6f2007-09-17 17:13:55 -07004149IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004150M: Francois Romieu <romieu@fr.zoreil.com>
4151M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004152L: netdev@vger.kernel.org
4153S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004154F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004155
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004156IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004157M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004158L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004160F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004161
Corey Minyard4409ebe2006-04-20 02:43:12 -07004162IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004163M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004164L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004165W: http://openipmi.sourceforge.net/
4166S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004167F: Documentation/IPMI.txt
4168F: drivers/char/ipmi/
4169F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004170F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004171
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004172IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004173M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004174L: linux-scsi@vger.kernel.org
4175W: http://www.adaptec.com/
4176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004177F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004178
4179IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004180M: Wensong Zhang <wensong@linux-vs.org>
4181M: Simon Horman <horms@verge.net.au>
4182M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004183L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004184L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004186F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a72009-09-21 17:04:12 -07004187F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004188F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004189F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
Randy Dunlape7839f22008-10-12 16:11:45 -07004191IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004192M: Jiri Kosina <jkosina@suse.cz>
4193M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004194S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004195F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004197IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004198M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004199L: netdev@vger.kernel.org
4200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004201F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004202F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004203F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004204
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004206M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004207L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004208L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004210S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004211T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004212F: Documentation/networking/irda.txt
4213F: drivers/net/irda/
4214F: include/net/irda/
4215F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004217IRQ SUBSYSTEM
4218M: Thomas Gleixner <tglx@linutronix.de>
4219S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004220T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004221F: kernel/irq/
4222
Grant Likely7ab3a832012-02-14 14:06:47 -07004223IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4224M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4225M: Grant Likely <grant.likely@secretlab.ca>
4226T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4227S: Maintained
4228F: Documentation/IRQ-domain.txt
4229F: include/linux/irqdomain.h
4230F: kernel/irq/irqdomain.c
4231
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004232ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004233M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004235F: Documentation/isapnp.txt
4236F: drivers/pnp/isapnp/
4237F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004238
Harry Wei71a6d0a2011-05-11 15:13:33 -07004239iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4240M: Peter Jones <pjones@redhat.com>
4241M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4242S: Maintained
4243F: drivers/firmware/iscsi_ibft*
4244
Mike Christie14816b12007-11-28 16:22:06 -08004245ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004246M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b12007-11-28 16:22:06 -08004247L: open-iscsi@googlegroups.com
4248W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004249T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08004250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004251F: drivers/scsi/*iscsi*
4252F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08004253
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004255M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004256L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004257L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004259T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004261F: Documentation/isdn/
4262F: drivers/isdn/
4263F: include/linux/isdn.h
4264F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004265F: include/uapi/linux/isdn.h
4266F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267
4268ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004269M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004270L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271W: http://www.melware.de
4272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004273F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274
Jean Delvared6248702010-03-05 22:17:20 +01004275IT87 HARDWARE MONITORING DRIVER
4276M: Jean Delvare <khali@linux-fr.org>
4277L: lm-sensors@lm-sensors.org
4278S: Maintained
4279F: Documentation/hwmon/it87
4280F: drivers/hwmon/it87.c
4281
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004282IT913X MEDIA DRIVER
4283M: Malcolm Priestley <tvboxspy@gmail.com>
4284L: linux-media@vger.kernel.org
4285W: http://linuxtv.org/
4286Q: http://patchwork.linuxtv.org/project/linux-media/list/
4287S: Maintained
4288F: drivers/media/usb/dvb-usb-v2/it913x*
4289
4290IT913X FE MEDIA DRIVER
4291M: Malcolm Priestley <tvboxspy@gmail.com>
4292L: linux-media@vger.kernel.org
4293W: http://linuxtv.org/
4294Q: http://patchwork.linuxtv.org/project/linux-media/list/
4295S: Maintained
4296F: drivers/media/dvb-frontends/it913x-fe*
4297
Hans Verkuil91821ff2007-12-02 09:35:33 -03004298IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004299M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004300L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004301L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004302T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004303W: http://www.ivtvdriver.org
4304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004305F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004306F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004307F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004308
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004309IX2505V MEDIA DRIVER
4310M: Malcolm Priestley <tvboxspy@gmail.com>
4311L: linux-media@vger.kernel.org
4312W: http://linuxtv.org/
4313Q: http://patchwork.linuxtv.org/project/linux-media/list/
4314S: Maintained
4315F: drivers/media/dvb-frontends/ix2505v*
4316
Guenter Roeck4453d732010-08-09 17:21:08 -07004317JC42.4 TEMPERATURE SENSOR DRIVER
4318M: Guenter Roeck <linux@roeck-us.net>
4319L: lm-sensors@lm-sensors.org
4320S: Maintained
4321F: drivers/hwmon/jc42.c
4322F: Documentation/hwmon/jc42
4323
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004324JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004325M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004326L: jfs-discussion@lists.sourceforge.net
4327W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004328T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004330F: Documentation/filesystems/jfs.txt
4331F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004332
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004333JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004334M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004335L: netdev@vger.kernel.org
4336S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004337F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004338
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004340M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004341L: linux-mtd@lists.infradead.org
4342W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004344F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004345F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346
Josh Triplettde456d32006-07-30 03:04:00 -07004347JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004348M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004349M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004350L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004351S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004352F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004353F: include/linux/jbd.h
4354
4355JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4356M: "Theodore Ts'o" <tytso@mit.edu>
4357L: linux-ext4@vger.kernel.org
4358S: Maintained
4359F: fs/jbd2/
4360F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004361
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004362JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004363M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004364L: linux-serial@vger.kernel.org
4365S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004366F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004367
Clemens Ladischaf399172011-01-10 16:32:54 +01004368K10TEMP HARDWARE MONITORING DRIVER
4369M: Clemens Ladisch <clemens@ladisch.de>
4370L: lm-sensors@lm-sensors.org
4371S: Maintained
4372F: Documentation/hwmon/k10temp
4373F: drivers/hwmon/k10temp.c
4374
Rudolf Marek4660cb32006-10-08 22:01:26 +02004375K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004376M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004377L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004379F: Documentation/hwmon/k8temp
4380F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381
4382KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004383M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004384L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004385S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004386F: Documentation/kbuild/kconfig-language.txt
4387F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388
Vivek Goyalea6c2082006-05-20 14:59:55 -07004389KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004390M: Vivek Goyal <vgoyal@redhat.com>
4391M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004392L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004393W: http://lse.sourceforge.net/kdump/
4394S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004395F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004396
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004398M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004399L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004401F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402
Michal Marek70fb7ba2010-01-29 14:22:43 +01004403KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004404M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004405T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4406T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004407L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004409F: Documentation/kbuild/
4410F: Makefile
4411F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004412F: scripts/basic/
4413F: scripts/mk*
4414F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415
4416KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004417L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004418W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004419S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004421KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004422M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004423L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004425S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004426F: fs/nfsd/
4427F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004428F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004429F: fs/lockd/
4430F: fs/nfs_common/
4431F: net/sunrpc/
4432F: include/linux/lockd/
4433F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004434F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435
Avi Kivity426d62e2006-12-13 00:34:03 -08004436KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004437M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004438M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004439L: kvm@vger.kernel.org
4440W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004442F: Documentation/*/kvm.txt
4443F: arch/*/kvm/
4444F: arch/*/include/asm/kvm*
4445F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004446F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004447F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004448
Joerg Roedelad8003d2008-09-10 20:01:07 +02004449KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004450M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004451L: kvm@vger.kernel.org
4452W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004454F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004455F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004456
Hollis Blanchard513014b2008-04-16 23:28:08 -05004457KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004458M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004459L: kvm-ppc@vger.kernel.org
4460W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004461T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004463F: arch/powerpc/include/asm/kvm*
4464F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004465
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004466KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004467M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004468L: kvm-ia64@vger.kernel.org
4469W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004470S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004471F: Documentation/ia64/kvm.txt
4472F: arch/ia64/include/asm/kvm*
4473F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004474
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004475KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004476M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004477M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004478M: linux390@de.ibm.com
4479L: linux-s390@vger.kernel.org
4480W: http://www.ibm.com/developerworks/linux/linux390/
4481S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004482F: Documentation/s390/kvm.txt
4483F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004484F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004485F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004486
Christoffer Dalla7494742013-01-20 18:42:26 -05004487KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4488M: Christoffer Dall <cdall@cs.columbia.edu>
4489L: kvmarm@lists.cs.columbia.edu
4490W: http://systems.cs.columbia.edu/projects/kvm-arm
4491S: Maintained
4492F: arch/arm/include/uapi/asm/kvm*
4493F: arch/arm/include/asm/kvm*
4494F: arch/arm/kvm/
4495
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004496KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004497M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004498W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004499L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004501F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004502F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004503F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004504
David Howellse9714612010-03-29 23:42:09 +01004505KEYS/KEYRINGS:
4506M: David Howells <dhowells@redhat.com>
4507L: keyrings@linux-nfs.org
4508S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004509F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004510F: include/linux/key.h
4511F: include/linux/key-type.h
4512F: include/keys/
4513F: security/keys/
4514
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004515KEYS-TRUSTED
4516M: David Safford <safford@watson.ibm.com>
4517M: Mimi Zohar <zohar@us.ibm.com>
4518L: linux-security-module@vger.kernel.org
4519L: keyrings@linux-nfs.org
4520S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004521F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004522F: include/keys/trusted-type.h
4523F: security/keys/trusted.c
4524F: security/keys/trusted.h
4525
4526KEYS-ENCRYPTED
4527M: Mimi Zohar <zohar@us.ibm.com>
4528M: David Safford <safford@watson.ibm.com>
4529L: linux-security-module@vger.kernel.org
4530L: keyrings@linux-nfs.org
4531S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004532F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004533F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004534F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004535
Jason Wessel5b778da2010-05-20 21:04:28 -05004536KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004537M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004538W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004539L: kgdb-bugreport@lists.sourceforge.net
4540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004541F: Documentation/DocBook/kgdb.tmpl
4542F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004543F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004544F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004545F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004546F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004547
Pekka Enberg456db8c2008-04-28 22:47:29 +03004548KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004549M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004550M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004551S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004552F: Documentation/kmemcheck.txt
4553F: arch/x86/include/asm/kmemcheck.h
4554F: arch/x86/mm/kmemcheck/
4555F: include/linux/kmemcheck.h
4556F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004557
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004558KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004559M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004560S: Maintained
4561F: Documentation/kmemleak.txt
4562F: include/linux/kmemleak.h
4563F: mm/kmemleak.c
4564F: mm/kmemleak-test.c
4565
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004566KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004567M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4568M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4569M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004570M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004572F: Documentation/kprobes.txt
4573F: include/linux/kprobes.h
4574F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004575
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004576KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004577M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004578W: http://miguelojeda.es/auxdisplay.htm
4579W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004581F: Documentation/auxdisplay/ks0108
4582F: drivers/auxdisplay/ks0108.c
4583F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004584
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004587S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004588F: Documentation/networking/lapb-module.txt
4589F: include/*/lapb.h
4590F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591
4592LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004593M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594L: linux-scsi@vger.kernel.org
4595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004596F: Documentation/scsi/53c700.txt
4597F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598
Richard Purdie263de9b2006-05-15 09:44:16 -07004599LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004600M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004601M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004602L: linux-leds@vger.kernel.org
4603T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004605F: drivers/leds/
4606F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004607
Jean Delvareb0461a42011-06-15 15:08:46 -07004608LEGACY EEPROM DRIVER
4609M: Jean Delvare <khali@linux-fr.org>
4610S: Maintained
4611F: Documentation/misc-devices/eeprom
4612F: drivers/misc/eeprom/eeprom.c
4613
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004615M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616L: legousb-devel@lists.sourceforge.net
4617W: http://legousb.sourceforge.net/
4618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004619F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620
Michael Krufky055616a2012-10-02 00:56:06 -03004621LG2160 MEDIA DRIVER
4622M: Michael Krufky <mkrufky@linuxtv.org>
4623L: linux-media@vger.kernel.org
4624W: http://linuxtv.org/
4625W: http://github.com/mkrufky
4626Q: http://patchwork.linuxtv.org/project/linux-media/list/
4627T: git git://linuxtv.org/mkrufky/tuners.git
4628S: Maintained
4629F: drivers/media/dvb-frontends/lg2160.*
4630
Michael Krufky6f0e7722012-10-02 00:56:00 -03004631LGDT3305 MEDIA DRIVER
4632M: Michael Krufky <mkrufky@linuxtv.org>
4633L: linux-media@vger.kernel.org
4634W: http://linuxtv.org/
4635W: http://github.com/mkrufky
4636Q: http://patchwork.linuxtv.org/project/linux-media/list/
4637T: git git://linuxtv.org/mkrufky/tuners.git
4638S: Maintained
4639F: drivers/media/dvb-frontends/lgdt3305.*
4640
Rusty Russell568a17f2007-10-25 14:12:24 +10004641LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004642M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004643L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004644W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004645S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004646F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004647F: arch/x86/lguest/
4648F: drivers/lguest/
4649F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004650F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004651
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004653M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654W: http://www.ibm.com/linux/ltc/projects/ppc
4655S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004656F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004658LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004659M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4660M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004662L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004663Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004664T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004666F: Documentation/powerpc/
4667F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668
4669LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004670M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004672L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004674F: arch/powerpc/platforms/powermac/
4675F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676
Grant Likely77a76362008-07-12 12:11:43 -06004677LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004678M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004679L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004680T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004682F: arch/powerpc/platforms/512x/
4683F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684
4685LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004686M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004687M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004689L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004690T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004692F: arch/powerpc/platforms/40x/
4693F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694
Grant Likely260c02a2007-10-02 12:15:34 +10004695LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004696M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004697W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004698L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004699T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004701F: arch/powerpc/*/*virtex*
4702F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703
Tom Rinie93adf12005-07-26 12:49:53 -07004704LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004705M: Vitaly Bordug <vitb@kernel.crashing.org>
4706M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004707W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004708L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004709S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004710F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004711
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004713M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004714W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004715L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004716S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004717F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004718F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719
Olof Johanssonab06ff32006-09-06 14:44:54 -05004720LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004721M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004722L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004723S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004724F: arch/powerpc/platforms/pasemi/
4725F: drivers/*/*pasemi*
4726F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004727
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004729M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004730L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731S: Supported
4732
Harry Weia23ce6d2011-02-11 16:52:20 +01004733LIS3LV02D ACCELEROMETER DRIVER
4734M: Eric Piel <eric.piel@tremplin-utc.net>
4735S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004736F: Documentation/misc-devices/lis3lv02d
4737F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004738F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004739
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004740LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004741M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004743F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004744F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004745F: include/net/llc*
4746F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004747
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004748LM73 HARDWARE MONITOR DRIVER
4749M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4750L: lm-sensors@lm-sensors.org
4751S: Maintained
4752F: drivers/hwmon/lm73.c
4753
Jean Delvare156e2d12011-07-25 21:46:11 +02004754LM78 HARDWARE MONITOR DRIVER
4755M: Jean Delvare <khali@linux-fr.org>
4756L: lm-sensors@lm-sensors.org
4757S: Maintained
4758F: Documentation/hwmon/lm78
4759F: drivers/hwmon/lm78.c
4760
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004762M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004763L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004765F: Documentation/hwmon/lm83
4766F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767
4768LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004769M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004770L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004772F: Documentation/hwmon/lm90
4773F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004775LME2510 MEDIA DRIVER
4776M: Malcolm Priestley <tvboxspy@gmail.com>
4777L: linux-media@vger.kernel.org
4778W: http://linuxtv.org/
4779Q: http://patchwork.linuxtv.org/project/linux-media/list/
4780S: Maintained
4781F: drivers/media/usb/dvb-usb-v2/lmedm04*
4782
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004783LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004784M: Peter Zijlstra <peterz@infradead.org>
4785M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004786T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004788F: Documentation/lockdep*.txt
4789F: Documentation/lockstat.txt
4790F: include/linux/lockdep.h
4791F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004792
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004793LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004794M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004795L: linux-ntfs-dev@lists.sourceforge.net
4796W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004798F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004799F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800
Joern Engelef6ada32009-11-20 22:17:12 +01004801LogFS
4802M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304803M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004804L: logfs@logfs.org
4805W: logfs.org
4806S: Maintained
4807F: fs/logfs/
4808
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004809LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304810M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4811M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004812M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004813L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004814L: linux-scsi@vger.kernel.org
4815W: http://www.lsilogic.com/support
4816S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004817F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304818F: drivers/scsi/mpt2sas/
4819F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004820
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004822M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823L: linux-scsi@vger.kernel.org
4824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004825F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826
Guenter Roecke5f5c992010-06-25 11:59:54 -07004827LTC4261 HARDWARE MONITOR DRIVER
4828M: Guenter Roeck <linux@roeck-us.net>
4829L: lm-sensors@lm-sensors.org
4830S: Maintained
4831F: Documentation/hwmon/ltc4261
4832F: drivers/hwmon/ltc4261.c
4833
Mike Frysinger81365c32008-10-29 14:01:12 -07004834LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004835M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004836M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004837M: Cyril Hrubis <chrubis@suse.cz>
4838M: Caspar Zhang <caspar@casparzhang.com>
4839M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004840L: ltp-list@lists.sourceforge.net (subscribers-only)
4841W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004842T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004843T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004844S: Maintained
4845
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004846M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004847M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004848L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004849L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4850W: http://www.linux-m32r.org/
4851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004852F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004853
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004855M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856L: linux-m68k@lists.linux-m68k.org
4857W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004858T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004860F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004861F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862
4863M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004864M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004866L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004868F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869
4870M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004871M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872W: http://www.tazenda.demon.co.uk/phil/linux-hp
4873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004874F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004876M88RS2000 MEDIA DRIVER
4877M: Malcolm Priestley <tvboxspy@gmail.com>
4878L: linux-media@vger.kernel.org
4879W: http://linuxtv.org/
4880Q: http://patchwork.linuxtv.org/project/linux-media/list/
4881S: Maintained
4882F: drivers/media/dvb-frontends/m88rs2000*
4883
Jiri Benc64a327a2007-05-05 11:47:08 -07004884MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004885M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004886L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004887W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004888T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4889T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004891F: Documentation/networking/mac80211-injection.txt
4892F: include/net/mac80211.h
4893F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004894
Stefano Brivio1036d862007-12-23 04:46:27 +01004895MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004896M: Stefano Brivio <stefano.brivio@polimi.it>
4897M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004898L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004899W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004900T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4901T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004903F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004904
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004905MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004906M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004907L: netdev@vger.kernel.org
4908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004909F: drivers/net/macvlan.c
4910F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004911
Michael Kerriskfaf16682005-07-31 22:34:47 -07004912MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004913M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004914W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004915L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004916S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004917
stephen hemminger44c14c12012-04-02 12:59:47 +00004918MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4919M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08004920M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00004921L: netdev@vger.kernel.org
4922S: Maintained
4923F: drivers/net/ethernet/marvell/sk*
4924
Stefano Brivio74cda162007-11-19 20:27:46 +01004925MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004926M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004927L: libertas-dev@lists.infradead.org
4928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004929F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004930
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004931MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004932M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004933L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004934S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004935F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004936F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02004938MARVELL MVNETA ETHERNET DRIVER
4939M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4940L: netdev@vger.kernel.org
4941S: Maintained
4942F: drivers/net/ethernet/marvell/mvneta.*
4943
Bing Zhaofcad5842011-07-13 13:11:58 -07004944MARVELL MWIFIEX WIRELESS DRIVER
4945M: Bing Zhao <bzhao@marvell.com>
4946L: linux-wireless@vger.kernel.org
4947S: Maintained
4948F: drivers/net/wireless/mwifiex/
4949
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004950MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004951M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004952L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004953S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004954F: drivers/net/wireless/mwl8k.c
4955
Pierre Ossman2a695672009-03-16 19:52:26 +01004956MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004957M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004958S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004959F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004960
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004962L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004963S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004964F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004965F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966
Guenter Roeckca462082012-06-01 23:28:23 -07004967MAX16065 HARDWARE MONITOR DRIVER
4968M: Guenter Roeck <linux@roeck-us.net>
4969L: lm-sensors@lm-sensors.org
4970S: Maintained
4971F: Documentation/hwmon/max16065
4972F: drivers/hwmon/max16065.c
4973
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004974MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004975M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004976L: lm-sensors@lm-sensors.org
4977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004978F: Documentation/hwmon/max6650
4979F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004980
Joe Perches127c49a2009-04-08 08:34:04 -07004981MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004982M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07004983P: LinuxTV.org Project
4984L: linux-media@vger.kernel.org
4985W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004986Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004987T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07004988S: Maintained
4989F: Documentation/dvb/
4990F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004991F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004992F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004993F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004994F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02004995F: include/uapi/linux/dvb/
4996F: include/uapi/linux/videodev2.h
4997F: include/uapi/linux/media.h
4998F: include/uapi/linux/v4l2-*
4999F: include/uapi/linux/meye.h
5000F: include/uapi/linux/ivtv*
5001F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005002
5003MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005004M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005005L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005006W: http://megaraid.lsilogic.com
5007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005008F: Documentation/scsi/megaraid.txt
5009F: drivers/scsi/megaraid.*
5010F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005011
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005012MELLANOX ETHERNET DRIVER (mlx4_en)
5013M: Amir Vadai <amirv@mellanox.com>
5014L: netdev@vger.kernel.org
5015S: Supported
5016W: http://www.mellanox.com
5017Q: http://patchwork.ozlabs.org/project/netdev/list/
5018F: drivers/net/ethernet/mellanox/mlx4/en_*
5019
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005020MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022W: http://www.linux-mm.org
5023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005024F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005025F: include/linux/gfp.h
5026F: include/linux/mmzone.h
5027F: include/linux/memory_hotplug.h
5028F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005029F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005030
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005031MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005032M: Johannes Weiner <hannes@cmpxchg.org>
5033M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005034M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005035M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005036L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005037L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005039F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005040F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005041
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005043M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005045W: http://www.linux-mtd.infradead.org/
5046Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08005047T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005049F: drivers/mtd/
5050F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005051F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052
Michal Simekc6375b02009-03-27 14:25:52 +01005053MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005054M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005055L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005056W: http://www.monstr.eu/fdt/
5057T: git git://git.monstr.eu/linux-2.6-microblaze.git
5058S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005059F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060
5061MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005062M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005064F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065
5066MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005067M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005069W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005070T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005071Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005072S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005073F: Documentation/mips/
5074F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005077M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005079F: include/linux/module.h
5080F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081
5082MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005084S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005085F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005086F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005087F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088
Jiri Slabyb9705b62008-04-30 00:53:48 -07005089MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005090M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005092F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005093F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005094
Alexey Klimov889b2f82012-11-16 17:43:59 -03005095MR800 AVERMEDIA USB FM RADIO DRIVER
5096M: Alexey Klimov <klimov.linux@gmail.com>
5097L: linux-media@vger.kernel.org
5098T: git git://linuxtv.org/media_tree.git
5099S: Maintained
5100F: drivers/media/radio/radio-mr800.c
5101
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005102MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005103M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005104L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005106F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005107
Anisse Astier0f1006b2009-12-17 11:28:49 +01005108MSI WMI SUPPORT
5109M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005110L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005111S: Supported
5112F: drivers/platform/x86/msi-wmi.c
5113
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005114MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005115M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005116T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005117S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005118F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005119
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005120MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005121M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005122L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005123T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005125F: drivers/mmc/
5126F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005127F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005128
David Brownell15a05802007-08-08 09:12:54 -07005129MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005130S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005131F: drivers/mmc/host/mmc_spi.c
5132F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005133
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005135M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005137F: Documentation/sound/oss/MultiSound
5138F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139
Jiri Slabyd7354102006-12-08 02:38:35 -08005140MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005141S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005142F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005143F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005144
Felipe Balbi550a7372008-07-24 12:27:36 +03005145MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005146M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005147L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005148T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005150F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005151
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005152MXL5007T MEDIA DRIVER
5153M: Michael Krufky <mkrufky@linuxtv.org>
5154L: linux-media@vger.kernel.org
5155W: http://linuxtv.org/
5156W: http://github.com/mkrufky
5157Q: http://patchwork.linuxtv.org/project/linux-media/list/
5158T: git git://linuxtv.org/mkrufky/tuners.git
5159S: Maintained
5160F: drivers/media/tuners/mxl5007t.*
5161
Brice Goglin2d3cf582008-05-17 12:45:36 +02005162MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005163M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005164L: netdev@vger.kernel.org
5165W: http://www.myri.com/scs/download-Myri10GE.html
5166S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005167F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005168
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005170S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005171F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172
Daniel Mack23dc05a2011-05-18 11:28:38 +02005173NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5174M: Daniel Mack <zonque@gmail.com>
5175S: Maintained
5176L: alsa-devel@alsa-project.org
5177W: http://www.native-instruments.com
5178F: sound/usb/caiaq/
5179
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005181M: Petr Vandrovec <petr@vandrovec.name>
5182S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005183F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184
5185NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005186M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187L: linux-scsi@vger.kernel.org
5188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005189F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005191NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005192M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005193L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005194W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005195S: Supported
5196F: drivers/infiniband/hw/nes/
5197
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005198NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005199M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005200L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005202F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005203
Jon Masonb2f5a052010-07-15 08:47:27 +00005204NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005205M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005206L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005207S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005208F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005209F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005210F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005211
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213P: Harald Welte
5214P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005215M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005216M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005217L: netfilter-devel@vger.kernel.org
5218L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005219L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220W: http://www.netfilter.org/
5221W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005222T: git git://1984.lsi.us.es/nf
5223T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005225F: include/linux/netfilter*
5226F: include/linux/netfilter/
5227F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005228F: include/uapi/linux/netfilter*
5229F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005230F: net/*/netfilter.c
5231F: net/*/netfilter/
5232F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233
Paul Moore4cc67732006-09-25 15:57:13 -07005234NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005235M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005236W: http://netlabel.sf.net
5237L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005238S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005239F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005240F: include/net/netlabel.h
5241F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005242
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005244M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005246W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005248F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005249F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005250F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005252NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005253M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005255F: Documentation/blockdev/nbd.txt
5256F: drivers/block/nbd.c
5257F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005258F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
Neil Horman6e436502009-10-05 03:56:55 +00005260NETWORK DROP MONITOR
5261M: Neil Horman <nhorman@tuxdriver.com>
5262L: netdev@vger.kernel.org
5263S: Maintained
5264W: https://fedorahosted.org/dropwatch/
5265F: net/core/drop_monitor.c
5266
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005268M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005269L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005270W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005271Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005272T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5273T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005275F: net/
5276F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005277F: include/linux/in.h
5278F: include/linux/net.h
5279F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005280F: include/uapi/linux/in.h
5281F: include/uapi/linux/net.h
5282F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283
5284NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005285M: "David S. Miller" <davem@davemloft.net>
5286M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005287M: James Morris <jmorris@namei.org>
5288M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5289M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005290L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005291T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005293F: net/ipv4/
5294F: net/ipv6/
5295F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005296F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297
David S. Miller73b76562012-10-16 14:08:40 -04005298NETWORKING [IPSEC]
5299M: Steffen Klassert <steffen.klassert@secunet.com>
5300M: Herbert Xu <herbert@gondor.apana.org.au>
5301M: "David S. Miller" <davem@davemloft.net>
5302L: netdev@vger.kernel.org
5303T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5304S: Maintained
5305F: net/xfrm/
5306F: net/key/
5307F: net/ipv4/xfrm*
5308F: net/ipv6/xfrm*
5309F: include/uapi/linux/xfrm.h
5310F: include/net/xfrm.h
5311
James Morris10e2ff12007-08-25 14:41:28 -07005312NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005313M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005314L: netdev@vger.kernel.org
5315S: Maintained
5316
John W. Linville29f8f632006-01-18 14:52:48 -08005317NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005318M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005319L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005320Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005321T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005322S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005323F: net/mac80211/
5324F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005325F: net/wireless/
5326F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005327F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005328F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005329F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005330F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005331
Joe Perches788873a2009-04-16 09:38:45 +00005332NETWORKING DRIVERS
5333L: netdev@vger.kernel.org
5334W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005335Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005336T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5337T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005338S: Odd Fixes
5339F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005340F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005341F: include/linux/netdevice.h
5342F: include/linux/arcdevice.h
5343F: include/linux/etherdevice.h
5344F: include/linux/fcdevice.h
5345F: include/linux/fddidevice.h
5346F: include/linux/hippidevice.h
5347F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005348F: include/uapi/linux/if_*
5349F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005350
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005351NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005352M: Sony Chacko <sony.chacko@qlogic.com>
5353M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005354L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005355W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005356S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005357F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005358
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005359NFC SUBSYSTEM
5360M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5361M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5362M: Samuel Ortiz <sameo@linux.intel.com>
5363L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005364L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005365S: Maintained
5366F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005367F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005368F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005369F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005370F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005372NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005373M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005374L: linux-nfs@vger.kernel.org
5375W: http://client.linux-nfs.org
5376T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005378F: fs/lockd/
5379F: fs/nfs/
5380F: fs/nfs_common/
5381F: net/sunrpc/
5382F: include/linux/lockd/
5383F: include/linux/nfs*
5384F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005385F: include/uapi/linux/nfs*
5386F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005388NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005389M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005390L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005391W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005392T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005393S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005394F: Documentation/filesystems/nilfs2.txt
5395F: fs/nilfs2/
5396F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005397
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005399M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005402F: Documentation/scsi/NinjaSCSI.txt
5403F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404
5405NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005406M: GOTO Masanori <gotom@debian.or.jp>
5407M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005410F: Documentation/scsi/NinjaSCSI.txt
5411F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005414M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005416W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005417T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005418S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005419F: Documentation/filesystems/ntfs.txt
5420F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005422NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005423M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005424L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005426F: drivers/video/riva/
5427F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428
Tony Lindgrenf5525782009-05-28 13:23:53 -07005429OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005430M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005431L: linux-omap@vger.kernel.org
5432W: http://www.muru.com/linux/omap/
5433W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005434Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005435T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005436S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005437F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005438F: drivers/i2c/busses/i2c-omap.c
5439F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005440
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005441OMAP DEVICE TREE SUPPORT
5442M: Benoît Cousson <b-cousson@ti.com>
5443M: Tony Lindgren <tony@atomide.com>
5444L: linux-omap@vger.kernel.org
5445L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5446S: Maintained
5447F: arch/arm/boot/dts/*omap*
5448F: arch/arm/boot/dts/*am3*
5449
Tony Lindgrenf5525782009-05-28 13:23:53 -07005450OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005451M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005452L: linux-omap@vger.kernel.org
5453S: Maintained
5454F: arch/arm/*omap*/*clock*
5455
5456OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005457M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005458L: linux-omap@vger.kernel.org
5459S: Maintained
5460F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005461F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005462
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005463OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5464M: Rajendra Nayak <rnayak@ti.com>
5465M: Paul Walmsley <paul@pwsan.com>
5466L: linux-omap@vger.kernel.org
5467S: Maintained
5468F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5469F: arch/arm/mach-omap2/powerdomain44xx.c
5470F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5471F: arch/arm/mach-omap2/clockdomain44xx.c
5472
Tony Lindgrenf5525782009-05-28 13:23:53 -07005473OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005474M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005475M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005476L: alsa-devel@alsa-project.org (subscribers-only)
5477L: linux-omap@vger.kernel.org
5478S: Maintained
5479F: sound/soc/omap/
5480
5481OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005482M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005483L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005484L: linux-omap@vger.kernel.org
5485S: Maintained
5486F: drivers/video/omap/
5487
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005488OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005489M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005490L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005491L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005492S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005493F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005494F: Documentation/arm/OMAP/DSS
5495
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005496OMAP HARDWARE SPINLOCK SUPPORT
5497M: Ohad Ben-Cohen <ohad@wizery.com>
5498L: linux-omap@vger.kernel.org
5499S: Maintained
5500F: drivers/hwspinlock/omap_hwspinlock.c
5501F: arch/arm/mach-omap2/hwspinlock.c
5502
Tony Lindgrenf5525782009-05-28 13:23:53 -07005503OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005504M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005505L: linux-omap@vger.kernel.org
5506S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005507F: drivers/mmc/host/omap.c
5508
5509OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305510M: Venkatraman S <svenkatr@ti.com>
5511L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005512L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305513S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005514F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005515
5516OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005517M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005518S: Maintained
5519F: drivers/char/hw_random/omap-rng.c
5520
Paul Walmsleyf400c822010-12-06 19:08:54 -07005521OMAP HWMOD SUPPORT
5522M: Benoît Cousson <b-cousson@ti.com>
5523M: Paul Walmsley <paul@pwsan.com>
5524L: linux-omap@vger.kernel.org
5525S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005526F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005527
5528OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5529M: Benoît Cousson <b-cousson@ti.com>
5530L: linux-omap@vger.kernel.org
5531S: Maintained
5532F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5533
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005534OMAP IMAGE SIGNAL PROCESSOR (ISP)
5535M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5536L: linux-media@vger.kernel.org
5537S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005538F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005539
Tony Lindgrenf5525782009-05-28 13:23:53 -07005540OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005541M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005542L: linux-usb@vger.kernel.org
5543L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005544T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005545S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005546F: drivers/usb/*/*omap*
5547F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005548
Kevin Hilman6d994712012-07-16 10:05:07 -07005549OMAP GPIO DRIVER
5550M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5551M: Kevin Hilman <khilman@ti.com>
5552L: linux-omap@vger.kernel.org
5553S: Maintained
5554F: drivers/gpio/gpio-omap.c
5555
Bob Copeland0ad122d2008-07-25 19:45:18 -07005556OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005557M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005558L: linux-karma-devel@lists.sourceforge.net
5559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005560F: Documentation/filesystems/omfs.txt
5561F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005562
Harald Weltec1986ee2005-11-13 16:06:29 -08005563OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005564M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005566F: drivers/char/pcmcia/cm4000_cs.c
5567F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005568F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005569
Harald Welte77c44ab2005-11-13 16:06:26 -08005570OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005571M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005573F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005574
Jonathan Corbet77d51402007-03-22 19:44:17 -03005575OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005576M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005577L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005578T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005579S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005580F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005581
Thomas Gleixner431bca72007-05-02 09:31:35 +02005582ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005583M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005584L: linux-mtd@lists.infradead.org
5585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005586F: drivers/mtd/onenand/
5587F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005588
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005590M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591L: osst-users@lists.sourceforge.net
5592L: linux-scsi@vger.kernel.org
5593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005594F: drivers/scsi/osst*
5595F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005597OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005598M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005599L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005601F: Documentation/i2c/busses/i2c-ocores
5602F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005603
Grant Likely860c44c2009-10-26 16:49:49 -07005604OPEN FIRMWARE AND FLATTENED DEVICE TREE
5605M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005606M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005607L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005608W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005609T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005610S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005611F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005612F: drivers/of
5613F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005614F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005615K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005616K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005617
Jonas Bonn19f9d392011-06-04 22:00:38 +03005618OPENRISC ARCHITECTURE
5619M: Jonas Bonn <jonas@southpole.se>
5620W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005621L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005622S: Maintained
5623T: git git://openrisc.net/~jonas/linux
5624F: arch/openrisc
5625
Jesse Grossccb13522011-10-25 19:26:31 -07005626OPENVSWITCH
5627M: Jesse Gross <jesse@nicira.com>
5628L: dev@openvswitch.org
5629W: http://openvswitch.org
5630T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5631S: Maintained
5632F: net/openvswitch/
5633
Clemens Ladischaf399172011-01-10 16:32:54 +01005634OPL4 DRIVER
5635M: Clemens Ladisch <clemens@ladisch.de>
5636L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5637T: git git://git.alsa-project.org/alsa-kernel.git
5638S: Maintained
5639F: sound/drivers/opl4/
5640
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005642M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643L: oprofile-list@lists.sf.net
5644S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005645F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005646F: arch/*/oprofile/
5647F: drivers/oprofile/
5648F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005650ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005651M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005652M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005653L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5654W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005655T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005656S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005657F: Documentation/filesystems/ocfs2.txt
5658F: Documentation/filesystems/dlmfs.txt
5659F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005660
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005662L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005663W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005664W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005665S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005666F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005668OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005669M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005670M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005671L: osd-dev@open-osd.org
5672W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005673T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005674S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005675F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005676F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005677F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005678
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005679P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005680M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005681L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005682W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005684F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005685
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005686PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005687M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005688L: netdev@vger.kernel.org
5689S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005690F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005691
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005692PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005693M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005694L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005696F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005697
Steffen Klassert48fc2672010-08-13 10:10:46 -04005698PADATA PARALLEL EXECUTION MECHANISM
5699M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005700L: linux-crypto@vger.kernel.org
5701S: Maintained
5702F: kernel/padata.c
5703F: include/linux/padata.h
5704F: Documentation/padata.txt
5705
Harald Welte709ee532008-09-23 17:46:57 +02005706PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005707M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005708L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005710F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005711
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005712PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005713M: David Howells <dhowells@redhat.com>
5714M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005715L: linux-am33-list@redhat.com (moderated for non-subscribers)
5716W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005718F: Documentation/mn10300/
5719F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005720
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005722L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005723S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005724F: drivers/parport/
5725F: include/linux/parport*.h
5726F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005727F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005729PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005730M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005731M: Chris Wright <chrisw@sous-sol.org>
5732M: Alok Kataria <akataria@vmware.com>
5733M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005734L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005735S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005736F: Documentation/ia64/paravirt_ops.txt
5737F: arch/*/kernel/paravirt*
5738F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005739
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005741M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005742L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743W: http://www.torque.net/linux-pp.html
5744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005745F: Documentation/blockdev/paride.txt
5746F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747
5748PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005749M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005750M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005751L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005753Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005754T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005756F: arch/parisc/
5757F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758
Jim Cromie1662d322006-10-06 00:43:59 -07005759PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005760M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005761L: lm-sensors@lm-sensors.org
5762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005763F: Documentation/hwmon/pc87360
5764F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005765
5766PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005767M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005769F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005770
Jean Delvare1ad107f2010-08-14 21:09:00 +02005771PC87427 HARDWARE MONITORING DRIVER
5772M: Jean Delvare <khali@linux-fr.org>
5773L: lm-sensors@lm-sensors.org
5774S: Maintained
5775F: Documentation/hwmon/pc87427
5776F: drivers/hwmon/pc87427.c
5777
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005778PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005779M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005780S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005781F: drivers/leds/leds-pca9532.c
5782F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005783
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005784PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005785M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005786L: linux-i2c@vger.kernel.org
5787S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005788F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005789
Khalid Aziz3971dae2012-04-12 12:49:13 -07005790PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005791M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005792S: Maintained
5793F: drivers/firmware/pcdp.*
5794
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005795PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005796M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005797L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005798S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005799F: Documentation/PCI/pci-error-recovery.txt
5800F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005801
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005803M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005804L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005805Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005806T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005808F: Documentation/PCI/
5809F: drivers/pci/
5810F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005813P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005814L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005815W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005816T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005818F: Documentation/pcmcia/
5819F: drivers/pcmcia/
5820F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821
5822PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005823M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005824L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005826F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827
Steffen Klassert48fc2672010-08-13 10:10:46 -04005828PCRYPT PARALLEL CRYPTO ENGINE
5829M: Steffen Klassert <steffen.klassert@secunet.com>
5830L: linux-crypto@vger.kernel.org
5831S: Maintained
5832F: crypto/pcrypt.c
5833F: include/crypto/pcrypt.h
5834
Tejun Heoe72df0b2010-12-10 17:02:49 +01005835PER-CPU MEMORY ALLOCATOR
5836M: Tejun Heo <tj@kernel.org>
5837M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005838T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5839S: Maintained
5840F: include/linux/percpu*.h
5841F: mm/percpu*.c
5842F: arch/*/include/asm/percpu.h
5843
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005844PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005845M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005847F: include/linux/delayacct.h
5848F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005849
Ingo Molnar57c0c152009-09-21 12:20:38 +02005850PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005851M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5852M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005853M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005854M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005855T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005856S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005857F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005858F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005859F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005860F: arch/*/kernel/perf_event*.c
5861F: arch/*/kernel/*/perf_event*.c
5862F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005863F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02005864F: arch/*/kernel/perf_callchain.c
5865F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005866
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005867PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005868M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005869L: linux-abi-devel@lists.sourceforge.net
5870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005871F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005872F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005873
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005874PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005875M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005876S: Supported
5877F: Documentation/networking/phonet.txt
5878F: include/linux/phonet.h
5879F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005880F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005881F: net/phonet/
5882
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005884M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885L: linux-mtd@lists.infradead.org
5886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005887F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888
Bruno Prémontefdbb102012-07-30 21:39:03 +02005889PICOLCD HID DRIVER
5890M: Bruno Prémont <bonbons@linux-vserver.org>
5891L: linux-input@vger.kernel.org
5892S: Maintained
5893F: drivers/hid/hid-picolcd*
5894
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005895PICOXCELL SUPPORT
5896M: Jamie Iles <jamie@jamieiles.com>
5897L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5898T: git git://github.com/jamieiles/linux-2.6-ji.git
5899S: Supported
5900F: arch/arm/mach-picoxcell
5901F: drivers/*/picoxcell*
5902F: drivers/*/*/picoxcell*
5903
Linus Walleij2744e8a2011-05-02 20:50:54 +02005904PIN CONTROL SUBSYSTEM
5905M: Linus Walleij <linus.walleij@linaro.org>
5906S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005907F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005908F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005909
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02005910PIN CONTROLLER - ATMEL AT91
5911M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
5912L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5913S: Maintained
5914F: drivers/pinctrl/pinctrl-at91.c
5915
Viresh Kumardeda8282012-03-28 22:27:07 +05305916PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005917M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305918L: spear-devel@list.st.com
5919L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5920W: http://www.st.com/spear
5921S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005922F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305923
Peter Osterlund249a6772005-09-27 21:45:30 -07005924PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005925M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005927F: drivers/block/pktcdvd.c
5928F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005929F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005930
GuanXuetaob31d8272011-01-16 00:35:49 +08005931PKUNITY SOC DRIVERS
5932M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5933W: http://mprc.pku.edu.cn/~guanxuetao/linux
5934S: Maintained
5935T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5936F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005937F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005938F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005939F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005940
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005941PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005942M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005943L: lm-sensors@lm-sensors.org
5944W: http://www.lm-sensors.org/
5945W: http://www.roeck-us.net/linux/drivers/
5946T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5947S: Maintained
5948F: Documentation/hwmon/pmbus
5949F: drivers/hwmon/pmbus/
5950F: include/linux/i2c/pmbus.h
5951
Anil Ravindranath89a36812009-08-25 17:35:18 -07005952PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005953M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005954L: linux-scsi@vger.kernel.org
5955W: http://www.pmc-sierra.com/
5956S: Supported
5957F: drivers/scsi/pmcraid.*
5958
jack wangdbf9bfe2009-10-14 16:19:21 +08005959PMC SIERRA PM8001 DRIVER
5960M: jack_wang@usish.com
5961M: lindar_liu@usish.com
5962L: linux-scsi@vger.kernel.org
5963S: Supported
5964F: drivers/scsi/pm8001/
5965
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005967M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005968T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005970F: fs/timerfd.c
5971F: include/linux/timer*
5972F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973
Anton Vorontsov3be86142007-07-15 04:43:36 +04005974POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005975M: Anton Vorontsov <cbou@mail.ru>
5976M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005977T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005979F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005980F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005981
Linus Torvalds1da177e2005-04-16 15:20:36 -07005982PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005983M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005984M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005986F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987
Vitaly Wool999445d2007-01-04 13:07:03 +01005988PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005989M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005990L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005992F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005993
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005995M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996L: linux-ppp@vger.kernel.org
5997S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005998F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999
6000PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006001M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006003F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006004F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005
6006PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006007M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006009F: drivers/net/ppp/pppoe.c
6010F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011
James Chapmana6d23702007-06-27 15:53:17 -07006012PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006013M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006014S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006015F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006016F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006017F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006018
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006019PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006020M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006021W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6022L: linuxpps@ml.enneenne.com (subscribers-only)
6023S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006024F: Documentation/pps/
6025F: drivers/pps/
6026F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006027
Harry Wei71a6d0a2011-05-11 15:13:33 -07006028PPTP DRIVER
6029M: Dmitry Kozlov <xeb@mail.ru>
6030L: netdev@vger.kernel.org
6031S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006032F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006033W: http://sourceforge.net/projects/accel-pptp
6034
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006036M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037L: kpreempt-tech@lists.sourceforge.net
6038W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6039S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006040F: Documentation/preempt-locking.txt
6041F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006042
6043PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006044M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006045L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006046W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006047S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006048F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006049
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006050PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006051M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006052L: linux-ide@vger.kernel.org
6053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006054F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006055
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006056PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006057M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006058L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006059L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006060S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006061F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006062
Geoff Levandf58a9d12006-11-23 00:46:51 +01006063PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006064M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006065L: linuxppc-dev@lists.ozlabs.org
6066L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006068F: arch/powerpc/boot/ps3*
6069F: arch/powerpc/include/asm/lv1call.h
6070F: arch/powerpc/include/asm/ps3*.h
6071F: arch/powerpc/platforms/ps3/
6072F: drivers/*/ps3*
6073F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006074F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006075F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006076F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006077
Jim Pariscffb4add2009-01-06 11:32:10 +00006078PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006079M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006080L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006081S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006082F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006083
Anton Vorontsov8defe592012-08-03 18:07:20 -07006084PSTORE FILESYSTEM
6085M: Anton Vorontsov <cbouatmailru@gmail.com>
6086M: Colin Cross <ccross@android.com>
6087M: Kees Cook <keescook@chromium.org>
6088M: Tony Luck <tony.luck@intel.com>
6089S: Maintained
6090T: git git://git.infradead.org/users/cbou/linux-pstore.git
6091F: fs/pstore/
6092F: include/linux/pstore*
6093F: drivers/firmware/efivars.c
6094F: drivers/acpi/apei/erst.c
6095
Richard Cochran7fbc4152012-03-10 01:55:53 +00006096PTP HARDWARE CLOCK SUPPORT
6097M: Richard Cochran <richardcochran@gmail.com>
6098S: Maintained
6099W: http://linuxptp.sourceforge.net/
6100F: Documentation/ABI/testing/sysfs-ptp
6101F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006102F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006103F: drivers/net/phy/dp83640*
6104F: drivers/ptp/*
6105F: include/linux/ptp_cl*
6106
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006107PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006108M: Roland McGrath <roland@redhat.com>
6109M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006110S: Maintained
6111F: include/asm-generic/syscall.h
6112F: include/linux/ptrace.h
6113F: include/linux/regset.h
6114F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006115F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006116F: kernel/ptrace.c
6117
Michael Krufky83202042006-07-03 00:24:18 -07006118PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006119M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006120L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006121L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006122W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006123T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006125F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006126F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006127
Hans de Goede39532e62012-11-04 17:05:59 -03006128PWC WEBCAM DRIVER
6129M: Hans de Goede <hdegoede@redhat.com>
6130L: linux-media@vger.kernel.org
6131T: git git://linuxtv.org/media_tree.git
6132S: Maintained
6133F: drivers/media/usb/pwc/*
6134
Thierry Reding200efed2012-03-27 13:16:18 +02006135PWM SUBSYSTEM
6136M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006137L: linux-kernel@vger.kernel.org
6138S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006139W: http://gitorious.org/linux-pwm
6140T: git git://gitorious.org/linux-pwm/linux-pwm.git
6141F: Documentation/pwm.txt
6142F: Documentation/devicetree/bindings/pwm/
6143F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006144F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006145F: drivers/video/backlight/pwm_bl.c
6146F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006147
Eric Miao30ec2612008-06-12 15:21:41 -07006148PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006149M: Eric Miao <eric.y.miao@gmail.com>
6150M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006151M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006152L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006153T: git git://github.com/hzhuang1/linux.git
6154T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006156F: arch/arm/mach-pxa/
6157F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006158F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006159F: drivers/usb/gadget/pxa2*
6160F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006161F: sound/arm/pxa*
6162F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006164MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006165M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006166M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006167L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006168T: git git://github.com/hzhuang1/linux.git
6169T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006170S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006171F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006172
Pierre Ossman272f1332007-05-14 21:25:26 +02006173PXA MMCI DRIVER
6174S: Orphan
6175
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006176PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006177M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006178L: rtc-linux@googlegroups.com
6179S: Maintained
6180
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006181QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006182M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006183L: linux-rdma@vger.kernel.org
6184S: Supported
6185F: drivers/infiniband/hw/qib/
6186
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006187QLOGIC QLA1280 SCSI DRIVER
6188M: Michael Reed <mdr@sgi.com>
6189L: linux-scsi@vger.kernel.org
6190S: Maintained
6191F: drivers/scsi/qla1280.[ch]
6192
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006194M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006195M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196L: linux-scsi@vger.kernel.org
6197S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006198F: Documentation/scsi/LICENSE.qla2xxx
6199F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200
Ravi Anand883c98f2010-04-28 11:45:49 +05306201QLOGIC QLA4XXX iSCSI DRIVER
6202M: Ravi Anand <ravi.anand@qlogic.com>
6203M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6204M: iscsi-driver@qlogic.com
6205L: linux-scsi@vger.kernel.org
6206S: Supported
6207F: drivers/scsi/qla4xxx/
6208
Ron Mercer5a4faa82006-07-25 00:40:21 -07006209QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006210M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006211M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa82006-07-25 00:40:21 -07006212M: linux-driver@qlogic.com
6213L: netdev@vger.kernel.org
6214S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006215F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006216F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07006217
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006218QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006219M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006220M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006221M: linux-driver@qlogic.com
6222L: netdev@vger.kernel.org
6223S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006224F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006225
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006226QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006227M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006228M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006229M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006230L: netdev@vger.kernel.org
6231S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006232F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006233
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006235M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236W: http://www.alarsen.net/linux/qnx4fs/
6237S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006238F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006239F: include/uapi/linux/qnx4_fs.h
6240F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006241
Antti Palosaari91952bc2012-10-01 12:28:46 -03006242QT1010 MEDIA DRIVER
6243M: Antti Palosaari <crope@iki.fi>
6244L: linux-media@vger.kernel.org
6245W: http://linuxtv.org/
6246W: http://palosaari.fi/linux/
6247Q: http://patchwork.linuxtv.org/project/linux-media/list/
6248T: git git://linuxtv.org/anttip/media_tree.git
6249S: Maintained
6250F: drivers/media/tuners/qt1010*
6251
Richard Kuo4f4567c2011-10-31 18:56:38 -05006252QUALCOMM HEXAGON ARCHITECTURE
6253M: Richard Kuo <rkuo@codeaurora.org>
6254L: linux-hexagon@vger.kernel.org
6255S: Supported
6256F: arch/hexagon/
6257
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006258RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006259M: Yehuda Sadeh <yehuda@inktank.com>
6260M: Sage Weil <sage@inktank.com>
6261M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006262M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006263W: http://ceph.com/
6264T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006265S: Supported
6266F: drivers/block/rbd.c
6267F: drivers/block/rbd_types.h
6268
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006270M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006271L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006273F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006274F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275
Hans de Goedec6c9b342012-11-04 17:03:58 -03006276RADIOSHARK RADIO DRIVER
6277M: Hans de Goede <hdegoede@redhat.com>
6278L: linux-media@vger.kernel.org
6279T: git git://linuxtv.org/media_tree.git
6280S: Maintained
6281F: drivers/media/radio/radio-shark.c
6282
6283RADIOSHARK2 RADIO DRIVER
6284M: Hans de Goede <hdegoede@redhat.com>
6285L: linux-media@vger.kernel.org
6286T: git git://linuxtv.org/media_tree.git
6287S: Maintained
6288F: drivers/media/radio/radio-shark2.c
6289F: drivers/media/radio/radio-tea5777.c
6290
Linus Torvalds1da177e2005-04-16 15:20:36 -07006291RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006292M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006293L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006295F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296
Randy Dunlape7839f22008-10-12 16:11:45 -07006297RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006298P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006299M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006300M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006301M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006302L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006303L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006304W: http://rt2x00.serialmonkey.com/
6305S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006306T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006307F: drivers/net/wireless/rt2x00/
6308
Nick Piggin9db55792008-02-08 04:19:49 -08006309RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006310M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006312F: Documentation/blockdev/ramdisk.txt
6313F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006314
Matt Mackall9e95ce22005-04-16 15:25:56 -07006315RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006316M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006318F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006319
Matt Porter394b7012005-11-07 01:00:15 -08006320RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006321M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006322M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006324F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006325
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006326RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006327L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006328S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006329F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006330
6331RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006332M: Josh Triplett <josh@freedesktop.org>
6333M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006334S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006335T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006336F: Documentation/RCU/torture.txt
6337F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006338
Florian Fainellic1f766b2008-02-06 22:39:44 +01006339RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006340M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006341S: Maintained
6342
Florian Fainellidb17f392007-12-19 11:30:30 +01006343RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006344M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006345L: netdev@vger.kernel.org
6346S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006347F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006348
Andy Grovera09ed662009-02-24 15:30:41 +00006349RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006350M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006351L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006352S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006353F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006354
Josh Triplett595182b2006-10-04 02:17:21 -07006355READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006356M: Dipankar Sarma <dipankar@in.ibm.com>
6357M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab9782012-05-07 09:36:34 -07006358W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006359S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006360T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006361F: Documentation/RCU/
Paul E. McKenney9fab9782012-05-07 09:36:34 -07006362X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006363F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006364F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006365X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006366
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006367REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006368M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006369L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006370Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006372F: Documentation/rtc.txt
6373F: drivers/rtc/
6374F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006375F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006376
Linus Torvalds1da177e2005-04-16 15:20:36 -07006377REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006378L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006380F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381
Mark Brownb83a3132011-05-11 19:59:58 +02006382REGISTER MAP ABSTRACTION
6383M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6384T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6385S: Supported
6386F: drivers/base/regmap/
6387F: include/linux/regmap.h
6388
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006389REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6390M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006391T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006392S: Maintained
6393F: drivers/remoteproc/
6394F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006395F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006396
Ivo van Doorne08976452008-04-12 19:23:55 +02006397RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006398M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006399L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006400W: http://wireless.kernel.org/
6401T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6402T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006403S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006404F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006405F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006406
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006407RICOH SMARTMEDIA/XD DRIVER
6408M: Maxim Levitsky <maximlevitsky@gmail.com>
6409S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006410F: drivers/mtd/nand/r852.c
6411F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006412
Maxim Levitsky92634122011-03-25 01:56:59 -07006413RICOH R5C592 MEMORYSTICK DRIVER
6414M: Maxim Levitsky <maximlevitsky@gmail.com>
6415S: Maintained
6416F: drivers/memstick/host/r592.*
6417
Linus Torvalds1da177e2005-04-16 15:20:36 -07006418ROCKETPORT DRIVER
6419P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420W: http://www.comtrol.com
6421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006422F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006423F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424
6425ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006426M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006428W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006430F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006431F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006432F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433
Antti Palosaari91952bc2012-10-01 12:28:46 -03006434RTL2830 MEDIA DRIVER
6435M: Antti Palosaari <crope@iki.fi>
6436L: linux-media@vger.kernel.org
6437W: http://linuxtv.org/
6438W: http://palosaari.fi/linux/
6439Q: http://patchwork.linuxtv.org/project/linux-media/list/
6440T: git git://linuxtv.org/anttip/media_tree.git
6441S: Maintained
6442F: drivers/media/dvb-frontends/rtl2830*
6443
Larry Finger59840482008-11-12 17:13:09 -06006444RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006445M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006446L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006447W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006448T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006449S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006450F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006451
Larry Finger59840482008-11-12 17:13:09 -06006452RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006453M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006454M: Hin-Tak Leung <htl10@users.sourceforge.net>
6455M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006456L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006457W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006458T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006459S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006460F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006461
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006462RTL8192CE WIRELESS DRIVER
6463M: Larry Finger <Larry.Finger@lwfinger.net>
6464M: Chaoming Li <chaoming_li@realsil.com.cn>
6465L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006466W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006467T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6468S: Maintained
6469F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006470F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006471
6472S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006473M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006474L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006476F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006477
Linus Torvalds1da177e2005-04-16 15:20:36 -07006478S390
Joe Perches8b58be82009-07-29 15:04:30 -07006479M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6480M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006482L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006483W: http://www.ibm.com/developerworks/linux/linux390/
6484S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006485F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006486F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006487F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006488F: Documentation/s390/
6489F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006490
6491S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006492M: Ursula Braun <ursula.braun@de.ibm.com>
6493M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006494M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006495L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006496W: http://www.ibm.com/developerworks/linux/linux390/
6497S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006498F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006499
Felix Beckfeed9b62009-03-26 15:24:23 +01006500S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006501M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006502M: linux390@de.ibm.com
6503L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006504W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006505S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006506F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006507
Heiko Carstens5238da42006-02-11 17:56:01 -08006508S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006509M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006510M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006511L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006512W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006514F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515
Ursula Braundd96df22007-09-19 13:09:02 +02006516S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006517M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006518M: linux390@de.ibm.com
6519L: linux-s390@vger.kernel.org
6520W: http://www.ibm.com/developerworks/linux/linux390/
6521S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006522F: drivers/s390/net/*iucv*
6523F: include/net/iucv/
6524F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006525
Ben Dooks4dde7f72008-06-30 22:40:38 +01006526S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006527M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006528L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006529S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006530F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006531
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006532SAA7134 VIDEO4LINUX DRIVER
6533M: Mauro Carvalho Chehab <mchehab@redhat.com>
6534L: linux-media@vger.kernel.org
6535W: http://linuxtv.org
6536T: git git://linuxtv.org/media_tree.git
6537S: Odd fixes
6538F: Documentation/video4linux/saa7134/
6539F: drivers/media/pci/saa7134/
6540
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006542M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006543L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006544T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545W: http://www.mihu.de/linux/saa7146
6546S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006547F: drivers/media/common/saa7146/
6548F: drivers/media/pci/saa7146/
6549F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550
Corentin Chary92304a42011-12-05 12:38:35 -05006551SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006552M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006553L: platform-driver-x86@vger.kernel.org
6554S: Maintained
6555F: drivers/platform/x86/samsung-laptop.c
6556
Mark Brown4a109cc2010-09-24 10:50:46 +01006557SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006558M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006559L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6560S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006561F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006562
Jingoo Han0d89a282011-12-19 11:09:35 +09006563SAMSUNG FRAMEBUFFER DRIVER
6564M: Jingoo Han <jg1.han@samsung.com>
6565L: linux-fbdev@vger.kernel.org
6566S: Maintained
6567F: drivers/video/s3c-fb.c
6568
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006569SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6570M: Sangbeom Kim <sbkim73@samsung.com>
6571L: linux-kernel@vger.kernel.org
6572S: Supported
6573F: drivers/mfd/sec*.c
6574F: drivers/regulator/s2m*.c
6575F: drivers/regulator/s5m*.c
6576F: drivers/rtc/rtc-sec.c
6577F: include/linux/mfd/samsung/
6578
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006579SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6580M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6581L: linux-media@vger.kernel.org
6582L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6583S: Maintained
6584F: drivers/media/platform/s3c-camif/
6585F: include/media/s3c_camif.h
6586
Alan Coxca749e22011-03-18 13:56:14 +00006587SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006588M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006589L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006590S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006591F: drivers/tty/serial
6592
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306593SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006594M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306595S: Maintained
6596F: include/linux/dw_dmac.h
6597F: drivers/dma/dw_dmac_regs.h
6598F: drivers/dma/dw_dmac.c
6599
Thomas Gleixner88606e82010-12-14 21:37:13 +01006600TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006601M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006602M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006603T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006604S: Supported
6605F: include/linux/clocksource.h
6606F: include/linux/time.h
6607F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006608F: include/uapi/linux/time.h
6609F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006610F: kernel/time/clocksource.c
6611F: kernel/time/time*.c
6612F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006613F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006614
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006615TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006616M: Huang Shijie <shijie8@gmail.com>
6617M: Kang Yong <kangyong@telegent.com>
6618M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006619S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006620F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006621
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006623M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006625F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626
6627SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006628M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006629M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006630T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006631S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006632F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006633F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006634F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006635
Chen Liqin6bcf6732009-06-13 15:24:33 +08006636SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006637M: Chen Liqin <liqin.chen@sunplusct.com>
6638M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006639W: http://www.sunplusct.com
6640S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006641F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006642
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006644M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006645L: linux-scsi@vger.kernel.org
6646W: http://www.kernel.dk
6647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006648F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006649
Roland Dreierfb50a832010-10-07 09:54:53 -07006650SCSI RDMA PROTOCOL (SRP) INITIATOR
6651M: David Dillow <dillowda@ornl.gov>
6652L: linux-rdma@vger.kernel.org
6653S: Supported
6654W: http://www.openfabrics.org
6655Q: http://patchwork.kernel.org/project/linux-rdma/list/
6656T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6657F: drivers/infiniband/ulp/srp/
6658F: include/scsi/srp.h
6659
Linus Torvalds1da177e2005-04-16 15:20:36 -07006660SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006661M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662L: linux-scsi@vger.kernel.org
6663W: http://www.torque.net/sg
6664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006665F: drivers/scsi/sg.c
6666F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006667
6668SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006669M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006671T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6672T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6673T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006675F: drivers/scsi/
6676F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677
6678SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006679M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680L: linux-scsi@vger.kernel.org
6681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006682F: Documentation/scsi/st.txt
6683F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006684
6685SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006686M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006687M: Sridhar Samudrala <sri@us.ibm.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006688M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006689L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006690W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006692F: Documentation/networking/sctp.txt
6693F: include/linux/sctp.h
6694F: include/net/sctp/
6695F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006696
6697SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006698M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006699S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006700F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006701F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006702F: drivers/watchdog/scx200_wdt.c
6703F: drivers/i2c/busses/scx200*
6704F: drivers/mtd/maps/scx200_docflash.c
6705F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006706
6707SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006708M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006710F: drivers/char/scx200_gpio.c
6711F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006712
6713SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006714M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006716F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717
Sascha Sommer6a369132008-07-15 14:21:29 +02006718SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006719M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006720L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006722F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006723
Randy Dunlape7839f22008-10-12 16:11:45 -07006724SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006725M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006726L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006727T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6728S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006729F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006730F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006731
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006732SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006733M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006734L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006735L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006736S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006737F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006738
Ben Dooks0d1bb412009-06-14 13:52:37 +01006739SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006740M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006741L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006742S: Maintained
6743F: drivers/mmc/host/sdhci-s3c.c
6744
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006745SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006746M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006747L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006748L: linux-mmc@vger.kernel.org
6749S: Maintained
6750F: drivers/mmc/host/sdhci-spear.c
6751
James Morris8711cca2008-12-04 03:19:45 +11006752SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006753M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006754L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006755T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006756W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006757S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006758F: security/
James Morris8711cca2008-12-04 03:19:45 +11006759
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006761M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006762S: Supported
6763
6764SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006765M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006766M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006767M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006768L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006769W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006770T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006771S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006772F: include/linux/selinux*
6773F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006774F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775
John Johansenc1c124e2010-07-29 14:48:09 -07006776APPARMOR SECURITY MODULE
6777M: John Johansen <john.johansen@canonical.com>
6778L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6779W: apparmor.wiki.kernel.org
6780T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6781S: Supported
6782F: security/apparmor/
6783
Jiri Slabycef2cf02007-05-08 00:31:45 -07006784SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006785M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006787F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006788F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006789
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006790SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006791M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006792L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006793T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006794S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006795F: drivers/ata/
6796F: include/linux/ata.h
6797F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006798
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306799SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006800M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006801L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006802W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006803S: Supported
6804F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306805
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006806SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006807M: Sathya Perla <sathya.perla@emulex.com>
6808M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6809M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006810L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006811W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006812S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006813F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006814
Ben Hutchings8ceee662008-04-27 12:55:59 +01006815SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006816M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006817M: Ben Hutchings <bhutchings@solarflare.com>
6818L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006819S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006820F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006821
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006822SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006823M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006825F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006826
6827SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006828M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006829L: linux-ia64@vger.kernel.org
6830S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006831F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006832F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006833F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006834
Linus Torvalds1da177e2005-04-16 15:20:36 -07006835SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006836M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006837L: linux-visws-devel@lists.sf.net
6838W: http://linux-visws.sf.net
6839S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006840F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006841
Jack Steiner75312612008-08-15 00:40:42 -07006842SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006843M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006845F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006846
Len Brown6349d992009-08-14 15:07:14 -04006847SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006848M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006849L: sfi-devel@simplefirmware.org
6850W: http://simplefirmware.org/
6851T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006852S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006853F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006854F: drivers/sfi/
6855F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006856
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857SIMTEC EB110ATX (Chalice CATS)
6858P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006859P: Vincent Sanders <vince@simtec.co.uk>
6860M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006861W: http://www.simtec.co.uk/products/EB110ATX/
6862S: Supported
6863
6864SIMTEC EB2410ITX (BAST)
6865P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006866P: Vincent Sanders <vince@simtec.co.uk>
6867M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006868W: http://www.simtec.co.uk/products/EB2410ITX/
6869S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006870F: arch/arm/mach-s3c2410/mach-bast.c
6871F: arch/arm/mach-s3c2410/bast-ide.c
6872F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006874TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006875M: Sekhar Nori <nsekhar@ti.com>
6876M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306877L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306878T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006879Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006880S: Supported
6881F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006882F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006883
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03006884TI DAVINCI SERIES MEDIA DRIVER
6885M: Manjunath Hadli <manjunath.hadli@ti.com>
6886M: Prabhakar Lad <prabhakar.lad@ti.com>
6887L: linux-media@vger.kernel.org
6888L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
6889W: http://linuxtv.org/
6890Q: http://patchwork.linuxtv.org/project/linux-media/list/
6891T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
6892S: Supported
6893F: drivers/media/platform/davinci/
6894F: include/media/davinci/
6895
Francois Romieu92aab3c2005-07-30 13:11:18 +02006896SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006897M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006898L: netdev@vger.kernel.org
6899S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006900F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006901
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006903M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006904W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006905L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006907F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006908
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006909SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006910M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006911L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006913F: Documentation/i2c/busses/i2c-sis96x
6914F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006915
Linus Torvalds1da177e2005-04-16 15:20:36 -07006916SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006917M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006918W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006920F: Documentation/fb/sisfb.txt
6921F: drivers/video/sis/
6922F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006923
6924SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006925M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006926W: http://www.winischhofer.at/linuxsisusbvga.shtml
6927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006928F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006929
Christoph Lameter415ad262007-07-26 10:40:56 -07006930SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006931M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006932M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006933M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07006934L: linux-mm@kvack.org
6935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006936F: include/linux/sl?b*.h
6937F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07006938
Paul E. McKenney9fab9782012-05-07 09:36:34 -07006939SLEEPABLE READ-COPY UPDATE (SRCU)
6940M: Lai Jiangshan <laijs@cn.fujitsu.com>
6941M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6942W: http://www.rdrop.com/users/paulmck/RCU/
6943S: Supported
6944T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6945F: include/linux/srcu*
6946F: kernel/srcu*
6947
Casey Schaufler66372842012-05-23 18:34:52 -07006948SMACK SECURITY MODULE
6949M: Casey Schaufler <casey@schaufler-ca.com>
6950L: linux-security-module@vger.kernel.org
6951W: http://schaufler-ca.com
6952T: git git://git.gitorious.org/smack-next/kernel.git
6953S: Maintained
6954F: Documentation/security/Smack.txt
6955F: security/smack/
6956
Linus Torvalds1da177e2005-04-16 15:20:36 -07006957SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006958M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006959S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006960F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006961
Sakari Ailuse8e31622012-11-12 18:14:39 -03006962SMIA AND SMIA++ IMAGE SENSOR DRIVER
6963M: Sakari Ailus <sakari.ailus@iki.fi>
6964L: linux-media@vger.kernel.org
6965S: Maintained
6966F: drivers/media/i2c/smiapp
6967F: include/media/smiapp.h
6968F: drivers/media/i2c/smiapp-pll.c
6969F: drivers/media/i2c/smiapp-pll.h
6970
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006971SMM665 HARDWARE MONITOR DRIVER
6972M: Guenter Roeck <linux@roeck-us.net>
6973L: lm-sensors@lm-sensors.org
6974S: Maintained
6975F: Documentation/hwmon/smm665
6976F: drivers/hwmon/smm665.c
6977
Steve Glendinning9df73052010-08-14 21:08:54 +02006978SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006979M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006980L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006981S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006982F: Documentation/hwmon/emc2103
6983F: drivers/hwmon/emc2103.c
6984
Hans de Goedea98d5062011-03-21 17:59:36 +01006985SMSC SCH5627 HARDWARE MONITOR DRIVER
6986M: Hans de Goede <hdegoede@redhat.com>
6987L: lm-sensors@lm-sensors.org
6988S: Supported
6989F: Documentation/hwmon/sch5627
6990F: drivers/hwmon/sch5627.c
6991
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006992SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006993M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006994L: lm-sensors@lm-sensors.org
6995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006996F: Documentation/hwmon/smsc47b397
6997F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006998
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006999SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007000M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007001L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007003F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007004F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007005
Steve Glendinning2cb37722008-12-11 20:54:30 -08007006SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007007M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007008L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007009S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007010F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007011
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007012SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007013M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007014L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007015S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007016F: drivers/video/smscufx.c
7017
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007018SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07007019M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007020L: linux-altix@sgi.com
7021L: linux-ia64@vger.kernel.org
7022W: http://www.sgi.com/altix
7023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007024F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007025
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007026SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007027M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007028L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007029T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007030S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007031F: include/media/soc*
7032F: drivers/media/i2c/soc_camera/
7033F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007034
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007035SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007036M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007038F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007039
Linus Torvalds1da177e2005-04-16 15:20:36 -07007040SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007041M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007042L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007043S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007044F: drivers/md/
7045F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007046F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007049M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007050L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007051S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007052F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007053
Michael Buesch61e115a2007-09-18 15:12:50 -04007054SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007055M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007056L: netdev@vger.kernel.org
7057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007058F: drivers/ssb/
7059F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007060
Linus Torvalds1da177e2005-04-16 15:20:36 -07007061SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007062M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007063L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007064W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007066F: Documentation/laptops/sony-laptop.txt
7067F: drivers/char/sonypi.c
7068F: drivers/platform/x86/sony-laptop.c
7069F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070
Alex Dubovbaf85322008-02-09 10:20:54 -08007071SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007072M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007073W: http://tifmxx.berlios.de/
7074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007075F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007076
Linus Torvalds1da177e2005-04-16 15:20:36 -07007077SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007078M: Jaroslav Kysela <perex@perex.cz>
7079M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007080L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007081W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007082T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007083T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007084S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007085F: Documentation/sound/
7086F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007087F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007088F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007089
Mark Brownbd903bd2008-11-19 19:16:05 +00007090SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007091M: Liam Girdwood <lgirdwood@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007092M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007093T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007094L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007095W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007096S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007097F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007098F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007099
Sam Ravnborg473321f2009-01-04 15:47:49 -08007100SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007101M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007102L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007103Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007104T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7105T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007107F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007108F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007109
David S. Miller6404fcc2010-03-16 01:00:17 -07007110SPARC SERIAL DRIVERS
7111M: "David S. Miller" <davem@davemloft.net>
7112L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007113T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7114T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007115S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007116F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007117F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007118F: drivers/tty/serial/sunhv.c
7119F: drivers/tty/serial/sunsab.c
7120F: drivers/tty/serial/sunsab.h
7121F: drivers/tty/serial/sunsu.c
7122F: drivers/tty/serial/sunzilog.c
7123F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007124
Christopher Li389325b2012-04-05 14:25:14 -07007125SPARSE CHECKER
7126M: "Christopher Li" <sparse@chrisli.org>
7127L: linux-sparse@vger.kernel.org
7128W: https://sparse.wiki.kernel.org/
7129T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7130T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7131S: Maintained
7132F: include/linux/compiler.h
7133
viresh kumarfc0c1952010-04-01 12:31:21 +01007134SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007135M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307136M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007137L: spear-devel@list.st.com
7138L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007139W: http://www.st.com/spear
7140S: Maintained
7141F: arch/arm/plat-spear/
7142
Viresh Kumar71e09a92012-04-20 22:39:48 +05307143SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007144M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307145M: Shiraz Hashim <shiraz.hashim@st.com>
7146L: spear-devel@list.st.com
7147L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7148W: http://www.st.com/spear
7149S: Maintained
7150F: arch/arm/mach-spear13xx/
7151
viresh kumarfc0c1952010-04-01 12:31:21 +01007152SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007153M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307154M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007155L: spear-devel@list.st.com
7156L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007157W: http://www.st.com/spear
7158S: Maintained
7159F: arch/arm/mach-spear3xx/
7160
7161SPEAR6XX MACHINE SUPPORT
7162M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307163M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007164M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007165L: spear-devel@list.st.com
7166L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007167W: http://www.st.com/spear
7168S: Maintained
7169F: arch/arm/mach-spear6xx/
7170
7171SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007172M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007173L: spear-devel@list.st.com
7174L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007175W: http://www.st.com/spear
7176S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307177F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007178
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007179SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007180M: Grant Likely <grant.likely@secretlab.ca>
Mark Brownf28037d2013-01-14 11:17:19 +09007181M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007182L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007183Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007184T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007186F: Documentation/spi/
7187F: drivers/spi/
7188F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007189F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007190
Jim Lewis2752e402006-09-29 02:01:19 -07007191SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007192M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7193M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007194L: netdev@vger.kernel.org
7195S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007196F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007197F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007198
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007199SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007200M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007201L: linuxppc-dev@lists.ozlabs.org
7202L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007203W: http://www.ibm.com/developerworks/power/cell/
7204S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007205F: Documentation/filesystems/spufs.txt
7206F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007207
Phillip Lougherfc555842009-01-05 08:46:29 +00007208SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007209M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007210L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7211W: http://squashfs.org.uk
7212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007213F: Documentation/filesystems/squashfs.txt
7214F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007215
Linus Torvalds1da177e2005-04-16 15:20:36 -07007216SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007217M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007219F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007220
Linus Torvalds26e9a392008-10-17 09:50:12 -07007221STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007222M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007223L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007224S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007225
Linus Torvalds26e9a392008-10-17 09:50:12 -07007226STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007227M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007228T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007229L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007230S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007231F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007232
Joe Perchesc8c8b102011-07-05 09:42:12 -07007233STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7234M: Henk de Groot <pe1dnn@amsat.org>
7235S: Odd Fixes
7236F: drivers/staging/wlags49_h2/
7237F: drivers/staging/wlags49_h25/
7238
Joe Perchesc9555152011-07-05 09:42:01 -07007239STAGING - ASUS OLED
7240M: Jakub Schmidtke <sjakub@gmail.com>
7241S: Odd Fixes
7242F: drivers/staging/asus_oled/
7243
Joe Perchesebd3d012011-07-05 09:42:02 -07007244STAGING - COMEDI
7245M: Ian Abbott <abbotti@mev.co.uk>
7246M: Mori Hess <fmhess@users.sourceforge.net>
7247S: Odd Fixes
7248F: drivers/staging/comedi/
7249
Joe Perches8ca572c2011-07-05 09:42:03 -07007250STAGING - CRYSTAL HD VIDEO DECODER
7251M: Naren Sankar <nsankar@broadcom.com>
7252M: Jarod Wilson <jarod@wilsonet.com>
7253M: Scott Davilla <davilla@4pi.com>
7254M: Manu Abraham <abraham.manu@gmail.com>
7255S: Odd Fixes
7256F: drivers/staging/crystalhd/
7257
Joe Perches0f16ffc2011-07-05 09:42:04 -07007258STAGING - ECHO CANCELLER
7259M: Steve Underwood <steveu@coppice.org>
7260M: David Rowe <david@rowetel.com>
7261S: Odd Fixes
7262F: drivers/staging/echo/
7263
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007264STAGING - ET131X NETWORK DRIVER
7265M: Mark Einon <mark.einon@gmail.com>
7266S: Odd Fixes
7267F: drivers/staging/et131x/
7268
Joe Perchesa0138162011-07-05 15:21:34 -07007269STAGING - FLARION FT1000 DRIVERS
7270M: Marek Belisko <marek.belisko@gmail.com>
7271S: Odd Fixes
7272F: drivers/staging/ft1000/
7273
Joe Perchesec3fab92011-07-05 09:42:05 -07007274STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7275M: David Täht <d@teklibre.com>
7276S: Odd Fixes
7277F: drivers/staging/frontier/
7278
Joe Perches6c1bb422011-07-05 09:42:07 -07007279STAGING - INDUSTRIAL IO
7280M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007281L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007282S: Odd Fixes
7283F: drivers/staging/iio/
7284
Joe Perchesa0138162011-07-05 15:21:34 -07007285STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7286M: Jarod Wilson <jarod@wilsonet.com>
7287W: http://www.lirc.org/
7288S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007289F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007290
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007291STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007292M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007293M: Marc Dietrich <marvin24@gmx.de>
7294L: ac100@lists.launchpad.net (moderated for non-subscribers)
7295S: Maintained
7296F: drivers/staging/nvec/
7297
Joe Perchesa0138162011-07-05 15:21:34 -07007298STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7299M: Andres Salomon <dilinger@queued.net>
7300M: Chris Ball <cjb@laptop.org>
7301M: Jon Nettleton <jon.nettleton@gmail.com>
7302W: http://wiki.laptop.org/go/DCON
7303S: Odd Fixes
7304F: drivers/staging/olpc_dcon/
7305
Chris Kelly94cfdd12012-03-14 10:55:42 +00007306STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007307M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007308M: Chris Kelly <ckelly@ozmodevices.com>
7309S: Maintained
7310F: drivers/staging/ozwpan/
7311
Joe Perchesa0138162011-07-05 15:21:34 -07007312STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007313M: Willy Tarreau <willy@meta-x.org>
7314S: Odd Fixes
7315F: drivers/staging/panel/
7316
Joe Perchesa0138162011-07-05 15:21:34 -07007317STAGING - REALTEK RTL8712U DRIVERS
7318M: Larry Finger <Larry.Finger@lwfinger.net>
7319M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7320S: Odd Fixes
7321F: drivers/staging/rtl8712/
7322
Joe Perches9629fa82011-07-05 09:42:09 -07007323STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7324M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7325S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007326F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007327
Joe Perchesa0138162011-07-05 15:21:34 -07007328STAGING - SOFTLOGIC 6x10 MPEG CODEC
7329M: Ben Collins <bcollins@bluecherry.net>
7330S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007331F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007332
7333STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7334M: William Hubbs <w.d.hubbs@gmail.com>
7335M: Chris Brannon <chris@the-brannons.com>
7336M: Kirk Reiser <kirk@braille.uwo.ca>
7337M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7338L: speakup@braille.uwo.ca
7339W: http://www.linux-speakup.org/
7340S: Odd Fixes
7341F: drivers/staging/speakup/
7342
7343STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007344M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007345S: Odd Fixes
7346F: drivers/staging/tidspbridge/
7347
Joe Perchesa0138162011-07-05 15:21:34 -07007348STAGING - USB ENE SM/MS CARD READER DRIVER
7349M: Al Cho <acho@novell.com>
7350S: Odd Fixes
7351F: drivers/staging/keucr/
7352
Joe Perchesb3e871c2011-07-05 09:42:10 -07007353STAGING - VIA VT665X DRIVERS
7354M: Forest Bond <forest@alittletooquiet.net>
7355S: Odd Fixes
7356F: drivers/staging/vt665?/
7357
Joe Perches81a9a522011-07-05 09:42:11 -07007358STAGING - WINBOND IS89C35 WLAN USB DRIVER
7359M: Pavel Machek <pavel@ucw.cz>
7360S: Odd Fixes
7361F: drivers/staging/winbond/
7362
Joe Perches709bcb02011-07-05 09:42:13 -07007363STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007364M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007365S: Odd Fixes
7366F: drivers/staging/xgifb/
7367
Linus Torvalds1da177e2005-04-16 15:20:36 -07007368STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007369M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007370S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007371F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007372
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007373SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007374M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007375W: http://sammy.net/sun3/
7376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007377F: arch/m68k/kernel/*sun3*
7378F: arch/m68k/sun3*/
7379F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007380F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007381
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007382SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007383M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007384L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007386Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007387T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007388S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007389F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007390F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007391F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007392
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007393SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007394M: Len Brown <len.brown@intel.com>
7395M: Pavel Machek <pavel@ucw.cz>
7396M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007397L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007398S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007399F: Documentation/power/
7400F: arch/x86/kernel/acpi/
7401F: drivers/base/power/
7402F: kernel/power/
7403F: include/linux/suspend.h
7404F: include/linux/freezer.h
7405F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007406
7407SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007408M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007409L: linux-video@atrey.karlin.mff.cuni.cz
7410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007411F: Documentation/svga.txt
7412F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007413
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007414SWIOTLB SUBSYSTEM
7415M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7416L: linux-kernel@vger.kernel.org
7417S: Supported
7418F: lib/swiotlb.c
7419F: arch/*/kernel/pci-swiotlb.c
7420F: include/linux/swiotlb.h
7421
Linus Torvalds1da177e2005-04-16 15:20:36 -07007422SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007423M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007425F: Documentation/filesystems/sysv-fs.txt
7426F: fs/sysv/
7427F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007428
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007429TARGET SUBSYSTEM
7430M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7431L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007432L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007433L: http://groups.google.com/group/linux-iscsi-target-dev
7434W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007435T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007436S: Supported
7437F: drivers/target/
7438F: include/target/
7439F: Documentation/target/
7440
Alan Cox4e688522008-04-30 00:52:11 -07007441TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007442M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007444F: Documentation/accounting/taskstats*
7445F: include/linux/taskstats*
7446F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007447
Stephen Hemminger781b4562006-07-10 20:25:29 -07007448TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007449M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b4562006-07-10 20:25:29 -07007450L: netdev@vger.kernel.org
7451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007452F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007453F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007454F: net/sched/
Stephen Hemminger781b4562006-07-10 20:25:29 -07007455
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007456TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007457M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7458M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007459W: http://tcp-lp-mod.sourceforge.net/
7460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007461F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007462
Antti Palosaari91952bc2012-10-01 12:28:46 -03007463TDA10071 MEDIA DRIVER
7464M: Antti Palosaari <crope@iki.fi>
7465L: linux-media@vger.kernel.org
7466W: http://linuxtv.org/
7467W: http://palosaari.fi/linux/
7468Q: http://patchwork.linuxtv.org/project/linux-media/list/
7469T: git git://linuxtv.org/anttip/media_tree.git
7470S: Maintained
7471F: drivers/media/dvb-frontends/tda10071*
7472
7473TDA18212 MEDIA DRIVER
7474M: Antti Palosaari <crope@iki.fi>
7475L: linux-media@vger.kernel.org
7476W: http://linuxtv.org/
7477W: http://palosaari.fi/linux/
7478Q: http://patchwork.linuxtv.org/project/linux-media/list/
7479T: git git://linuxtv.org/anttip/media_tree.git
7480S: Maintained
7481F: drivers/media/tuners/tda18212*
7482
7483TDA18218 MEDIA DRIVER
7484M: Antti Palosaari <crope@iki.fi>
7485L: linux-media@vger.kernel.org
7486W: http://linuxtv.org/
7487W: http://palosaari.fi/linux/
7488Q: http://patchwork.linuxtv.org/project/linux-media/list/
7489T: git git://linuxtv.org/anttip/media_tree.git
7490S: Maintained
7491F: drivers/media/tuners/tda18218*
7492
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007493TDA18271 MEDIA DRIVER
7494M: Michael Krufky <mkrufky@linuxtv.org>
7495L: linux-media@vger.kernel.org
7496W: http://linuxtv.org/
7497W: http://github.com/mkrufky
7498Q: http://patchwork.linuxtv.org/project/linux-media/list/
7499T: git git://linuxtv.org/mkrufky/tuners.git
7500S: Maintained
7501F: drivers/media/tuners/tda18271*
7502
Michael Krufkye48307a2012-10-02 00:56:33 -03007503TDA827x MEDIA DRIVER
7504M: Michael Krufky <mkrufky@linuxtv.org>
7505L: linux-media@vger.kernel.org
7506W: http://linuxtv.org/
7507W: http://github.com/mkrufky
7508Q: http://patchwork.linuxtv.org/project/linux-media/list/
7509T: git git://linuxtv.org/mkrufky/tuners.git
7510S: Maintained
7511F: drivers/media/tuners/tda8290.*
7512
Michael Krufky66cf9212012-10-02 00:56:28 -03007513TDA8290 MEDIA DRIVER
7514M: Michael Krufky <mkrufky@linuxtv.org>
7515L: linux-media@vger.kernel.org
7516W: http://linuxtv.org/
7517W: http://github.com/mkrufky
7518Q: http://patchwork.linuxtv.org/project/linux-media/list/
7519T: git git://linuxtv.org/mkrufky/tuners.git
7520S: Maintained
7521F: drivers/media/tuners/tda8290.*
7522
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007523TEA5761 TUNER DRIVER
7524M: Mauro Carvalho Chehab <mchehab@redhat.com>
7525L: linux-media@vger.kernel.org
7526W: http://linuxtv.org
7527T: git git://linuxtv.org/media_tree.git
7528S: Odd fixes
7529F: drivers/media/tuners/tea5761.*
7530
7531TEA5767 TUNER DRIVER
7532M: Mauro Carvalho Chehab <mchehab@redhat.com>
7533L: linux-media@vger.kernel.org
7534W: http://linuxtv.org
7535T: git git://linuxtv.org/media_tree.git
7536S: Maintained
7537F: drivers/media/tuners/tea5767.*
7538
Jiri Pirko3d249d42011-11-11 22:16:48 +00007539TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007540M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007541L: netdev@vger.kernel.org
7542S: Supported
7543F: drivers/net/team/
7544F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007545F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007546
Vivien Didelot7d029122013-01-04 16:18:14 -05007547TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
7548M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
7549S: Maintained
7550F: arch/x86/platform/ts5500/
7551
Sean Young40ad4a32012-11-19 10:32:53 -03007552TECHNOTREND USB IR RECEIVER
7553M: Sean Young <sean@mess.org>
7554L: linux-media@vger.kernel.org
7555S: Maintained
7556F: drivers/media/rc/ttusbir.c
7557
Erik Gilling84b94142010-06-09 15:35:53 -07007558TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007559M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007560L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007561Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7562T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007563S: Supported
7564F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007565F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007566F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007567
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007568TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007569M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007570L: netdev@vger.kernel.org
7571S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007572F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007573
Alan Cox4e688522008-04-30 00:52:11 -07007574Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007575M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007576S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007577F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007578
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007579TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007580M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007581M: Max Filippov <jcmvbkbc@gmail.com>
7582L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007584F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007585
Zhang Ruid3fb6952012-11-15 08:58:27 +08007586THERMAL
7587M: Zhang Rui <rui.zhang@intel.com>
7588L: linux-pm@vger.kernel.org
7589T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7590S: Supported
7591F: drivers/thermal/
7592F: include/linux/thermal.h
7593
Alan Cox4e688522008-04-30 00:52:11 -07007594THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007595M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007596L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007597L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007598W: http://ibm-acpi.sourceforge.net
7599W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007600T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007602F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007603
Alex Dubov4020f2d2006-10-04 02:15:37 -07007604TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007605M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007607F: drivers/misc/tifm*
7608F: drivers/mmc/host/tifm_sd.c
7609F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007610
M R Swami Reddy152ad442012-04-02 20:02:31 +05307611TI LM49xxx FAMILY ASoC CODEC DRIVERS
7612M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307613M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307614L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7615S: Maintained
7616F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307617F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307618
Kim, Milo0edd8072012-12-17 16:01:17 -08007619TI LP855x BACKLIGHT DRIVER
7620M: Milo Kim <milo.kim@ti.com>
7621S: Maintained
7622F: Documentation/backlight/lp855x-driver.txt
7623F: drivers/video/backlight/lp855x_bl.c
7624F: include/linux/platform_data/lp855x.h
7625
Kim, Milofaf13f62012-12-10 05:27:03 +00007626TI LP8727 CHARGER DRIVER
7627M: Milo Kim <milo.kim@ti.com>
7628S: Maintained
7629F: drivers/power/lp8727_charger.c
7630F: include/linux/platform_data/lp8727.h
7631
Kim, Milo22f12292012-12-10 05:27:55 +00007632TI LP8788 MFD DRIVER
7633M: Milo Kim <milo.kim@ti.com>
7634S: Maintained
7635F: drivers/iio/adc/lp8788_adc.c
7636F: drivers/leds/leds-lp8788.c
7637F: drivers/mfd/lp8788*.c
7638F: drivers/power/lp8788-charger.c
7639F: drivers/regulator/lp8788-*.c
7640F: include/linux/mfd/lp8788*.h
7641
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007642TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007643M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007644L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7645S: Maintained
7646F: sound/soc/codecs/twl4030*
7647
Luciano Coelho90921012011-11-20 21:40:41 +02007648TI WILINK WIRELESS DRIVERS
7649M: Luciano Coelho <coelho@ti.com>
7650L: linux-wireless@vger.kernel.org
7651W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7652W: http://wireless.kernel.org/en/users/Drivers/wl1251
7653T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7654S: Maintained
7655F: drivers/net/wireless/ti/
7656F: include/linux/wl12xx.h
7657
Per Lidene86eaa32006-01-12 16:45:18 +01007658TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007659M: Jon Maloy <jon.maloy@ericsson.com>
7660M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007661L: netdev@vger.kernel.org (core kernel code)
7662L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007663W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007664S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007665F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007666F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007667
Chris Metcalf867e3592010-05-28 23:09:12 -04007668TILE ARCHITECTURE
7669M: Chris Metcalf <cmetcalf@tilera.com>
7670W: http://www.tilera.com/scm/
7671S: Supported
7672F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007673F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007674F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007675F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007676
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007678M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007679L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680W: http://sourceforge.net/projects/tlan/
7681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007682F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007683F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007684
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007685TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007686M: Kentaro Takeda <takedakn@nttdata.co.jp>
7687M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007688L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7689L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007690L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7691L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7692W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007693T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007695F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007696
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007697TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007698M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007699L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007700S: Maintained
7701F: drivers/platform/x86/topstar-laptop.c
7702
Linus Torvalds1da177e2005-04-16 15:20:36 -07007703TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007704L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007705S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007706F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007707
7708TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007709M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007710L: tlinux-users@tce.toshiba-dme.co.jp
7711W: http://www.buzzard.org.uk/toshiba/
7712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007713F: drivers/char/toshiba.c
7714F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007715F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007716
Pierre Ossmand719f902009-03-24 21:06:09 +01007717TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007718M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007719M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007720L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007721S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007722F: drivers/mmc/host/tmio_mmc*
7723F: drivers/mmc/host/sh_mobile_sdhi.c
7724F: include/linux/mmc/tmio.h
7725F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007726
Hugh Dickins98f32602009-05-21 20:33:58 +01007727TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007728M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007729L: linux-mm@kvack.org
7730S: Maintained
7731F: include/linux/shmem_fs.h
7732F: mm/shmem.c
7733
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02007734TM6000 VIDEO4LINUX DRIVER
7735M: Mauro Carvalho Chehab <mchehab@redhat.com>
7736L: linux-media@vger.kernel.org
7737W: http://linuxtv.org
7738T: git git://linuxtv.org/media_tree.git
7739S: Odd fixes
7740F: drivers/media/usb/tm6000/
7741
Alan Cox4e688522008-04-30 00:52:11 -07007742TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007743M: Kent Yoder <key@linux.vnet.ibm.com>
7744M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007745W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007746M: Marcel Selhorst <tpmdd@selhorst.net>
7747M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007748W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007749L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007751F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007752
Joe Perchesd6f005a2009-10-26 16:49:40 -07007753TRACING
7754M: Steven Rostedt <rostedt@goodmis.org>
7755M: Frederic Weisbecker <fweisbec@gmail.com>
7756M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007757T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007758S: Maintained
7759F: Documentation/trace/ftrace.txt
7760F: arch/*/*/*/ftrace.h
7761F: arch/*/kernel/ftrace.c
7762F: include/*/ftrace.h
7763F: include/linux/trace*.h
7764F: include/trace/
7765F: kernel/trace/
7766
Linus Torvalds1da177e2005-04-16 15:20:36 -07007767TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007768M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007769T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007770S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007771K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007772
Alan Cox4e688522008-04-30 00:52:11 -07007773TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007774M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01007775M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08007776S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007777T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007778F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007779F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007780F: include/linux/serial_core.h
7781F: include/linux/serial.h
7782F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007783F: include/uapi/linux/serial_core.h
7784F: include/uapi/linux/serial.h
7785F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007786
Antti Palosaari91952bc2012-10-01 12:28:46 -03007787TUA9001 MEDIA DRIVER
7788M: Antti Palosaari <crope@iki.fi>
7789L: linux-media@vger.kernel.org
7790W: http://linuxtv.org/
7791W: http://palosaari.fi/linux/
7792Q: http://patchwork.linuxtv.org/project/linux-media/list/
7793T: git git://linuxtv.org/anttip/media_tree.git
7794S: Maintained
7795F: drivers/media/tuners/tua9001*
7796
Grant Grundler740db6d2008-02-17 11:53:49 -07007797TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007798M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007799L: netdev@vger.kernel.org
7800S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007801F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007802
7803TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00007804M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805W: http://vtun.sourceforge.net/tun
7806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007807F: Documentation/networking/tuntap.txt
7808F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007809
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007810TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007811M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007813F: drivers/tc/
7814F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007815
Linus Torvalds1da177e2005-04-16 15:20:36 -07007816U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007817M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007818L: linux-scsi@vger.kernel.org
7819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007820F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007821
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007822UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007823M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007824M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007825L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007826T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007827W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007829F: Documentation/filesystems/ubifs.txt
7830F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007831
Alan Coxcc2020e2008-05-19 14:21:51 +01007832UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007833M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007834W: http://www.uclinux.org/
7835L: uclinux-dev@uclinux.org (subscribers-only)
7836S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007837F: arch/m68k/*/*_no.*
7838F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007839
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007840UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007841M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007842W: http://uclinux-h8.sourceforge.jp/
7843S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007844F: arch/h8300/
7845F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007846F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007847
Linus Torvalds1da177e2005-04-16 15:20:36 -07007848UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007849M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007851F: Documentation/filesystems/udf.txt
7852F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853
Alan Coxcc2020e2008-05-19 14:21:51 +01007854UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007855M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007857F: Documentation/filesystems/ufs.txt
7858F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007859
David Herrmann0a09d3a2012-06-10 15:16:28 +02007860UHID USERSPACE HID IO DRIVER:
7861M: David Herrmann <dh.herrmann@googlemail.com>
7862L: linux-input@vger.kernel.org
7863S: Maintained
7864F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007865F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02007866
David Vrabel18332a82008-09-17 16:34:44 +01007867ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007868L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007869S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007870F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007871F: include/linux/uwb.h
7872F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007873
GuanXuetaob31d8272011-01-16 00:35:49 +08007874UNICORE32 ARCHITECTURE:
7875M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7876W: http://mprc.pku.edu.cn/~guanxuetao/linux
7877S: Maintained
7878T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7879F: arch/unicore32/
7880
Tony Finchd8379ab2009-11-27 15:50:30 +00007881UNIFDEF
7882M: Tony Finch <dot@dotat.at>
7883W: http://dotat.at/prog/unifdef
7884S: Maintained
7885F: scripts/unifdef.c
7886
Linus Torvalds1da177e2005-04-16 15:20:36 -07007887UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007888M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007889W: http://www.kernel.dk
7890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007891F: Documentation/cdrom/
7892F: drivers/cdrom/cdrom.c
7893F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007894F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007895
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307896UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7897M: Vinayak Holikatti <vinholikatti@gmail.com>
7898M: Santosh Y <santoshsy@gmail.com>
7899L: linux-scsi@vger.kernel.org
7900S: Supported
7901F: Documentation/scsi/ufs.txt
7902F: drivers/scsi/ufs/
7903
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007904UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007905M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007906W: http://www.linux-mtd.infradead.org/
7907L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007908T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007909S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007910F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007911F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007912F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007913
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007914UNSORTED BLOCK IMAGES (UBI) Fastmap
7915M: Richard Weinberger <richard@nod.at>
7916L: linux-mtd@lists.infradead.org
7917S: Maintained
7918F: drivers/mtd/ubi/fastmap.c
7919
Linus Torvalds1da177e2005-04-16 15:20:36 -07007920USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007921M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007922L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007924F: Documentation/usb/acm.txt
7925F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007926
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02007927USB AR5523 WIRELESS DRIVER
7928M: Pontus Fuchs <pontus.fuchs@gmail.com>
7929L: linux-wireless@vger.kernel.org
7930S: Maintained
7931F: drivers/net/wireless/ath/ar5523/
7932
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007933USB ATTACHED SCSI
7934M: Matthew Wilcox <willy@linux.intel.com>
7935M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7936L: linux-usb@vger.kernel.org
7937L: linux-scsi@vger.kernel.org
7938S: Supported
7939F: drivers/usb/storage/uas.c
7940
Linus Torvalds1da177e2005-04-16 15:20:36 -07007941USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007942M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007943L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007945F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007946F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007947
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007948USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007949M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007950L: linux-usb@vger.kernel.org
7951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007952F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007953
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007954USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007955M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007956L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007957W: http://www.linux-usb.org/usbnet
7958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007959F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007960
Alan Coxcc2020e2008-05-19 14:21:51 +01007961USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007962M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007963L: rio500-users@lists.sourceforge.net
7964W: http://rio500.sourceforge.net
7965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007966F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007967
Linus Torvalds1da177e2005-04-16 15:20:36 -07007968USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007969M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007970L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007971S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007972F: Documentation/usb/ehci.txt
7973F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007974
David Brownell69ae9e32006-11-14 02:03:31 -08007975USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007976M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007977L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007978W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007979T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007981F: drivers/usb/gadget/
7982F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007983
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007984USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007985M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007986L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007987T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007988S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007989F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007990F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007991
matt mooney857aab32011-06-17 15:50:46 -07007992USB/IP DRIVERS
7993M: Matt Mooney <mfm@muteddisk.com>
7994L: linux-usb@vger.kernel.org
7995S: Maintained
7996F: drivers/staging/usbip/
7997
Olav Kongas959eea22005-11-03 17:38:14 +02007998USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007999M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008000L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008002F: drivers/usb/host/isp116x*
8003F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008004
Linus Torvalds1da177e2005-04-16 15:20:36 -07008005USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008006M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008007L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008009F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008010
8011USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008012M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008013L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008014L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008015S: Maintained
8016W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008017F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008018
Clemens Ladischaf399172011-01-10 16:32:54 +01008019USB MIDI DRIVER
8020M: Clemens Ladisch <clemens@ladisch.de>
8021L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8022T: git git://git.alsa-project.org/alsa-kernel.git
8023S: Maintained
8024F: sound/usb/midi.*
8025
Linus Torvalds1da177e2005-04-16 15:20:36 -07008026USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008027M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008028L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008030F: Documentation/usb/ohci.txt
8031F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008032
Matthias Urlichsba460e42005-07-14 00:33:47 -07008033USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008034M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008035L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008037F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008038
Linus Torvalds1da177e2005-04-16 15:20:36 -07008039USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008040M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008041L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008042L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008043W: http://pegasus2.sourceforge.net/
8044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008045F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008046
Felipe Balbid3ad5582012-05-21 16:24:49 +03008047USB PHY LAYER
8048M: Felipe Balbi <balbi@ti.com>
8049L: linux-usb@vger.kernel.org
8050T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8051S: Maintained
8052F: drivers/usb/phy/
8053F: drivers/usb/otg/
8054
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008055USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008056M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008057L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008058S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008059F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008060
8061USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008062M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008063L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008064L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008065W: http://pegasus2.sourceforge.net/
8066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008067F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008068
Alan Cox4e688522008-04-30 00:52:11 -07008069USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008070M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008071L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008073F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008074
8075USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008076M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008077L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008078S: Maintained
8079W: http://geocities.com/i0xox0i
8080W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008081F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008082
Linus Torvalds1da177e2005-04-16 15:20:36 -07008083USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008084M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008085W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008087F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008088
8089USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008090M: Peter Berger <pberger@brimson.com>
8091M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008092L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008094F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008095
8096USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008097M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008098L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008099S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008100F: Documentation/usb/usb-serial.txt
8101F: drivers/usb/serial/generic.c
8102F: drivers/usb/serial/usb-serial.c
8103F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008104
Linus Torvalds1da177e2005-04-16 15:20:36 -07008105USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008106M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008107L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008109F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008110
8111USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008112M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008113L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008115F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008116
8117USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008118M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008119L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008120W: http://www.connecttech.com
8121S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008122F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008123
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008124USB SMSC75XX ETHERNET DRIVER
8125M: Steve Glendinning <steve.glendinning@shawell.net>
8126L: netdev@vger.kernel.org
8127S: Maintained
8128F: drivers/net/usb/smsc75xx.*
8129
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008130USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008131M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008132L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008134F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008135
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008136USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008137M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008138L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008139L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008140T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008141W: http://www.linux-projects.org
8142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008143F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008144F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008145
8146USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008147M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008148L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008149W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008150T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008151S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008152F: Documentation/usb/
8153F: drivers/net/usb/
8154F: drivers/usb/
8155F: include/linux/usb.h
8156F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008157
8158USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008159M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008160L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008162F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008163
David Brownell69ae9e32006-11-14 02:03:31 -08008164USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008165M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008166L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008167W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008169F: drivers/net/usb/usbnet.c
8170F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008171
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008172USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008173M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008174L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008175L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008176T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008177W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008178S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008179F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008180F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008181
Laurent Pinchart8282da42012-10-04 02:32:42 +02008182USB WEBCAM GADGET
8183M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8184L: linux-usb@vger.kernel.org
8185S: Maintained
8186F: drivers/usb/gadget/*uvc*.c
8187F: drivers/usb/gadget/webcam.c
8188
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008189USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008190M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008191L: linux-wireless@vger.kernel.org
8192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008193F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008194
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008195USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008196M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008197L: linux-usb@vger.kernel.org
8198S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008199F: drivers/usb/host/xhci*
8200F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008201
Linus Torvalds1da177e2005-04-16 15:20:36 -07008202USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008203L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008204W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008205S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008206F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008207
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008208USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008209M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008210L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008211L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008212T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008213W: http://royale.zerezo.com/zr364xx/
8214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008215F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008216F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008217
Randy Dunlape7839f22008-10-12 16:11:45 -07008218USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008219M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008220M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008221L: user-mode-linux-devel@lists.sourceforge.net
8222L: user-mode-linux-user@lists.sourceforge.net
8223W: http://user-mode-linux.sourceforge.net
8224S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008225F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008226F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008227F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008228F: fs/hostfs/
8229F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008230
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008231USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008232M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008233M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008235F: Documentation/DocBook/uio-howto.tmpl
8236F: drivers/uio/
8237F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008238
Karel Zak256cccb2012-06-01 10:13:09 +02008239UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008240M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008241L: util-linux@vger.kernel.org
8242W: http://en.wikipedia.org/wiki/Util-linux
8243T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008244S: Maintained
8245
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008246UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008247M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008248L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008249W: http://dev.gentoo.org/~spock/projects/uvesafb/
8250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008251F: Documentation/fb/uvesafb.txt
8252F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008253
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008254VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008255M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008256S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008257F: Documentation/filesystems/vfat.txt
8258F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008259
Alex Williamsoncba33452012-07-31 08:16:22 -06008260VFIO DRIVER
8261M: Alex Williamson <alex.williamson@redhat.com>
8262L: kvm@vger.kernel.org
8263S: Maintained
8264F: Documentation/vfio.txt
8265F: drivers/vfio/
8266F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008267F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008268
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008269VIDEOBUF2 FRAMEWORK
8270M: Pawel Osciak <pawel@osciak.com>
8271M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008272M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008273L: linux-media@vger.kernel.org
8274S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008275F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008276F: include/media/videobuf2-*
8277
Amit Shah9a824462010-03-23 18:23:09 +05308278VIRTIO CONSOLE DRIVER
8279M: Amit Shah <amit.shah@redhat.com>
8280L: virtualization@lists.linux-foundation.org
8281S: Maintained
8282F: drivers/char/virtio_console.c
8283F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008284F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308285
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308286VIRTIO CORE, NET AND BLOCK DRIVERS
8287M: Rusty Russell <rusty@rustcorp.com.au>
8288M: "Michael S. Tsirkin" <mst@redhat.com>
8289L: virtualization@lists.linux-foundation.org
8290S: Maintained
8291F: drivers/virtio/
8292F: drivers/net/virtio_net.c
8293F: drivers/block/virtio_blk.c
8294F: include/linux/virtio_*.h
8295
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008296VIRTIO HOST (VHOST)
8297M: "Michael S. Tsirkin" <mst@redhat.com>
8298L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008299L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008300L: netdev@vger.kernel.org
8301S: Maintained
8302F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008303F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008304
Linus Torvalds1da177e2005-04-16 15:20:36 -07008305VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008306M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008307S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008308F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008309
Harald Weltef0bf7f62009-06-17 20:22:39 +02008310VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008311M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008312M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008313S: Maintained
8314F: drivers/mmc/host/via-sdmmc.c
8315
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008316VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008317M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008318L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008319S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008320F: include/linux/via-core.h
8321F: include/linux/via-gpio.h
8322F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008323F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008324
Francois Romieu01f20732007-01-26 00:57:17 -08008325VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008326M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008327L: netdev@vger.kernel.org
8328S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008329F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008330
Patrick McHardybe7f8272007-10-23 20:26:36 -07008331VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008332M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008333L: netdev@vger.kernel.org
8334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008335F: drivers/net/macvlan.c
8336F: include/linux/if_*vlan.h
8337F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008338
Florian Fainelli55e331c2009-06-16 15:33:53 -07008339VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008340M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008341L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008342S: Maintained
8343F: drivers/vlynq/vlynq.c
8344F: include/linux/vlynq.h
8345
Martyn Welch390beae2012-05-03 17:52:36 +01008346VME SUBSYSTEM
8347M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008348M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008349M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8350L: devel@driverdev.osuosl.org
8351S: Maintained
8352T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8353F: Documentation/vme_api.txt
8354F: drivers/staging/vme/
8355F: drivers/vme/
8356F: include/linux/vme*
8357
Shreyas Bhatewarad1a890f2009-10-13 00:15:51 -07008358VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008359M: Shreyas Bhatewara <sbhatewara@vmware.com>
8360M: "VMware, Inc." <pv-drivers@vmware.com>
8361L: netdev@vger.kernel.org
8362S: Maintained
8363F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890f2009-10-13 00:15:51 -07008364
Alok Kataria851b1642009-10-13 14:51:05 -07008365VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008366M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008367M: VMware PV-Drivers <pv-drivers@vmware.com>
8368L: linux-scsi@vger.kernel.org
8369S: Maintained
8370F: drivers/scsi/vmw_pvscsi.c
8371F: drivers/scsi/vmw_pvscsi.h
8372
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008373VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008374M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008375M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008376W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008377W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008378T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008379S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008380F: drivers/regulator/
8381F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008382
Juerg Haefligerab413192006-09-24 20:54:04 +02008383VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008384M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008385L: lm-sensors@lm-sensors.org
8386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008387F: Documentation/hwmon/vt1211
8388F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008389
Roger Lucas1de9e372005-11-26 20:20:05 +01008390VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008391M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008392L: lm-sensors@lm-sensors.org
8393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008394F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008395
Tony Olech88095e72011-05-14 16:48:13 -04008396VUB300 USB to SDIO/SD/MMC bridge chip
8397M: Tony Olech <tony.olech@elandigitalsystems.com>
8398L: linux-mmc@vger.kernel.org
8399L: linux-usb@vger.kernel.org
8400S: Supported
8401F: drivers/mmc/host/vub300.c
8402
Linus Torvalds1da177e2005-04-16 15:20:36 -07008403W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008404M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008406F: Documentation/w1/
8407F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008408
Charles Spirakis13927072006-07-05 18:05:15 +02008409W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008410M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008411L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008413F: Documentation/hwmon/w83791d
8414F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008415
Rudolf Marek61db0112006-12-12 18:18:30 +01008416W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008417M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008418L: lm-sensors@lm-sensors.org
8419S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008420F: Documentation/hwmon/w83793
8421F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008422
Jean Delvaree3760b42010-10-28 20:31:49 +02008423W83795 HARDWARE MONITORING DRIVER
8424M: Jean Delvare <khali@linux-fr.org>
8425L: lm-sensors@lm-sensors.org
8426S: Maintained
8427F: drivers/hwmon/w83795.c
8428
Linus Torvalds1da177e2005-04-16 15:20:36 -07008429W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008430M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008432F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008433
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008434WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008435M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008436L: linux-watchdog@vger.kernel.org
8437W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008438T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008440F: Documentation/watchdog/
8441F: drivers/watchdog/
8442F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008443F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008444
Linus Torvalds1da177e2005-04-16 15:20:36 -07008445WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008446M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008447L: linux-scsi@vger.kernel.org
8448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008449F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008450
David Herrmannb22e00f2011-09-06 13:50:40 +02008451WIIMOTE HID DRIVER
8452M: David Herrmann <dh.herrmann@googlemail.com>
8453L: linux-input@vger.kernel.org
8454S: Maintained
8455F: drivers/hid/hid-wiimote*
8456
David Härdemane258b802009-09-21 17:04:53 -07008457WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008458M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008459S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008460F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008461
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008462WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008463M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008464M: linux-wimax@intel.com
8465L: wimax@linuxwimax.org
8466S: Supported
8467W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008468F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008469F: include/linux/wimax/debug.h
8470F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008471F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008472F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008473
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008474WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008475M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008477F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008478
Linus Torvalds1da177e2005-04-16 15:20:36 -07008479WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008480M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008481L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008482W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008484F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008485
Mark Brownfebf1df2008-04-02 00:51:09 -04008486WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008487M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8488M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008489L: linux-input@vger.kernel.org
8490T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8491W: http://opensource.wolfsonmicro.com/node/7
8492S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008493F: drivers/input/touchscreen/*wm97*
8494F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008495
Mark Brown055bcbc2010-08-13 14:18:12 +01008496WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008497M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008498L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008499T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008500T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008501W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008502S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008503F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008504F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008505F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008506F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008507F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008508F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008509F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008510F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008511F: drivers/input/misc/wm831x-on.c
8512F: drivers/input/touchscreen/wm831x-ts.c
8513F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008514F: drivers/mfd/arizona*
8515F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008516F: drivers/power/wm83*.c
8517F: drivers/rtc/rtc-wm83*.c
8518F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008519F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008520F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008521F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008522F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008523F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008524F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008525F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008526F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008527F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008528F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008529
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008530WORKQUEUE
8531M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008532T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8533S: Maintained
8534F: include/linux/workqueue.h
8535F: kernel/workqueue.c
8536F: Documentation/workqueue.txt
8537
Linus Torvalds1da177e2005-04-16 15:20:36 -07008538X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008539M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008540L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008541S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008542F: Documentation/networking/x25*
8543F: include/net/x25*
8544F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008545
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008546X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008547M: Thomas Gleixner <tglx@linutronix.de>
8548M: Ingo Molnar <mingo@redhat.com>
8549M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008550M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008551T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008553F: Documentation/x86/
8554F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008555
Matthew Garrettd0944852010-02-11 10:40:13 -05008556X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05008557M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008558L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008559T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008560S: Maintained
8561F: drivers/platform/x86
8562
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008563X86 MCE INFRASTRUCTURE
8564M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008565M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008566L: linux-edac@vger.kernel.org
8567S: Maintained
8568F: arch/x86/kernel/cpu/mcheck/*
8569
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008570XC2028/3028 TUNER DRIVER
8571M: Mauro Carvalho Chehab <mchehab@redhat.com>
8572L: linux-media@vger.kernel.org
8573W: http://linuxtv.org
8574T: git git://linuxtv.org/media_tree.git
8575S: Maintained
8576F: drivers/media/tuners/tuner-xc2028.*
8577
Ian Campbellc4468082011-04-27 15:26:46 -07008578XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008579M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008580M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008581L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8582L: virtualization@lists.linux-foundation.org
8583S: Supported
8584F: arch/x86/xen/
8585F: drivers/*/xen-*front.c
8586F: drivers/xen/
8587F: arch/x86/include/asm/xen/
8588F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008589F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07008590
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008591XEN HYPERVISOR ARM
8592M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8593L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8594S: Supported
8595F: arch/arm/xen/
8596F: arch/arm/include/asm/xen/
8597
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008598XEN NETWORK BACKEND DRIVER
8599M: Ian Campbell <ian.campbell@citrix.com>
8600L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8601L: netdev@vger.kernel.org
8602S: Supported
8603F: drivers/net/xen-netback/*
8604
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008605XEN PCI SUBSYSTEM
8606M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008607L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008608S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008609F: arch/x86/pci/*xen*
8610F: drivers/pci/*xen*
8611
8612XEN SWIOTLB SUBSYSTEM
8613M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008614L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008615S: Supported
8616F: arch/x86/xen/*swiotlb*
8617F: drivers/xen/*swiotlb*
8618
Linus Torvalds1da177e2005-04-16 15:20:36 -07008619XFS FILESYSTEM
8620P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008621M: Ben Myers <bpm@sgi.com>
8622M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008623M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008624L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008625W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008626T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008627S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008628F: Documentation/filesystems/xfs.txt
8629F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008630
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008631XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008632M: Anirudha Sarangi <anirudh@xilinx.com>
8633M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008634S: Maintained
8635F: drivers/net/ethernet/xilinx/xilinx_axienet*
8636
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008637XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008638M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008639W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008641F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008642
Peter Korsgaard238b8722006-12-06 20:35:17 -08008643XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008644M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008645L: linux-serial@vger.kernel.org
8646S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008647F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008648
Linus Torvalds1da177e2005-04-16 15:20:36 -07008649YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008650M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008651L: linux-hams@vger.kernel.org
8652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008653F: drivers/net/hamradio/yam*
8654F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008655
Henkaf64a5e2005-10-12 15:02:56 +02008656YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008657M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008658L: usbb2k-api-dev@nongnu.org
8659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008660F: Documentation/input/yealink.txt
8661F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008662
Linus Torvalds1da177e2005-04-16 15:20:36 -07008663Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008664M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008665W: http://yaina.de/jreuter/
8666W: http://www.qsl.net/dl1bke/
8667L: linux-hams@vger.kernel.org
8668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008669F: Documentation/networking/z8530drv.txt
8670F: drivers/net/hamradio/*scc.c
8671F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008672
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008673ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008674M: Daniel Drake <dsd@gentoo.org>
8675M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008676W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008677L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008678L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008680F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008681
Linus Torvalds1da177e2005-04-16 15:20:36 -07008682ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008683L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008684L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008685W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008686T: Mercurial http://linuxtv.org/hg/v4l-dvb
8687S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008688F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008689
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008690ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008691M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008692S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008693F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008694
Linus Torvalds1da177e2005-04-16 15:20:36 -07008695THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008696M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008697L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008698Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008699T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008700S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008701F: *
8702F: */