blob: 7f943f6497fa2c37634bdd7f906aaca1e6f17e56 [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 Rydbergd618540f2010-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
Pierre Ossman6d799472008-07-22 14:36:57 +0200673S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700674F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200675
Russell Kingcefbf4e2009-11-22 17:40:28 +0000676ARM PRIMECELL BUS SUPPORT
677M: Russell King <linux@arm.linux.org.uk>
678S: Maintained
679F: drivers/amba/
680F: include/linux/amba/bus.h
681
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800682ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700683M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700684L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800685S: Maintained
686
Sergey Lapin9c784f92008-08-03 02:29:48 +0100687ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700688M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700689L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100690S: Maintained
691
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800692ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700693M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700694L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800695S: Maintained
696
Maxime Ripard1b106692012-11-15 21:51:26 +0100697ARM/Allwinner A1X SoC support
698M: Maxime Ripard <maxime.ripard@free-electrons.com>
699L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
700S: Maintained
701F: arch/arm/mach-sunxi/
702
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800703ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700704M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800705M: Nicolas Ferre <nicolas.ferre@atmel.com>
706M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700707L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200708W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800709W: http://www.linux4sam.org
710S: Supported
711F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100712
Rob Herring986cf2e2011-06-22 11:28:53 -0500713ARM/CALXEDA HIGHBANK ARCHITECTURE
714M: Rob Herring <rob.herring@calxeda.com>
715L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
716S: Maintained
717F: arch/arm/mach-highbank/
718
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300719ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
720M: Anton Vorontsov <avorontsov@mvista.com>
721S: Maintained
722F: arch/arm/mach-cns3xxx/
723T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
724
Alexander Shiyan386ab512012-11-17 17:57:24 +0400725ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
726M: Alexander Shiyan <shc_work@mail.ru>
727L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
728S: Odd Fixes
729F: arch/arm/mach-clps711x/
730
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800731ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100732M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000733M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700734L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800735S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100736F: arch/arm/mach-ep93xx/
737F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800738
739ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700740M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700741L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800742S: Maintained
743
Russell Kingd4275352009-04-16 14:05:27 +0100744ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700745M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700746L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700747S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100748F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700749F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100750
Mike Rapoportd48134e2008-08-20 09:03:26 +0100751ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700752M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700753L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100754S: Maintained
755
Hubert Feurstein94150092009-10-07 08:36:07 +0100756ARM/CONTEC MICRO9 MACHINE SUPPORT
757M: Hubert Feurstein <hubert.feurstein@contec.at>
758S: Maintained
759F: arch/arm/mach-ep93xx/micro9.c
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700762M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763S: Maintained
764
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200765ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100766M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700767L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100768T: git git://git.berlios.de/gemini-board
769S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300770F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200771
Barry Songa990cbd2011-07-12 21:44:10 +0800772ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
773M: Barry Song <baohua.song@csr.com>
774L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
775S: Maintained
776F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800777F: drivers/dma/sirf-dma.c
778F: drivers/i2c/busses/i2c-sirf.c
779F: drivers/pinctrl/pinctrl-sirf.c
780F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800781
Russell Kingd4275352009-04-16 14:05:27 +0100782ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700783M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700784L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100785W: http://www.arm.linux.org.uk/
786S: Maintained
787F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700788F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100789
Russell Kinga9da4f72008-07-12 21:42:04 +0100790ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700791M: Daniel Ribeiro <drwyrm@gmail.com>
792M: Stefan Schmidt <stefan@openezx.org>
793M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200794L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100795W: http://www.openezx.org/
796S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200797T: topgit git://git.openezx.org/openezx.git
798F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100799
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200800ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100801M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700802L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100803S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700804T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300805F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200806
Russell Kingd4275352009-04-16 14:05:27 +0100807ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700808M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700809L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100810W: http://www.arm.linux.org.uk/
811S: Maintained
812F: arch/arm/include/asm/hardware/dec21285.h
813F: arch/arm/mach-footbridge/
814
Sascha Hauer86183a52008-07-24 23:50:35 +0200815ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700816M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700817L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200818S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700819T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100820F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700821F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200822
Shawn Guo8bcb9762011-10-07 22:24:18 +0800823ARM/FREESCALE IMX6
824M: Shawn Guo <shawn.guo@linaro.org>
825L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
826S: Maintained
827T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
828F: arch/arm/mach-imx/*imx6*
829
Shawn Guoa9866a092011-10-21 11:53:34 +0800830ARM/FREESCALE MXS ARM ARCHITECTURE
831M: Shawn Guo <shawn.guo@linaro.org>
832L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
833S: Maintained
834T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
835F: arch/arm/mach-mxs/
836
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800837ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700838M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700839L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800840S: Maintained
841
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100842ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700843M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700844L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100845S: Maintained
846
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200847ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700848M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100849M: Paul Parsons <lost.distance@yahoo.com>
850L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200851S: Maintained
852F: arch/arm/mach-pxa/hx4700.c
853F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100854F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200855
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100856ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700857M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200858W: www.jlime.com
859S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700860T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
861F: arch/arm/mach-sa1100/jornada720.c
862F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100863
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200864ARM/IGEP MACHINE SUPPORT
865M: Enric Balletbo i Serra <eballetbo@gmail.com>
866M: Javier Martinez Canillas <javier@dowhile0.org>
867L: linux-omap@vger.kernel.org
868L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
869S: Maintained
870F: arch/arm/mach-omap2/board-igep0020.c
871
Marek Vasut403d2972010-05-22 00:29:39 +0200872ARM/INCOME PXA270 SUPPORT
873M: Marek Vasut <marek.vasut@gmail.com>
874L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
875S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700876F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200877
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800878ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700879M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700880M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700881L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700882S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100883
884ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700885M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700886L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700887S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800888
889ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700890M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700891M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700892L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700893S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800894
895ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700896M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700897M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700898L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700899S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800900
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800901ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700902M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700903L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800904S: Maintained
905
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200906ARM/INTEL IXP4XX ARM ARCHITECTURE
907M: Imre Kaloz <kaloz@openwrt.org>
908M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100909L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200910S: Maintained
911F: arch/arm/mach-ixp4xx/
912
Joe Perches838553c2010-10-26 14:22:59 -0700913ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100914M: Jonathan Cameron <jic23@cam.ac.uk>
915L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
916S: Maintained
917F: arch/arm/mach-pxa/stargate2.c
918F: drivers/pcmcia/pxa2xx_stargate2.c
919
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800920ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700921M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700922M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700923L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700924S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800925
926ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700927M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700928L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800929S: Maintained
930
931ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700932M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700933L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800934S: Maintained
935
Philipp Zabel3b8861712008-07-09 21:27:15 +0100936ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700937M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100938S: Maintained
939
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200940ARM/Marvell Armada 370 and Armada XP SOC support
941M: Jason Cooper <jason@lakedaemon.net>
942M: Andrew Lunn <andrew@lunn.ch>
943M: Gregory Clement <gregory.clement@free-electrons.com>
944L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
945S: Maintained
946F: arch/arm/mach-mvebu/
947
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400948ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
949M: Jason Cooper <jason@lakedaemon.net>
950M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700951L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400952S: Maintained
953F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400954F: arch/arm/mach-kirkwood/
955F: arch/arm/mach-mv78xx0/
956F: arch/arm/mach-orion5x/
957F: arch/arm/plat-orion/
958
Alexander Clouterd69ac132011-04-14 15:22:02 -0700959ARM/Orion SoC/Technologic Systems TS-78xx platform support
960M: Alexander Clouter <alex@digriz.org.uk>
961L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
962W: http://www.digriz.org.uk/ts78xx/kernel
963S: Maintained
964F: arch/arm/mach-orion5x/ts78xx-*
965
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000966ARM/MICREL KS8695 ARCHITECTURE
967M: Greg Ungerer <gerg@uclinux.org>
968L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
969F: arch/arm/mach-ks8695
970S: Odd Fixes
971
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200972ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700973M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700974L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200975F: arch/arm/mach-pxa/mioa701.c
976S: Maintained
977
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100978ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700979M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100980S: Maintained
981
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100982ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700983M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200984M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700985M: STEricsson <STEricsson_nomadik_linux@list.st.com>
986L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
987S: Maintained
988F: arch/arm/mach-nomadik/
989F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100990F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200991T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100992
Andy Green9d762952009-05-19 06:41:42 -0300993ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700994M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300995L: openmoko-kernel@lists.openmoko.org (subscribers-only)
996W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
997S: Supported
998
Daniel Walker0c19d212009-12-07 16:53:51 -0800999ARM/QUALCOMM MSM MACHINE SUPPORT
1000M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001001M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001002M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001003L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001004F: arch/arm/mach-msm/
1005F: drivers/video/msm/
1006F: drivers/mmc/host/msm_sdcc.c
1007F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001008F: drivers/tty/serial/msm_serial.h
1009F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001010F: drivers/*/pm8???-*
1011F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001012T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001013S: Maintained
1014
Dirk Opfer8459c152005-11-06 14:27:52 +00001015ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001016M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1017M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001018S: Maintained
1019
Marek Vasut5d783a22009-07-16 13:26:48 +02001020ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001021M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001022L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001023W: http://hackndev.com
1024S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001025F: arch/arm/mach-pxa/include/mach/palmtx.h
1026F: arch/arm/mach-pxa/palmtx.c
1027F: arch/arm/mach-pxa/include/mach/palmt5.h
1028F: arch/arm/mach-pxa/palmt5.c
1029F: arch/arm/mach-pxa/include/mach/palmld.h
1030F: arch/arm/mach-pxa/palmld.c
1031F: arch/arm/mach-pxa/include/mach/palmte2.h
1032F: arch/arm/mach-pxa/palmte2.c
1033F: arch/arm/mach-pxa/include/mach/palmtc.h
1034F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001035
Joe Perchesb57fe922009-12-14 18:00:52 -08001036ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001037M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001038L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001039W: http://hackndev.com
1040S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001041F: arch/arm/mach-pxa/include/mach/palmtreo.h
1042F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001043
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001044ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001045M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001046L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001047W: http://hackndev.com
1048S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001049F: arch/arm/mach-pxa/include/mach/palmz72.h
1050F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001053M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1055S: Maintained
1056
1057ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001058M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001059L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060W: http://www.arm.linux.org.uk/
1061S: Maintained
1062
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001063ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001064M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001065L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001066S: Maintained
1067
Russell Kingd4275352009-04-16 14:05:27 +01001068ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001069M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001070L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001071W: http://www.arm.linux.org.uk/
1072S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001073F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1074F: arch/arm/include/asm/hardware/ioc.h
1075F: arch/arm/include/asm/hardware/iomd.h
1076F: arch/arm/include/asm/hardware/memc.h
1077F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001078F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001079F: drivers/net/ethernet/i825xx/ether1*
1080F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001081F: drivers/scsi/arm/
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001084M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085W: http://www.shark-linux.de/shark.html
1086S: Maintained
1087
Ben Dooksb21477f2009-06-13 10:46:34 +01001088ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001089M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001090M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001091L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001092L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001093W: http://www.fluff.org/ben/linux/
1094S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001095F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001096F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001097F: arch/arm/mach-s3c24*/
1098F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001099F: drivers/*/*s3c2410*
1100F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001101F: drivers/spi/spi-s3c*
1102F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001104ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001105M: Kukjin Kim <kgene.kim@samsung.com>
1106L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1107L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1108S: Maintained
1109F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001110F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001111
Kyungmin Park10ffa962011-03-04 17:36:26 -08001112ARM/SAMSUNG MOBILE MACHINE SUPPORT
1113M: Kyungmin Park <kyungmin.park@samsung.com>
1114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1115S: Maintained
1116F: arch/arm/mach-s5pv210/mach-aquila.c
1117F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001118F: arch/arm/mach-exynos/mach-universal_c210.c
1119F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001120
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001121ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1122M: Kyungmin Park <kyungmin.park@samsung.com>
1123M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1124L: linux-arm-kernel@lists.infradead.org
1125L: linux-media@vger.kernel.org
1126S: Maintained
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001127F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001128F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001129
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001130ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1131M: Kyungmin Park <kyungmin.park@samsung.com>
1132M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001133M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001134L: linux-arm-kernel@lists.infradead.org
1135L: linux-media@vger.kernel.org
1136S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001137F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001138F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001139
1140ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1141M: Kyungmin Park <kyungmin.park@samsung.com>
1142M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1143L: linux-arm-kernel@lists.infradead.org
1144L: linux-media@vger.kernel.org
1145S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001146F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001147
Paul Mundtd48d38e2010-02-08 12:50:24 +09001148ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001149M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001150M: Magnus Damm <magnus.damm@gmail.com>
1151L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001152W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001153Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001154T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001155S: Supported
1156F: arch/arm/mach-shmobile/
1157F: drivers/sh/
1158
Dinh Nguyen66314222012-07-18 16:07:18 -06001159ARM/SOCFPGA ARCHITECTURE
1160M: Dinh Nguyen <dinguyen@altera.com>
1161S: Maintained
1162F: arch/arm/mach-socfpga/
1163
1164ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1165M: Dinh Nguyen <dinguyen@altera.com>
1166S: Maintained
1167F: drivers/clk/socfpga/
1168
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001169ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001170M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001171L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001172S: Maintained
1173
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001174ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001175M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001176L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1177S: Maintained
1178
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001179ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001180M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001181L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001182S: Maintained
1183
wanzongshun98ad6e32009-02-13 06:04:32 +01001184ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001185M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001186L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001187W: http://www.mcuos.com
1188S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001189F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001190F: drivers/input/keyboard/w90p910_keypad.c
1191F: drivers/input/touchscreen/w90p910_ts.c
1192F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001193F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001194F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001195F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001196F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001197F: drivers/usb/host/ehci-w90x900.c
1198F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001199
Linus Walleij54274d72010-04-04 10:58:03 +01001200ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001201M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001202L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1203S: Supported
1204F: arch/arm/mach-u300/
1205F: drivers/i2c/busses/i2c-stu300.c
1206F: drivers/rtc/rtc-coh901331.c
1207F: drivers/watchdog/coh901327_wdt.c
1208F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001209F: drivers/mfd/ab3100*
1210F: drivers/rtc/rtc-ab3100.c
1211F: drivers/rtc/rtc-coh901331.c
1212T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001213
Linus Walleij87572882010-12-22 09:18:29 +01001214ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001215M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001216M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001217L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1218S: Maintained
1219F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001220F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001221F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001222F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001223F: drivers/mfd/abx500*
1224F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001225F: drivers/mfd/dbx500*
1226F: drivers/mfd/db8500*
1227F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001228F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001229F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001230T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001231
Russell Kingd4275352009-04-16 14:05:27 +01001232ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001233M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001234L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001235W: http://www.arm.linux.org.uk/
1236S: Maintained
1237F: arch/arm/vfp/
1238
Marek Vasute66b6d82010-03-26 06:51:32 +01001239ARM/VOIPAC PXA270 SUPPORT
1240M: Marek Vasut <marek.vasut@gmail.com>
1241L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1242S: Maintained
1243F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001244F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001245
Tony Prisk04529fe2012-07-24 04:19:37 +12001246ARM/VT8500 ARM ARCHITECTURE
1247M: Tony Prisk <linux@prisktech.co.nz>
1248L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1249S: Maintained
1250F: arch/arm/mach-vt8500/
1251F: drivers/video/vt8500lcdfb.*
1252F: drivers/video/wm8505fb*
1253F: drivers/video/wmt_ge_rops.*
1254F: drivers/tty/serial/vt8500_serial.c
Cesar Eduardo Barros7beefe12013-01-04 15:35:18 -08001255F: drivers/rtc/rtc-vt8500.c
Tony Prisk3a96dff2012-11-18 15:33:06 +13001256F: drivers/mmc/host/wmt-sdmmc.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001257
Marek Vasute66b6d82010-03-26 06:51:32 +01001258ARM/ZIPIT Z2 SUPPORT
1259M: Marek Vasut <marek.vasut@gmail.com>
1260L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1261S: Maintained
1262F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001263F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001264
Catalin Marinas38074222012-03-05 11:49:34 +00001265ARM64 PORT (AARCH64 ARCHITECTURE)
1266M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001267M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001268L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1269S: Maintained
1270F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001271F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001272
George Josephd58de032010-03-05 22:17:25 +01001273ASC7621 HARDWARE MONITOR DRIVER
1274M: George Joseph <george.joseph@fairview5.com>
1275L: lm-sensors@lm-sensors.org
1276S: Maintained
1277F: Documentation/hwmon/asc7621
1278F: drivers/hwmon/asc7621.c
1279
Corentin Charyb229ece2011-02-26 10:20:40 +01001280ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001281M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001283L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001284W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001286F: drivers/platform/x86/asus*.c
1287F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001289ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001290M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001291L: lm-sensors@lm-sensors.org
1292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001293F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001294
Andrew Morton953a6472008-11-06 12:53:28 -08001295ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001296M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001297W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001299F: Documentation/crypto/async-tx-api.txt
1300F: crypto/async_tx/
1301F: drivers/dma/
1302F: include/linux/dmaengine.h
1303F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001304
Wolfram Sanga1867d32009-09-18 22:45:51 +02001305AT24 EEPROM DRIVER
1306M: Wolfram Sang <w.sang@pengutronix.de>
1307L: linux-i2c@vger.kernel.org
1308S: Maintained
1309F: drivers/misc/eeprom/at24.c
1310F: include/linux/i2c/at24.h
1311
Randy Dunlape7839f22008-10-12 16:11:45 -07001312ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001313M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001314W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001316F: Documentation/aoe/
1317F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Joe Perches9a10a872010-12-01 09:37:55 -08001319ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001320M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001321L: linux-wireless@vger.kernel.org
1322S: Supported
1323F: drivers/net/wireless/ath/*
1324
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001325ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001326M: Jiri Slaby <jirislaby@gmail.com>
1327M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001328M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001329L: linux-wireless@vger.kernel.org
1330L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001331W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001332S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001333F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001334
Kalle Valo12e62d62011-09-13 10:21:25 +03001335ATHEROS ATH6KL WIRELESS DRIVER
1336M: Kalle Valo <kvalo@qca.qualcomm.com>
1337L: linux-wireless@vger.kernel.org
1338W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1339T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1340S: Supported
1341F: drivers/net/wireless/ath/ath6kl/
1342
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001343ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001344M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1345M: Jouni Malinen <jouni@qca.qualcomm.com>
1346M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1347M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001348L: linux-wireless@vger.kernel.org
1349L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001350W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001351S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001352F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001353
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001354WILOCITY WIL6210 WIRELESS DRIVER
1355M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1356L: linux-wireless@vger.kernel.org
1357L: wil6210@qca.qualcomm.com
1358S: Supported
1359W: http://wireless.kernel.org/en/users/Drivers/wil6210
1360F: drivers/net/wireless/ath/wil6210/
1361
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001362CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1363M: Christian Lamparter <chunkeey@googlemail.com>
1364L: linux-wireless@vger.kernel.org
1365W: http://wireless.kernel.org/en/users/Drivers/carl9170
1366S: Maintained
1367F: drivers/net/wireless/ath/carl9170/
1368
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001369ATK0110 HWMON DRIVER
1370M: Luca Tettamanti <kronos.it@gmail.com>
1371L: lm-sensors@lm-sensors.org
1372S: Maintained
1373F: drivers/hwmon/asus_atk0110.c
1374
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001375ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001376M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001378F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001379
Chris Snook7ae115b2008-09-09 03:26:57 -04001380ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001381M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001382M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001383L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001384W: http://sourceforge.net/projects/atl1
1385W: http://atl1.sourceforge.net
1386S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001387F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001390M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001391L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001392L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393W: http://linux-atm.sourceforge.net
1394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001395F: drivers/atm/
1396F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001397F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001399ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001400M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001401S: Maintained
1402F: drivers/mmc/host/atmel-mci.c
1403F: drivers/mmc/host/atmel-mci-regs.h
1404
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001405ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001406M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001407S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001408F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001409
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001410ATMEL DMA DRIVER
1411M: Nicolas Ferre <nicolas.ferre@atmel.com>
1412L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1413S: Supported
1414F: drivers/dma/at_hdmac.c
1415F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001416F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001417
Josh Wu15515542012-03-23 17:56:29 +08001418ATMEL ISI DRIVER
1419M: Josh Wu <josh.wu@atmel.com>
1420L: linux-media@vger.kernel.org
1421S: Supported
Cesar Eduardo Barrosf2294c22013-01-04 15:35:21 -08001422F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001423F: include/media/atmel-isi.h
1424
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001425ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001426M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001427L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001429F: drivers/video/atmel_lcdfb.c
1430F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001431
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001432ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001433M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001434S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001435F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001436
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001437ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001438M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001439S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001440F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001441
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001442ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1443M: Nicolas Ferre <nicolas.ferre@atmel.com>
1444L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1445S: Supported
1446F: drivers/misc/atmel_tclib.c
1447F: drivers/clocksource/tcb_clksrc.c
1448
Josh Wuff2675d2012-03-23 17:56:55 +08001449ATMEL TSADCC DRIVER
1450M: Josh Wu <josh.wu@atmel.com>
1451L: linux-input@vger.kernel.org
1452S: Supported
1453F: drivers/input/touchscreen/atmel_tsadcc.c
1454
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001455ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001456M: Nicolas Ferre <nicolas.ferre@atmel.com>
1457L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001459F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001462M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001463L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464W: http://www.thekelleys.org.uk/atmel
1465W: http://atmelwlandriver.sourceforge.net/
1466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001467F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Chris Wrighta92b7b82005-07-07 18:12:23 -07001469AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001470M: Al Viro <viro@zeniv.linux.org.uk>
1471M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001472L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001473W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001474T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001476F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001477F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001478F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001479
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001480AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001481M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001482W: http://miguelojeda.es/auxdisplay.htm
1483W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001485F: drivers/auxdisplay/
1486F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001487
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001488AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001489M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1490M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001491W: http://www.atmel.com/products/AVR32/
1492W: http://avr32linux.org/
1493W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001495F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001496
1497AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001498M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1499M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001501F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001504M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001506W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001508F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001509F: include/net/ax25.h
1510F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001512AZ6007 DVB DRIVER
1513M: Mauro Carvalho Chehab <mchehab@redhat.com>
1514L: linux-media@vger.kernel.org
1515W: http://linuxtv.org
1516T: git git://linuxtv.org/media_tree.git
1517S: Maintained
1518F: drivers/media/usb/dvb-usb-v2/az6007.c
1519
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001520B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001521M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001522L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001523L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001524W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001526F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001527
1528B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001529M: Larry Finger <Larry.Finger@lwfinger.net>
1530M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001531L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001532L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001533W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001535F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001536
Richard Purdie300abeb2007-02-07 22:21:07 +00001537BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001538M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001540F: drivers/video/backlight/
1541F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001542
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001543BATMAN ADVANCED
1544M: Marek Lindner <lindner_marek@yahoo.de>
1545M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001546M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001547L: b.a.t.m.a.n@lists.open-mesh.org
1548W: http://www.open-mesh.org/
1549S: Maintained
1550F: net/batman-adv/
1551
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001552BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001553M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001554L: linux-hams@vger.kernel.org
1555W: http://www.baycom.org/~tom/ham/ham.html
1556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001557F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001558
1559BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001560S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001561F: Documentation/filesystems/befs.txt
1562F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001563
1564BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001565M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001567F: Documentation/filesystems/bfs.txt
1568F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001569F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001570
Bryan Wu1394f032007-05-06 14:50:22 -07001571BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001572M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001573L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001574W: http://blackfin.uclinux.org
1575S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001576F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001577
Bryan Wue190d6b2007-07-17 14:43:44 +08001578BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001579L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001580W: http://blackfin.uclinux.org
1581S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001582F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001583
Mike Frysinger566da5b2007-06-11 15:31:30 +08001584BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001585M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001586L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001587W: http://blackfin.uclinux.org
1588S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001589F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001590
Mike Frysinger936ed492010-03-10 15:20:38 -08001591BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001592M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001593L: uclinux-dist-devel@blackfin.uclinux.org
1594W: http://blackfin.uclinux.org
1595S: Supported
1596F: drivers/mmc/host/bfin_sdh.c
1597
Bryan Wu1394f032007-05-06 14:50:22 -07001598BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001599M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001600L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001601W: http://blackfin.uclinux.org
1602S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001603F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001604
Bryan Wu1e6d3202007-07-15 02:50:02 +08001605BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001606M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001607L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001608W: http://blackfin.uclinux.org
1609S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001610F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001611
Bryan Wud24ecfc2007-05-01 23:26:32 +02001612BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001613M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001614L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001615W: http://blackfin.uclinux.org/
1616S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001617F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001618
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001619BLINKM RGB LED DRIVER
1620M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1621S: Maintained
1622F: drivers/leds/leds-blinkm.c
1623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001625M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001626T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001628F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Joern Engel2b54aae2008-02-06 01:38:02 -08001630BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001631M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001632L: linux-mtd@lists.infradead.org
1633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001634F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001635
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001636BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001637M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001638M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001639M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001640L: linux-bluetooth@vger.kernel.org
1641W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001642T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1643T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001645F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001648M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001649M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001650M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001651L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001652W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001653T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1654T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001656F: net/bluetooth/
1657F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001660M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001661M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001662L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001663W: http://sourceforge.net/projects/bonding/
1664S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001665F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001666F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Gary Zambrano39105892006-06-22 17:26:20 -07001668BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001669M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001670L: netdev@vger.kernel.org
1671S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001672F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001673
Michael Chan948c51e2006-06-04 02:51:39 -07001674BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001675M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001676L: netdev@vger.kernel.org
1677S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001678F: drivers/net/ethernet/broadcom/bnx2.*
1679F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001680
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001681BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001682M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001683L: netdev@vger.kernel.org
1684S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001685F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001686
Stephen Warrenf680f252012-09-15 00:18:54 -06001687BROADCOM BCM2835 ARM ARCHICTURE
1688M: Stephen Warren <swarren@wwwdotorg.org>
1689L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1690T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1691S: Maintained
1692F: arch/arm/mach-bcm2835/
1693F: arch/arm/boot/dts/bcm2835*
1694F: arch/arm/configs/bcm2835_defconfig
1695F: drivers/*/*bcm2835*
1696
Michael Chan948c51e2006-06-04 02:51:39 -07001697BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001698M: Matt Carlson <mcarlson@broadcom.com>
1699M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001700L: netdev@vger.kernel.org
1701S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001702F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001703
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001704BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1705M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001706M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001707M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001708M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001709L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001710L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001711S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001712F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001713
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001714BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1715M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1716L: linux-scsi@vger.kernel.org
1717S: Supported
1718F: drivers/scsi/bnx2fc/
1719
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001720BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1721M: Rafał Miłecki <zajec5@gmail.com>
1722L: linux-wireless@vger.kernel.org
1723S: Maintained
1724F: drivers/bcma/
1725F: include/linux/bcma/
1726
Jing Huang7725ccf2009-09-23 17:46:15 -07001727BROCADE BFA FC SCSI DRIVER
Vijaya Mohan Guvva37d80832012-12-10 01:20:03 -08001728M: Anil Gurumurthy <agurumur@brocade.com>
1729M: Vijaya Mohan Guvva <vmohan@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001730L: linux-scsi@vger.kernel.org
1731S: Supported
1732F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001733
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001734BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1735M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001736L: netdev@vger.kernel.org
1737S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001738F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001739
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001740BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001741M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001742L: linux-scsi@vger.kernel.org
1743S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001744F: block/bsg.c
1745F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001746F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001747
Clemens Ladischaf399172011-01-10 16:32:54 +01001748BT87X AUDIO DRIVER
1749M: Clemens Ladisch <clemens@ladisch.de>
1750L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1751T: git git://git.alsa-project.org/alsa-kernel.git
1752S: Maintained
1753F: Documentation/sound/alsa/Bt87x.txt
1754F: sound/pci/bt87x.c
1755
Michael Bueschff1d5c22008-07-25 01:46:10 -07001756BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001757M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001758W: http://bu3sch.de/btgpio.php
1759S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001760F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001761
Joe Percheseb1eb042009-01-21 10:49:16 -05001762BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001763M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001764L: linux-btrfs@vger.kernel.org
1765W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001766Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001767T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001769F: Documentation/filesystems/btrfs.txt
1770F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001773M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001774L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001775W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001776T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001777S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001778F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001779F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Clemens Ladischaf399172011-01-10 16:32:54 +01001781C-MEDIA CMI8788 DRIVER
1782M: Clemens Ladisch <clemens@ladisch.de>
1783L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1784T: git git://git.alsa-project.org/alsa-kernel.git
1785S: Maintained
1786F: sound/pci/oxygen/
1787
Mark Salter21413552011-10-04 11:21:42 -04001788C6X ARCHITECTURE
1789M: Mark Salter <msalter@redhat.com>
1790M: Aurelien Jacquiot <a-jacquiot@ti.com>
1791L: linux-c6x-dev@linux-c6x.org
1792W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1793S: Maintained
1794F: arch/c6x/
1795
David Howellsa5432f52009-04-20 15:46:45 +01001796CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001797M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001798L: linux-cachefs@redhat.com
1799S: Supported
1800F: Documentation/filesystems/caching/cachefiles.txt
1801F: fs/cachefiles/
1802
Jonathan Corbet77d51402007-03-22 19:44:17 -03001803CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001804M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001805L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001806T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001808F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001809F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001810
Joe Perches201b6ba2010-09-07 20:33:24 +00001811CAIF NETWORK LAYER
1812M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1813L: netdev@vger.kernel.org
1814S: Supported
1815F: Documentation/networking/caif/
1816F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001817F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001818F: include/net/caif/
1819F: net/caif/
1820
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001821CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001822M: Muli Ben-Yehuda <muli@il.ibm.com>
1823M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001824L: discuss@x86-64.org
1825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001826F: arch/x86/kernel/pci-calgary_64.c
1827F: arch/x86/kernel/tce_64.c
1828F: arch/x86/include/asm/calgary.h
1829F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001830
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001831CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001832M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001833L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001834W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001835T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001836S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001837F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001838F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001839F: include/uapi/linux/can.h
1840F: include/uapi/linux/can/bcm.h
1841F: include/uapi/linux/can/raw.h
1842F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001843
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001844CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001845M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001846M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001847L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001848W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001849T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001850S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001851F: drivers/net/can/
1852F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001853F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001854F: include/uapi/linux/can/error.h
1855F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001856
James Morris95d16c72012-03-16 12:05:48 +11001857CAPABILITIES
1858M: Serge Hallyn <serge.hallyn@canonical.com>
1859L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001860S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001861F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001862F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001863F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001864F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001865F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001866
Arnd Bergmannb8154542008-05-16 11:10:59 +02001867CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001868M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001869L: linuxppc-dev@lists.ozlabs.org
1870L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001871W: http://www.ibm.com/developerworks/power/cell/
1872S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001873F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001874F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001875F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001876F: arch/powerpc/oprofile/*cell*
1877F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001878
Sage Weil9030aaf2009-10-06 11:31:15 -07001879CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001880M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001881L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001882W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001883T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001884S: Supported
1885F: Documentation/filesystems/ceph.txt
1886F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001887F: net/ceph
1888F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001889F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001890
David Vrabel18332a82008-09-17 16:34:44 +01001891CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001892L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001893S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001894F: Documentation/usb/WUSB-Design-overview.txt
1895F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001896F: drivers/usb/host/hwa-hc.c
1897F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001898F: drivers/usb/wusbcore/
1899F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001900
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001901CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001902M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001903W: http://miguelojeda.es/auxdisplay.htm
1904W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001906F: drivers/auxdisplay/cfag12864b.c
1907F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001908
1909CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001910M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001911W: http://miguelojeda.es/auxdisplay.htm
1912W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001914F: drivers/auxdisplay/cfag12864bfb.c
1915F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001916
Johannes Berg704232c2007-04-23 12:20:05 -07001917CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001918M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001919L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001920W: http://wireless.kernel.org/
1921T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1922T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001923S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001924F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07001925F: include/net/cfg80211.h
1926F: net/wireless/*
1927X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001928
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001929CHAR and MISC DRIVERS
1930M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001931M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001932T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001933S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001934F: drivers/char/*
1935F: drivers/misc/*
1936
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001937CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001938M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001939S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001940F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001941
Harry Weif8407f262011-02-25 14:44:15 -08001942CHINESE DOCUMENTATION
1943M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08001944L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08001945L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1946S: Maintained
1947F: Documentation/zh_CN/
1948
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001949CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1950M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1951L: linux-usb@vger.kernel.org
1952S: Maintained
1953F: drivers/usb/chipidea/
1954
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001955CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001956M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001957M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001958M: Neel Patel <neepatel@cisco.com>
1959M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001960S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001961F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001962
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001963CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001964M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001965L: netdev@vger.kernel.org
1966S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001967F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001968
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001969CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001970M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001971L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001973F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001974
Timur Tabid9e9d822008-04-24 08:45:26 +10001975CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06001976M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07001977L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06001978S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07001979F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001980
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001981CLEANCACHE API
1982M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1983L: linux-kernel@vger.kernel.org
1984S: Maintained
1985F: mm/cleancache.c
1986F: include/linux/cleancache.h
1987
Russell Kingd4275352009-04-16 14:05:27 +01001988CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001989M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001990S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001991F: include/linux/clk.h
1992
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001993CISCO FCOE HBA DRIVER
Hiral Patel8fc89a72012-12-10 01:21:29 -08001994M: Hiral Patel <hiralpat@cisco.com>
1995M: Suma Ramars <sramars@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001996M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001997L: linux-scsi@vger.kernel.org
1998S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001999F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002000
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002001CMPC ACPI DRIVER
2002M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2003M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002004L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002005S: Supported
2006F: drivers/platform/x86/classmate-laptop.c
2007
Nicolas Palix74425ee2010-06-06 17:15:01 +02002008COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002009M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002010M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002011M: Nicolas Palix <nicolas.palix@imag.fr>
2012L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002013W: http://coccinelle.lip6.fr/
2014S: Supported
2015F: scripts/coccinelle/
2016F: scripts/coccicheck
2017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002019M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020M: coda@cs.cmu.edu
2021L: codalist@coda.cs.cmu.edu
2022W: http://www.coda.cs.cmu.edu/
2023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002024F: Documentation/filesystems/coda.txt
2025F: fs/coda/
2026F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002027F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Mike Turquette7704add2012-05-02 18:37:45 -07002029COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002030M: Mike Turquette <mturquette@linaro.org>
2031L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2032T: git git://git.linaro.org/people/mturquette/linux.git
2033S: Maintained
2034F: drivers/clk/clk.c
2035F: drivers/clk/clk-*
2036F: include/linux/clk-pr*
2037
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002038COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002039M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002040L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002041L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002042W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002043Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002044T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002045S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002046F: Documentation/filesystems/cifs.txt
2047F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002050M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002051L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002053F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002056M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002057L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002059F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
2061COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002062M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002063L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002065F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002067COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002068M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002069L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002071F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002072
Simon Arlott949be0f2007-03-06 02:47:46 -08002073CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002074M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002075L: accessrunner-general@lists.sourceforge.net
2076W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002078F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002079
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002080CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002081M: Joel Becker <jlbec@evilplan.org>
2082T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002083S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002084F: fs/configfs/
2085F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002086
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002087CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002088M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002089L: netdev@vger.kernel.org
2090S: Maintained
2091F: drivers/connector/
2092
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002093CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002094M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002095M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002096L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002097L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002098T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002100F: include/linux/cgroup*
2101F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002102F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002103
Rudolf Marekbebe4672007-05-08 17:22:02 +02002104CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002105M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002106L: lm-sensors@lm-sensors.org
2107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002108F: Documentation/hwmon/coretemp
2109F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002110
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002112M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113W: http://www.fi.muni.cz/~kas/cosa/
2114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002115F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Florian Fainelli4371ee32009-06-01 02:43:17 -07002117CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002118M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002119L: netdev@vger.kernel.org
2120S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002121F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002124M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002125L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002126L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002128F: drivers/cpufreq/
2129F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
2131CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002132M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002134F: arch/x86/kernel/cpuid.c
2135F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002137CPU POWER MONITORING SUBSYSTEM
2138M: Dominik Brodowski <linux@dominikbrodowski.net>
2139M: Thomas Renninger <trenn@suse.de>
2140S: Maintained
2141F: tools/power/cpupower
2142
Paul Jacksoned90fb42005-09-27 21:45:37 -07002143CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002144M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002145W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002146W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002147S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002148F: Documentation/cgroups/cpusets.txt
2149F: include/linux/cpuset.h
2150F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002151
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002153W: http://sourceforge.net/projects/cramfs/
2154S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002155F: Documentation/filesystems/cramfs.txt
2156F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002159M: Mikael Starvik <starvik@axis.com>
2160M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002161L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162W: http://developer.axis.com
2163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002164F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002165F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
2167CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002168M: Herbert Xu <herbert@gondor.apana.org.au>
2169M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002171T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002173F: Documentation/crypto/
2174F: arch/*/crypto/
2175F: crypto/
2176F: drivers/crypto/
2177F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Neil Horman5b07bd52009-02-05 16:03:04 +11002179CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002180M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002181L: linux-crypto@vger.kernel.org
2182S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002183F: crypto/ansi_cprng.c
2184F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002185
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002186CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002187M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002189F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002190
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002191CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002192M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002193L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002194L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002195T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002196W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002197W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002199F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002200F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002201F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002202
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002203CX88 VIDEO4LINUX DRIVER
2204M: Mauro Carvalho Chehab <mchehab@redhat.com>
2205L: linux-media@vger.kernel.org
2206W: http://linuxtv.org
2207T: git git://linuxtv.org/media_tree.git
2208S: Odd fixes
2209F: Documentation/video4linux/cx88/
2210F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002211
Antti Palosaari91952bc2012-10-01 12:28:46 -03002212CXD2820R MEDIA DRIVER
2213M: Antti Palosaari <crope@iki.fi>
2214L: linux-media@vger.kernel.org
2215W: http://linuxtv.org/
2216W: http://palosaari.fi/linux/
2217Q: http://patchwork.linuxtv.org/project/linux-media/list/
2218T: git git://linuxtv.org/anttip/media_tree.git
2219S: Maintained
2220F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002221
Steve Wisee5ec3782008-05-20 14:06:33 -07002222CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002223M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002224L: netdev@vger.kernel.org
2225W: http://www.chelsio.com
2226S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002227F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002228
2229CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002230M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002231L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002232W: http://www.openfabrics.org
2233S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002234F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002235
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002236CXGB4 ETHERNET DRIVER (CXGB4)
2237M: Dimitris Michailidis <dm@chelsio.com>
2238L: netdev@vger.kernel.org
2239W: http://www.chelsio.com
2240S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002241F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002242
2243CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2244M: Steve Wise <swise@chelsio.com>
2245L: linux-rdma@vger.kernel.org
2246W: http://www.openfabrics.org
2247S: Supported
2248F: drivers/infiniband/hw/cxgb4/
2249
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002250CXGB4VF ETHERNET DRIVER (CXGB4VF)
2251M: Casey Leedom <leedom@chelsio.com>
2252L: netdev@vger.kernel.org
2253W: http://www.chelsio.com
2254S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002255F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002256
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002257STMMAC ETHERNET DRIVER
2258M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2259L: netdev@vger.kernel.org
2260W: http://www.stlinux.com
2261S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002262F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002263
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002265M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002266L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267W: http://www.arm.linux.org.uk/
2268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002269F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002272M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002273W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002275F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
2277CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002279S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002280F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002281F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002282F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
2284CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002286S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002287F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002289CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002290M: Javier Martinez Canillas <javier@dowhile0.org>
2291L: linux-input@vger.kernel.org
2292S: Maintained
2293F: drivers/input/touchscreen/cyttsp*
2294F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002297M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298W: http://yaina.de/jreuter/
2299W: http://www.qsl.net/dl1bke/
2300L: linux-hams@vger.kernel.org
2301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002302F: net/ax25/af_ax25.c
2303F: net/ax25/ax25_dev.c
2304F: net/ax25/ax25_ds_*
2305F: net/ax25/ax25_in.c
2306F: net/ax25/ax25_out.c
2307F: net/ax25/ax25_timer.c
2308F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002310DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002311L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002312S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002313F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002314F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002315
2316DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002317M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002318W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002319M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002321F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002322
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002324M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002325M: Ali Akcaagac <aliakc@web.de>
2326M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002328L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329L: http://lists.twibble.org/mailman/listinfo/dc395x/
2330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002331F: Documentation/scsi/dc395x.txt
2332F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002334DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002335M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002336L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002337W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002339F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002340F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002341F: include/linux/tfrc.h
2342F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002343
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345W: http://linux-decnet.sourceforge.net
2346L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002347S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002348F: Documentation/networking/decnet.txt
2349F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
2351DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002352M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002354F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002356DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002357M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002358L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002360F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002363M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364W: http://www.debian.org/~dz/i8k/
2365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002366F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002367F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Doug Warzecha90563ec2005-09-06 15:17:15 -07002369DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002370M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002372F: Documentation/dcdbas.txt
2373F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002374
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002375DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002376M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002377S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002378F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002379
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002380DESIGNWARE USB3 DRD IP DRIVER
2381M: Felipe Balbi <balbi@ti.com>
2382L: linux-usb@vger.kernel.org
2383L: linux-omap@vger.kernel.org
2384T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2385S: Maintained
2386F: drivers/usb/dwc3/
2387
Kyungmin Park89d07762012-01-10 15:09:09 -08002388DEVICE FREQUENCY (DEVFREQ)
2389M: MyungJoo Ham <myungjoo.ham@samsung.com>
2390M: Kyungmin Park <kyungmin.park@samsung.com>
2391L: linux-kernel@vger.kernel.org
2392S: Maintained
2393F: drivers/devfreq/
2394
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002396M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398S: Maintained
2399
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002400DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002401M: Alasdair Kergon <agk@redhat.com>
2402M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002403L: dm-devel@redhat.com
2404W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002405Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002406T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002408F: Documentation/device-mapper/
2409F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002410F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002411F: include/linux/device-mapper.h
2412F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002413
Guenter Roeck335d7c52011-01-26 11:45:49 -08002414DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002415M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002416L: linux-i2c@vger.kernel.org
2417S: Maintained
2418F: drivers/i2c/busses/i2c-diolan-u2c.c
2419
Randy Dunlape7839f22008-10-12 16:11:45 -07002420DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002421M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002423F: Documentation/filesystems/dnotify.txt
2424F: fs/notify/dnotify/
2425F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
2427DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002428M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2430W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2431W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2432S: Maintained
2433
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002434DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002435M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002437F: Documentation/filesystems/quota.txt
2438F: fs/quota/
2439F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002440F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
Bernie Thompson702686a2012-03-01 13:52:13 -08002442DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2443M: Bernie Thompson <bernie@plugable.com>
2444L: linux-fbdev@vger.kernel.org
2445S: Maintained
2446W: http://plugable.com/category/projects/udlfb/
2447F: drivers/video/udlfb.c
2448F: include/video/udlfb.h
2449F: Documentation/fb/udlfb.txt
2450
Randy Dunlape7839f22008-10-12 16:11:45 -07002451DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002452M: Christine Caulfield <ccaulfie@redhat.com>
2453M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002454L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002455W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002456T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002457S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002458F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002459
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302460DMA BUFFER SHARING FRAMEWORK
2461M: Sumit Semwal <sumit.semwal@linaro.org>
2462S: Maintained
2463L: linux-media@vger.kernel.org
2464L: dri-devel@lists.freedesktop.org
2465L: linaro-mm-sig@lists.linaro.org
2466F: drivers/base/dma-buf*
2467F: include/linux/dma-buf*
2468F: Documentation/dma-buf-sharing.txt
2469T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2470
Dan Williamsb3e5f262007-08-07 10:26:35 -07002471DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002472M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002473M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002474S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002475F: drivers/dma/
2476F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302477T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2478T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002479
Juerg Haefligerb8250372007-06-09 10:11:16 -04002480DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002481M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002482L: lm-sensors@lm-sensors.org
2483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002484F: Documentation/hwmon/dme1737
2485F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002486
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002487DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002488M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002489L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002490S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002491F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002492
Joe Perches7d2c86b2009-04-07 20:59:01 -07002493DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002494M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002495L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002496T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002498F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002501M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502L: blinux-list@redhat.com
2503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002504F: drivers/char/dtlk.c
2505F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002507DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002508M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002509L: linux-scsi@vger.kernel.org
2510W: http://www.adaptec.com/
2511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002512F: drivers/scsi/dpt*
2513F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002514
Philipp Reisnerb411b362009-09-25 16:07:19 -07002515DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002516P: Philipp Reisner
2517P: Lars Ellenberg
2518M: drbd-dev@lists.linbit.com
2519L: drbd-user@lists.linbit.com
2520W: http://www.drbd.org
2521T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2522T: git git://git.drbd.org/drbd-8.3.git
2523S: Supported
2524F: drivers/block/drbd/
2525F: lib/lru_cache.c
2526F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002527
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002528DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002529M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002530T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002532F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002533F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002534F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002535F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002536F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002537F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002538F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
2540DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002541M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002542L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002543T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002545F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002546F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002547F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
Chris Wilson8daf7472010-09-28 14:07:26 +01002549INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002550M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002551L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002552L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002553T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002554S: Supported
2555F: drivers/gpu/drm/i915
2556F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002557F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002558
Kyungmin Park398a6d42011-11-02 11:33:16 +09002559DRM DRIVERS FOR EXYNOS
2560M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002561M: Joonyoung Shim <jy0922.shim@samsung.com>
2562M: Seung-Woo Kim <sw0312.kim@samsung.com>
2563M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002564L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002565T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002566S: Supported
2567F: drivers/gpu/drm/exynos
2568F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002569F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002570
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002571DRM DRIVERS FOR NVIDIA TEGRA
2572M: Thierry Reding <thierry.reding@avionic-design.de>
2573L: dri-devel@lists.freedesktop.org
2574L: linux-tegra@vger.kernel.org
2575T: git git://gitorious.org/thierryreding/linux.git
2576S: Maintained
2577F: drivers/gpu/drm/tegra/
2578F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2579
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002581M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002582L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002584F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Antti Palosaari91952bc2012-10-01 12:28:46 -03002586DVB_USB_AF9015 MEDIA DRIVER
2587M: Antti Palosaari <crope@iki.fi>
2588L: linux-media@vger.kernel.org
2589W: http://linuxtv.org/
2590W: http://palosaari.fi/linux/
2591Q: http://patchwork.linuxtv.org/project/linux-media/list/
2592T: git git://linuxtv.org/anttip/media_tree.git
2593S: Maintained
2594F: drivers/media/usb/dvb-usb-v2/af9015*
2595
2596DVB_USB_AF9035 MEDIA DRIVER
2597M: Antti Palosaari <crope@iki.fi>
2598L: linux-media@vger.kernel.org
2599W: http://linuxtv.org/
2600W: http://palosaari.fi/linux/
2601Q: http://patchwork.linuxtv.org/project/linux-media/list/
2602T: git git://linuxtv.org/anttip/media_tree.git
2603S: Maintained
2604F: drivers/media/usb/dvb-usb-v2/af9035*
2605
2606DVB_USB_ANYSEE MEDIA DRIVER
2607M: Antti Palosaari <crope@iki.fi>
2608L: linux-media@vger.kernel.org
2609W: http://linuxtv.org/
2610W: http://palosaari.fi/linux/
2611Q: http://patchwork.linuxtv.org/project/linux-media/list/
2612T: git git://linuxtv.org/anttip/media_tree.git
2613S: Maintained
2614F: drivers/media/usb/dvb-usb-v2/anysee*
2615
2616DVB_USB_AU6610 MEDIA DRIVER
2617M: Antti Palosaari <crope@iki.fi>
2618L: linux-media@vger.kernel.org
2619W: http://linuxtv.org/
2620W: http://palosaari.fi/linux/
2621Q: http://patchwork.linuxtv.org/project/linux-media/list/
2622T: git git://linuxtv.org/anttip/media_tree.git
2623S: Maintained
2624F: drivers/media/usb/dvb-usb-v2/au6610*
2625
2626DVB_USB_CE6230 MEDIA DRIVER
2627M: Antti Palosaari <crope@iki.fi>
2628L: linux-media@vger.kernel.org
2629W: http://linuxtv.org/
2630W: http://palosaari.fi/linux/
2631Q: http://patchwork.linuxtv.org/project/linux-media/list/
2632T: git git://linuxtv.org/anttip/media_tree.git
2633S: Maintained
2634F: drivers/media/usb/dvb-usb-v2/ce6230*
2635
Michael Krufkyd099dea2012-10-02 00:56:20 -03002636DVB_USB_CXUSB MEDIA DRIVER
2637M: Michael Krufky <mkrufky@linuxtv.org>
2638L: linux-media@vger.kernel.org
2639W: http://linuxtv.org/
2640W: http://github.com/mkrufky
2641Q: http://patchwork.linuxtv.org/project/linux-media/list/
2642T: git git://linuxtv.org/media_tree.git
2643S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002644F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002645
Antti Palosaari91952bc2012-10-01 12:28:46 -03002646DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2647M: Antti Palosaari <crope@iki.fi>
2648L: linux-media@vger.kernel.org
2649W: http://linuxtv.org/
2650W: http://palosaari.fi/linux/
2651Q: http://patchwork.linuxtv.org/project/linux-media/list/
2652T: git git://linuxtv.org/anttip/media_tree.git
2653S: Maintained
2654F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2655
2656DVB_USB_EC168 MEDIA DRIVER
2657M: Antti Palosaari <crope@iki.fi>
2658L: linux-media@vger.kernel.org
2659W: http://linuxtv.org/
2660W: http://palosaari.fi/linux/
2661Q: http://patchwork.linuxtv.org/project/linux-media/list/
2662T: git git://linuxtv.org/anttip/media_tree.git
2663S: Maintained
2664F: drivers/media/usb/dvb-usb-v2/ec168*
2665
Michael Krufky8856f5f2012-10-02 00:55:50 -03002666DVB_USB_MXL111SF MEDIA DRIVER
2667M: Michael Krufky <mkrufky@linuxtv.org>
2668L: linux-media@vger.kernel.org
2669W: http://linuxtv.org/
2670W: http://github.com/mkrufky
2671Q: http://patchwork.linuxtv.org/project/linux-media/list/
2672T: git git://linuxtv.org/mkrufky/mxl111sf.git
2673S: Maintained
2674F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2675
Antti Palosaari91952bc2012-10-01 12:28:46 -03002676DVB_USB_RTL28XXU MEDIA DRIVER
2677M: Antti Palosaari <crope@iki.fi>
2678L: linux-media@vger.kernel.org
2679W: http://linuxtv.org/
2680W: http://palosaari.fi/linux/
2681Q: http://patchwork.linuxtv.org/project/linux-media/list/
2682T: git git://linuxtv.org/anttip/media_tree.git
2683S: Maintained
2684F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2685
2686DVB_USB_V2 MEDIA DRIVER
2687M: Antti Palosaari <crope@iki.fi>
2688L: linux-media@vger.kernel.org
2689W: http://linuxtv.org/
2690W: http://palosaari.fi/linux/
2691Q: http://patchwork.linuxtv.org/project/linux-media/list/
2692T: git git://linuxtv.org/anttip/media_tree.git
2693S: Maintained
2694F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2695F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2696
Jason Baronac0ac382011-08-11 14:36:43 -04002697DYNAMIC DEBUG
2698M: Jason Baron <jbaron@redhat.com>
2699S: Maintained
2700F: lib/dynamic_debug.c
2701F: include/linux/dynamic_debug.h
2702
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002703DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002704M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002705S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002706F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002707
Antti Palosaari91952bc2012-10-01 12:28:46 -03002708E4000 MEDIA DRIVER
2709M: Antti Palosaari <crope@iki.fi>
2710L: linux-media@vger.kernel.org
2711W: http://linuxtv.org/
2712W: http://palosaari.fi/linux/
2713Q: http://patchwork.linuxtv.org/project/linux-media/list/
2714T: git git://linuxtv.org/anttip/media_tree.git
2715S: Maintained
2716F: drivers/media/tuners/e4000*
2717
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002719M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002720L: linux-eata@i-connect.net
2721L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002723F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
2725EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002726M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727L: linux-scsi@vger.kernel.org
2728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002729F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
2731EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002732M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002733L: linux-eata@i-connect.net
2734L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002736F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
2738EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002739M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002740L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741W: http://ebtables.sourceforge.net/
2742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002743F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002744F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002745F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Antti Palosaari91952bc2012-10-01 12:28:46 -03002747EC100 MEDIA DRIVER
2748M: Antti Palosaari <crope@iki.fi>
2749L: linux-media@vger.kernel.org
2750W: http://linuxtv.org/
2751W: http://palosaari.fi/linux/
2752Q: http://patchwork.linuxtv.org/project/linux-media/list/
2753T: git git://linuxtv.org/anttip/media_tree.git
2754S: Maintained
2755F: drivers/media/dvb-frontends/ec100*
2756
Michael Halcrow237fead2006-10-04 02:16:22 -07002757ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002758M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002759M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002760L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002761W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002762S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002763F: Documentation/filesystems/ecryptfs.txt
2764F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002765
Alan Coxda9bb1d2006-01-18 17:44:13 -08002766EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002767M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002768L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002769W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002771F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002772F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002773F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002774
Borislav Petkovc476c232009-05-20 20:31:58 +02002775EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002776M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002777M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002778L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002779W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002780S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002781F: drivers/edac/amd64_edac*
2782
Ralf Baechlef65aad42012-10-17 00:39:09 +02002783EDAC-CAVIUM
2784M: Ralf Baechle <ralf@linux-mips.org>
2785M: David Daney <david.daney@cavium.com>
2786L: linux-edac@vger.kernel.org
2787L: linux-mips@linux-mips.org
2788W: bluesmoke.sourceforge.net
2789S: Supported
2790F: drivers/edac/octeon_edac*
2791
Dave Peterson0e438e32006-03-26 01:38:55 -08002792EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002793M: Mark Gross <mark.gross@intel.com>
2794M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002795L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002796W: bluesmoke.sourceforge.net
2797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002798F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002799
2800EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002801M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002802L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002803W: bluesmoke.sourceforge.net
2804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002805F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002806
Douglas Thompson6bc78402007-07-19 01:50:12 -07002807EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002808M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002809L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002810W: bluesmoke.sourceforge.net
2811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002812F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002813
2814EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002815M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002816L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002817W: bluesmoke.sourceforge.net
2818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002819F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002820
2821EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002822M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002823L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002824W: bluesmoke.sourceforge.net
2825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002826F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002827
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002828EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002829M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002830L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002831W: bluesmoke.sourceforge.net
2832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002833F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002834
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002835EDAC-I7300
2836M: Mauro Carvalho Chehab <mchehab@redhat.com>
2837L: linux-edac@vger.kernel.org
2838W: bluesmoke.sourceforge.net
2839S: Maintained
2840F: drivers/edac/i7300_edac.c
2841
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002842EDAC-I7CORE
2843M: Mauro Carvalho Chehab <mchehab@redhat.com>
2844L: linux-edac@vger.kernel.org
2845W: bluesmoke.sourceforge.net
2846S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002847F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002848
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002849EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002850M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302851M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002852L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002853W: bluesmoke.sourceforge.net
2854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002855F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002856
2857EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002858M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002859L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002860W: bluesmoke.sourceforge.net
2861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002862F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002863
Dave Peterson0e438e32006-03-26 01:38:55 -08002864EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002865M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002866L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002867W: bluesmoke.sourceforge.net
2868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002869F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002870
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002871EDAC-SBRIDGE
2872M: Mauro Carvalho Chehab <mchehab@redhat.com>
2873L: linux-edac@vger.kernel.org
2874W: bluesmoke.sourceforge.net
2875S: Maintained
2876F: drivers/edac/sb_edac.c
2877
Clemens Ladischaf399172011-01-10 16:32:54 +01002878EDIROL UA-101/UA-1000 DRIVER
2879M: Clemens Ladisch <clemens@ladisch.de>
2880L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2881T: git git://git.alsa-project.org/alsa-kernel.git
2882S: Maintained
2883F: sound/usb/misc/ua101.c
2884
Matt Fleming1f7df952012-10-03 10:04:02 +01002885EXTENSIBLE FIRMWARE INTERFACE (EFI)
2886M: Matt Fleming <matt.fleming@intel.com>
2887L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002888T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002889S: Maintained
2890F: Documentation/x86/efi-stub.txt
2891F: arch/ia64/kernel/efi.c
2892F: arch/x86/boot/compressed/eboot.[ch]
2893F: arch/x86/include/asm/efi.h
2894F: arch/x86/platform/efi/*
2895F: drivers/firmware/efivars.c
2896F: include/linux/efi*.h
2897
Peter Jones85a00d92010-09-22 13:05:04 -07002898EFIFB FRAMEBUFFER DRIVER
2899L: linux-fbdev@vger.kernel.org
2900M: Peter Jones <pjones@redhat.com>
2901S: Maintained
2902F: drivers/video/efifb.c
2903
Josh Triplett0bee8d22006-07-30 03:03:58 -07002904EFS FILESYSTEM
2905W: http://aeschi.ch.eu.org/efs/
2906S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002907F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002908
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002909EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002910M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2911M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002912L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002913S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002914F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002915
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002916EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002917M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002918L: netdev@vger.kernel.org
2919S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002920F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002921
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02002922EM28XX VIDEO4LINUX DRIVER
2923M: Mauro Carvalho Chehab <mchehab@redhat.com>
2924L: linux-media@vger.kernel.org
2925W: http://linuxtv.org
2926T: git git://linuxtv.org/media_tree.git
2927S: Maintained
2928F: drivers/media/usb/em28xx/
2929
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002930EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002931M: Paul Gortmaker <paul.gortmaker@windriver.com>
2932M: Matt Mackall <mpm@selenic.com>
2933M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002934L: linux-embedded@vger.kernel.org
2935S: Maintained
2936
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002937EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002938M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002939L: linux-scsi@vger.kernel.org
2940W: http://sourceforge.net/projects/lpfcxxxx
2941S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002942F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002943
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002944ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002945M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002946S: Maintained
2947F: drivers/misc/cb710/
2948F: drivers/mmc/host/cb710-mmc.*
2949F: include/linux/cb710.h
2950
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002951ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2952M: Maxim Levitsky <maximlevitsky@gmail.com>
2953S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002954F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002955
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002956EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002957M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002958S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002959T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002960F: drivers/video/s1d13xxxfb.c
2961F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002962
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002964M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002965L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002967F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
2969ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08002970M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07002971L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002972L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002973W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002975F: include/linux/netfilter_bridge/
2976F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
2978ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002979M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002981F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
2983EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002984M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002985L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002987F: Documentation/filesystems/ext2.txt
2988F: fs/ext2/
2989F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
2991EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002992M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002993M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002994M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002995L: linux-ext4@vger.kernel.org
2996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002997F: Documentation/filesystems/ext3.txt
2998F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08002999
3000EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003001M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003002M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003003L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003004W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003005Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003007F: Documentation/filesystems/ext4.txt
3008F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
Mimi Zoharc5532b02011-08-17 18:52:24 -04003010Extended Verification Module (EVM)
3011M: Mimi Zohar <zohar@us.ibm.com>
3012S: Supported
3013F: security/integrity/evm/
3014
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003015EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3016M: MyungJoo Ham <myungjoo.ham@samsung.com>
3017M: Chanwoo Choi <cw00.choi@samsung.com>
3018L: linux-kernel@vger.kernel.org
3019S: Maintained
3020F: drivers/extcon/
3021F: Documentation/extcon/
3022
Jingoo Han0a799512012-02-06 11:30:39 +09003023EXYNOS DP DRIVER
3024M: Jingoo Han <jg1.han@samsung.com>
3025L: linux-fbdev@vger.kernel.org
3026S: Maintained
3027F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003028F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003029
Donghwa Lee33ad3912012-03-06 11:44:58 +09003030EXYNOS MIPI DISPLAY DRIVERS
3031M: Inki Dae <inki.dae@samsung.com>
3032M: Donghwa Lee <dh09.lee@samsung.com>
3033M: Kyungmin Park <kyungmin.park@samsung.com>
3034L: linux-fbdev@vger.kernel.org
3035S: Maintained
3036F: drivers/video/exynos/exynos_mipi*
3037F: include/video/exynos_mipi*
3038
Jean Delvaree53004e2006-01-09 23:26:14 +01003039F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003040M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003041L: lm-sensors@lm-sensors.org
3042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003043F: Documentation/hwmon/f71805f
3044F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003045
Michael Büscheea977e2012-04-02 12:14:32 -03003046FC0011 TUNER DRIVER
3047M: Michael Buesch <m@bues.ch>
3048L: linux-media@vger.kernel.org
3049S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003050F: drivers/media/tuners/fc0011.h
3051F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003052
Antti Palosaari91952bc2012-10-01 12:28:46 -03003053FC2580 MEDIA DRIVER
3054M: Antti Palosaari <crope@iki.fi>
3055L: linux-media@vger.kernel.org
3056W: http://linuxtv.org/
3057W: http://palosaari.fi/linux/
3058Q: http://patchwork.linuxtv.org/project/linux-media/list/
3059T: git git://linuxtv.org/anttip/media_tree.git
3060S: Maintained
3061F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
Eric Paris88b2dbd2010-08-18 12:25:50 -04003063FANOTIFY
3064M: Eric Paris <eparis@redhat.com>
3065S: Maintained
3066F: fs/notify/fanotify/
3067F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003068F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003069
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003071M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072W: http://www.farsite.co.uk/
3073S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003074F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075
Akinobu Mitac5408b82007-04-23 14:41:20 -07003076FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003077M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003078S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003079F: Documentation/fault-injection/
3080F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003081
Robert Lovecae727d2010-02-16 12:16:00 -08003082FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3083M: Robert Love <robert.w.love@intel.com>
3084L: devel@open-fcoe.org
3085W: www.Open-FCoE.org
3086S: Supported
3087F: drivers/scsi/libfc/
3088F: drivers/scsi/fcoe/
3089F: include/scsi/fc/
3090F: include/scsi/libfc.h
3091F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003092F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003093
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003094FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003095M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003096L: linux-fsdevel@vger.kernel.org
3097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003098F: include/linux/fcntl.h
3099F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003100F: include/uapi/linux/fcntl.h
3101F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003102F: fs/fcntl.c
3103F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003104
3105FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003106M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003107L: linux-fsdevel@vger.kernel.org
3108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003109F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003110
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003111FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003112M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003113L: lm-sensors@lm-sensors.org
3114S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003115F: drivers/hwmon/f75375s.c
3116F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003117
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003118FIREWIRE AUDIO DRIVERS
3119M: Clemens Ladisch <clemens@ladisch.de>
3120L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3121T: git git://git.alsa-project.org/alsa-kernel.git
3122S: Maintained
3123F: sound/firewire/
3124
Stefan Richtereb86ec52012-11-03 09:25:20 +01003125FIREWIRE MEDIA DRIVERS (firedtv)
3126M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3127L: linux-media@vger.kernel.org
3128L: linux1394-devel@lists.sourceforge.net
3129T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3130S: Maintained
3131F: drivers/media/firewire/
3132
Chris Boota511ce32012-04-14 17:50:35 -07003133FIREWIRE SBP-2 TARGET
3134M: Chris Boot <bootc@bootc.net>
3135L: linux-scsi@vger.kernel.org
3136L: target-devel@vger.kernel.org
3137L: linux1394-devel@lists.sourceforge.net
3138T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3139S: Maintained
3140F: drivers/target/sbp/
3141
Joe Perches7d2c86b2009-04-07 20:59:01 -07003142FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003143M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003144L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003145W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003146T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003148F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003149F: include/linux/firewire.h
3150F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003151F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003152
3153FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003154M: Ming Lei <ming.lei@canonical.com>
3155L: linux-kernel@vger.kernel.org
3156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003157F: Documentation/firmware_class/
3158F: drivers/base/firmware*.c
3159F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003160
Jiri Kosina8206f662012-05-18 13:52:29 +02003161FLOPPY DRIVER
3162M: Jiri Kosina <jkosina@suse.cz>
3163T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3164S: Odd fixes
3165F: drivers/block/floppy.c
3166
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003167FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003168M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003169W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003171F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003172
3173FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003174L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003175S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003176F: drivers/net/wan/dlci.c
3177F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003178
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003180M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003181L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003183Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003184T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003186F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003187F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003188F: drivers/video/
3189F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003190F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003191F: include/uapi/video/
3192F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
Timur Tabia57c1882012-10-16 17:33:42 -05003194FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003195M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003196L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003197S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003198F: drivers/video/fsl-diu-fb.*
3199
Zhang Wei173acc72008-03-01 07:42:48 -07003200FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003201M: Li Yang <leoli@freescale.com>
3202M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003203L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003205F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003206
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003207FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003208M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003209L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003210L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003212F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003213
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003214FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003215M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003216L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003217L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003218S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003219F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003220F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003221
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003222FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003223M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3224M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003225L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003226L: netdev@vger.kernel.org
3227S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003228F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003229F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003230
Timur Tabid9e9d822008-04-24 08:45:26 +10003231FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003232L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003233S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003234F: arch/powerpc/sysdev/qe_lib/
3235F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003236
Joe Perchesb55ef9292009-10-26 16:49:46 -07003237FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003238M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003239L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003240L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003241S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003242F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003243
Li Yangbeaf53b2007-05-25 13:54:02 +08003244FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003245M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003246L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003247L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003248S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003249F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003250
Timur Tabid9e9d822008-04-24 08:45:26 +10003251FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003252M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003253L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003254S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003255F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003256
3257FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003258M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003259L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003260L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003261S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003262F: sound/soc/fsl/fsl*
3263F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003264
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003266M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003269F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
Pavel Machek71038f52009-01-15 13:51:02 -08003271FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003272M: Pavel Machek <pavel@ucw.cz>
3273M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003274L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003275S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003276F: Documentation/power/freezing-of-tasks.txt
3277F: include/linux/freezer.h
3278F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003279
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003280FRONTSWAP API
3281M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3282L: linux-kernel@vger.kernel.org
3283S: Maintained
3284F: mm/frontswap.c
3285F: include/linux/frontswap.h
3286
David Howellsa5432f52009-04-20 15:46:45 +01003287FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003288M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003289L: linux-cachefs@redhat.com
3290S: Supported
3291F: Documentation/filesystems/caching/
3292F: fs/fscache/
3293F: include/linux/fscache*.h
3294
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003295F2FS FILE SYSTEM
3296M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3297L: linux-f2fs-devel@lists.sourceforge.net
3298W: http://en.wikipedia.org/wiki/F2FS
3299T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3300S: Maintained
3301F: Documentation/filesystems/f2fs.txt
3302F: fs/f2fs/
3303F: include/linux/f2fs_fs.h
3304
David Howells5ab7ffe2007-04-10 15:10:45 +01003305FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003306M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003308F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309
Jonathan Woithe20b93732008-06-11 10:14:56 +09303310FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303311M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003312L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003314F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303315
Heungjun Kim4da621b2011-11-11 08:05:33 -03003316FUJITSU M-5MO LS CAMERA ISP DRIVER
3317M: Kyungmin Park <kyungmin.park@samsung.com>
3318M: Heungjun Kim <riverful.kim@samsung.com>
3319L: linux-media@vger.kernel.org
3320S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003321F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003322F: include/media/m5mols.h
3323
Robert Gerlach2d24c492012-01-18 14:26:22 +01003324FUJITSU TABLET EXTRAS
3325M: Robert Gerlach <khnz@gmx.de>
3326L: platform-driver-x86@vger.kernel.org
3327S: Maintained
3328F: drivers/platform/x86/fujitsu-tablet.c
3329
Miklos Szeredi04578f12005-09-09 13:10:22 -07003330FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003331M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003332L: fuse-devel@lists.sourceforge.net
3333W: http://fuse.sourceforge.net/
3334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003335F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003336F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003337
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003339M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003341S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003342F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343
3344GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003345M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346L: linux-scsi@vger.kernel.org
3347W: http://www.icp-vortex.com/
3348S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003349F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003351GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003352M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003353S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003354F: drivers/i2c/busses/i2c-gpio.c
3355F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003356
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003357GENERIC GPIO I2C MULTIPLEXER DRIVER
3358M: Peter Korsgaard <peter.korsgaard@barco.com>
3359L: linux-i2c@vger.kernel.org
3360S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003361F: drivers/i2c/muxes/i2c-mux-gpio.c
3362F: include/linux/i2c-mux-gpio.h
3363F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003364
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003365GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003366M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003369F: drivers/net/wan/c101.c
3370F: drivers/net/wan/hd6457*
3371F: drivers/net/wan/hdlc*
3372F: drivers/net/wan/n2.c
3373F: drivers/net/wan/pc300too.c
3374F: drivers/net/wan/pci200syn.c
3375F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003377GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003378M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003379L: linux-arch@vger.kernel.org
3380T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3381S: Maintained
3382F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003383F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003384
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003385GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003386M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003387L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003388S: Supported
3389F: drivers/uio/uio_pci_generic.c
3390
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003391GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003392M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003393L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003394W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003395T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3396T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003397S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003398F: Documentation/filesystems/gfs2*.txt
3399F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003400F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003401
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003402GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003403M: Hansjoerg Lipp <hjlipp@web.de>
3404M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003405L: gigaset307x-common@lists.sourceforge.net
3406W: http://gigaset307x.sourceforge.net/
3407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003408F: Documentation/isdn/README.gigaset
3409F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003410F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003411
Grant Likelya0dc00b2011-02-12 01:48:14 -07003412GPIO SUBSYSTEM
3413M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003414M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003415S: Maintained
3416T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003417F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003418F: drivers/gpio/
3419F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003420F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003421
Harry Wei71a6d0a2011-05-11 15:13:33 -07003422GRE DEMULTIPLEXER DRIVER
3423M: Dmitry Kozlov <xeb@mail.ru>
3424L: netdev@vger.kernel.org
3425S: Maintained
3426F: net/ipv4/gre.c
3427F: include/net/gre.h
3428
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003429GRETH 10/100/1G Ethernet MAC device driver
3430M: Kristoffer Glembo <kristoffer@gaisler.com>
3431L: netdev@vger.kernel.org
3432S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003433F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003434
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003435GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003436M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003437L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003438T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003439S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003440F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003441
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003442GSPCA GL860 SUBDRIVER
3443M: Olivier Lorin <o.lorin@laposte.net>
3444L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003445T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003446S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003447F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003448
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003449GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003450M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003451L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003452T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003453S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003454F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003455
3456GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003457M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003458L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003459T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003460S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003461F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003462
Brian Johnson261982f2009-07-19 15:58:56 -03003463GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003464M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003465L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003466T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003467S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003468F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003469
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003470GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003471M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003472L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003473T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003474S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003475F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003476
3477GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003478M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003479L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003480T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003481S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003482F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003483
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003484STK1160 USB VIDEO CAPTURE DRIVER
3485M: Ezequiel Garcia <elezegarcia@gmail.com>
3486L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003487T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003488S: Maintained
3489F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003490
Harry Wei71a6d0a2011-05-11 15:13:33 -07003491HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3492M: Frank Seidel <frank@f-seidel.de>
3493L: platform-driver-x86@vger.kernel.org
3494W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3495S: Maintained
3496F: drivers/platform/x86/hdaps.c
3497
3498HWPOISON MEMORY FAILURE HANDLING
3499M: Andi Kleen <andi@firstfloor.org>
3500L: linux-mm@kvack.org
3501T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3502S: Maintained
3503F: mm/memory-failure.c
3504F: mm/hwpoison-inject.c
3505
3506HYPERVISOR VIRTUAL CONSOLE DRIVER
3507L: linuxppc-dev@lists.ozlabs.org
3508S: Odd Fixes
3509F: drivers/tty/hvc/
3510
Michael Buesch844dd052006-06-26 00:24:59 -07003511HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003512M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003513M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003514L: lm-sensors@lm-sensors.org
3515W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003516T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003517T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003518S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003519F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003520F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003521F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003522
3523HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003524M: Matt Mackall <mpm@selenic.com>
3525M: Herbert Xu <herbert@gondor.apana.org.au>
3526S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003527F: Documentation/hw_random.txt
3528F: drivers/char/hw_random/
3529F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003530
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003531HARDWARE SPINLOCK CORE
3532M: Ohad Ben-Cohen <ohad@wizery.com>
3533S: Maintained
3534F: Documentation/hwspinlock.txt
3535F: drivers/hwspinlock/hwspinlock_*
3536F: include/linux/hwspinlock.h
3537
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003539L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003541F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542
Antti Palosaari91952bc2012-10-01 12:28:46 -03003543HD29L2 MEDIA DRIVER
3544M: Antti Palosaari <crope@iki.fi>
3545L: linux-media@vger.kernel.org
3546W: http://linuxtv.org/
3547W: http://palosaari.fi/linux/
3548Q: http://patchwork.linuxtv.org/project/linux-media/list/
3549T: git git://linuxtv.org/anttip/media_tree.git
3550S: Maintained
3551F: drivers/media/dvb-frontends/hd29l2*
3552
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003553HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003554M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003555L: iss_storagedev@hp.com
3556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003557F: Documentation/blockdev/cpqarray.txt
3558F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003559
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003560HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003561M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003562L: iss_storagedev@hp.com
3563S: Supported
3564F: Documentation/scsi/hpsa.txt
3565F: drivers/scsi/hpsa*.[ch]
3566F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003567F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003568
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003569HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003570M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003571L: iss_storagedev@hp.com
3572S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003573F: Documentation/blockdev/cciss.txt
3574F: drivers/block/cciss*
3575F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003576F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003577
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003579L: linux-fsdevel@vger.kernel.org
3580S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003581F: Documentation/filesystems/hfs.txt
3582F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583
3584HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003585M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586L: linux-nvidia@lists.surfsouth.com
3587W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003589F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003591HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003592M: Pavel Machek <pavel@ucw.cz>
3593M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003594L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003595S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003596F: arch/x86/power/
3597F: drivers/base/power/
3598F: kernel/power/
3599F: include/linux/suspend.h
3600F: include/linux/freezer.h
3601F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003602F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003603
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003604HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003605M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003606L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003607T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003609F: drivers/hid/
3610F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003611F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003612
Ingo Molnar38bed542007-02-22 09:09:34 +01003613HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003614M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003615T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003617F: Documentation/timers/
3618F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003619F: kernel/time/clockevents.c
3620F: kernel/time/tick*.*
3621F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003622F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003623F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003624
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003627S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003628F: drivers/net/hamradio/dmascc.c
3629F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003631HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003632M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003633W: http://www.highpoint-tech.com
3634S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003635F: Documentation/scsi/hptiop.txt
3636F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003637
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003639M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640L: linux-hippi@sunsite.dk
3641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003642F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003643F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003644F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003645F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
Jouni Malinenff1d2762005-05-12 22:54:16 -04003647HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003648M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003649L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003650L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003651W: http://hostap.epitest.fi/
3652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003653F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003654
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003655HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003656L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003657S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003658F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003659
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003660HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003661M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003662S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003663F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003664
Joe Perches7d2c86b2009-04-07 20:59:01 -07003665HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003666M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003668F: Documentation/timers/hpet.txt
3669F: drivers/char/hpet.c
3670F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003671F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003672
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003673HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003674M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003676F: arch/x86/kernel/hpet.c
3677F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003678
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003680M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003683F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684
Joe Perches7d2c86b2009-04-07 20:59:01 -07003685HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003686M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003687W: http://www.pharscape.org
3688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003689F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003690
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003691HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003692M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003693L: linux-input@vger.kernel.org
3694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003695F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003696
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003698M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003700F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003702Hyper-V CORE AND DRIVERS
3703M: K. Y. Srinivasan <kys@microsoft.com>
3704M: Haiyang Zhang <haiyangz@microsoft.com>
3705L: devel@linuxdriverproject.org
3706S: Maintained
3707F: drivers/hv/
3708F: drivers/hid/hid-hyperv.c
3709F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003710
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003711I2C OVER PARALLEL PORT
3712M: Jean Delvare <khali@linux-fr.org>
3713L: linux-i2c@vger.kernel.org
3714S: Maintained
3715F: Documentation/i2c/busses/i2c-parport
3716F: Documentation/i2c/busses/i2c-parport-light
3717F: drivers/i2c/busses/i2c-parport.c
3718F: drivers/i2c/busses/i2c-parport-light.c
3719
3720I2C/SMBUS CONTROLLER DRIVERS FOR PC
3721M: Jean Delvare <khali@linux-fr.org>
3722L: linux-i2c@vger.kernel.org
3723S: Maintained
3724F: Documentation/i2c/busses/i2c-ali1535
3725F: Documentation/i2c/busses/i2c-ali1563
3726F: Documentation/i2c/busses/i2c-ali15x3
3727F: Documentation/i2c/busses/i2c-amd756
3728F: Documentation/i2c/busses/i2c-amd8111
3729F: Documentation/i2c/busses/i2c-i801
3730F: Documentation/i2c/busses/i2c-nforce2
3731F: Documentation/i2c/busses/i2c-piix4
3732F: Documentation/i2c/busses/i2c-sis5595
3733F: Documentation/i2c/busses/i2c-sis630
3734F: Documentation/i2c/busses/i2c-sis96x
3735F: Documentation/i2c/busses/i2c-via
3736F: Documentation/i2c/busses/i2c-viapro
3737F: drivers/i2c/busses/i2c-ali1535.c
3738F: drivers/i2c/busses/i2c-ali1563.c
3739F: drivers/i2c/busses/i2c-ali15x3.c
3740F: drivers/i2c/busses/i2c-amd756.c
3741F: drivers/i2c/busses/i2c-amd756-s4882.c
3742F: drivers/i2c/busses/i2c-amd8111.c
3743F: drivers/i2c/busses/i2c-i801.c
3744F: drivers/i2c/busses/i2c-isch.c
3745F: drivers/i2c/busses/i2c-nforce2.c
3746F: drivers/i2c/busses/i2c-nforce2-s4985.c
3747F: drivers/i2c/busses/i2c-piix4.c
3748F: drivers/i2c/busses/i2c-sis5595.c
3749F: drivers/i2c/busses/i2c-sis630.c
3750F: drivers/i2c/busses/i2c-sis96x.c
3751F: drivers/i2c/busses/i2c-via.c
3752F: drivers/i2c/busses/i2c-viapro.c
3753
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003754I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003755M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003756L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003757S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003758F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003759
Jean Delvare5b543962005-08-15 19:51:02 +02003760I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003761M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003762M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003763L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003764W: http://i2c.wiki.kernel.org/
3765T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003766T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003768F: Documentation/i2c/
3769F: drivers/i2c/
3770F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003771F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003772F: include/uapi/linux/i2c.h
3773F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003775I2C-TAOS-EVM DRIVER
3776M: Jean Delvare <khali@linux-fr.org>
3777L: linux-i2c@vger.kernel.org
3778S: Maintained
3779F: Documentation/i2c/busses/i2c-taos-evm
3780F: drivers/i2c/busses/i2c-taos-evm.c
3781
Till Harbaume8c76ee2007-05-01 23:26:35 +02003782I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003783M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003784L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003785W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003787F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003788
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003790M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003792F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793
3794i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003795M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003796T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797S: Maintained
3798
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003800M: Tony Luck <tony.luck@intel.com>
3801M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003803T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003805F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806
Kent Yoder956c2032012-09-07 04:17:01 +08003807IBM Power in-Nest Crypto Acceleration
3808M: Kent Yoder <key@linux.vnet.ibm.com>
3809L: linux-crypto@vger.kernel.org
3810S: Supported
3811F: drivers/crypto/nx/
3812
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003813IBM Power 842 compression accelerator
3814M: Robert Jennings <rcj@linux.vnet.ibm.com>
3815S: Supported
3816F: drivers/crypto/nx/nx-842.c
3817F: include/linux/nx842.h
3818
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003820M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003822F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Santiago Leon9d348af2010-09-03 18:29:53 +00003824IBM Power Virtual Ethernet Device Driver
3825M: Santiago Leon <santil@linux.vnet.ibm.com>
3826L: netdev@vger.kernel.org
3827S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003828F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003829
Robert Jennings4b7652c2012-07-31 12:34:36 -05003830IBM Power Virtual SCSI/FC Device Drivers
3831M: Robert Jennings <rcj@linux.vnet.ibm.com>
3832L: linux-scsi@vger.kernel.org
3833S: Supported
3834F: drivers/scsi/ibmvscsi/
3835X: drivers/scsi/ibmvscsi/ibmvstgt.c
3836
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837IBM ServeRAID RAID DRIVER
3838P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003839M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003841S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003842F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003844ICH LPC AND GPIO DRIVER
3845M: Peter Tyser <ptyser@xes-inc.com>
3846S: Maintained
3847F: drivers/mfd/lpc_ich.c
3848F: drivers/gpio/gpio-ich.c
3849
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003850IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003851M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003853Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003854T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003856F: Documentation/ide/
3857F: drivers/ide/
3858F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859
Ike Panhc6cb8c132011-08-25 22:28:45 +08003860IDEAPAD LAPTOP EXTRAS DRIVER
3861M: Ike Panhc <ike.pan@canonical.com>
3862L: platform-driver-x86@vger.kernel.org
3863W: http://launchpad.net/ideapad-laptop
3864S: Maintained
3865F: drivers/platform/x86/ideapad-laptop.c
3866
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003867IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003868M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003869L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003871F: Documentation/cdrom/ide-cd
3872F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873
Andy Henroid27471fd2008-10-09 11:45:22 -07003874IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003875M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003876L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003877S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003878F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003879
Sergey Lapin02cf2282009-06-08 12:18:50 +00003880IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003881M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003882M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003883L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003884W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003885T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003886S: Maintained
3887F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003888F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08003889F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003890
Sean Young40ad4a32012-11-19 10:32:53 -03003891IGUANAWORKS USB IR TRANSCEIVER
3892M: Sean Young <sean@mess.org>
3893L: linux-media@vger.kernel.org
3894S: Maintained
3895F: drivers/media/rc/iguanair.c
3896
Ameya Palande9545f862012-01-10 09:00:58 -08003897IIO SUBSYSTEM AND DRIVERS
3898M: Jonathan Cameron <jic23@cam.ac.uk>
3899L: linux-iio@vger.kernel.org
3900S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003901F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003902F: drivers/staging/iio/
3903
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003904IKANOS/ADI EAGLE ADSL USB DRIVER
3905M: Matthieu Castet <castet.matthieu@free.fr>
3906M: Stanislaw Gruszka <stf_xl@wp.pl>
3907S: Maintained
3908F: drivers/usb/atm/ueagle-atm.c
3909
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01003910INDUSTRY PACK SUBSYSTEM (IPACK)
3911M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
3912M: Jens Taprogge <jens.taprogge@taprogge.org>
3913M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3914L: industrypack-devel@lists.sourceforge.net
3915W: http://industrypack.sourceforge.net
3916S: Maintained
3917F: drivers/ipack/
3918
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003919INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003920M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003921S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003922F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003923
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003925L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003926S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003927F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928
3929INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003930M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003931M: Sean Hefty <sean.hefty@intel.com>
3932M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003933L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003934W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003935Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003936T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003938F: Documentation/infiniband/
3939F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003940F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
Robert Lovec9f04f52005-07-15 12:21:07 -04003942INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003943M: John McCutchan <john@johnmccutchan.com>
3944M: Robert Love <rlove@rlove.org>
3945M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003947F: Documentation/filesystems/inotify.txt
3948F: fs/notify/inotify/
3949F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003950F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003951
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003952INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003953M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3954M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003955L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003956Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003957T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003959F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003960F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003961F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003962F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003963
Henrik Rydberg3267a872010-06-24 19:10:40 -07003964INPUT MULTITOUCH (MT) PROTOCOL
3965M: Henrik Rydberg <rydberg@euromail.se>
3966L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003967T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003968S: Maintained
3969F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003970F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003971K: \b(ABS|SYN)_MT_
3972
Dave Jiang4ac13e12011-07-29 17:16:55 -07003973INTEL C600 SERIES SAS CONTROLLER DRIVER
3974M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003975M: Lukasz Dorau <lukasz.dorau@intel.com>
3976M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003977M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003978L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003979T: git git://git.code.sf.net/p/intel-sas/isci
3980S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003981F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07003982
Len Brown26717172010-03-08 14:07:30 -05003983INTEL IDLE DRIVER
3984M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003985L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003986T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003987S: Supported
3988F: drivers/idle/intel_idle.c
3989
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003990INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003991M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003992L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003994F: Documentation/fb/intelfb.txt
3995F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003996
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003998M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003999L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004001F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304003INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004004M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004005L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304006W: http://www.lesswatts.org/projects/acpi/
4007S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004008F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304009
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004011M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004013F: arch/x86/kernel/microcode_core.c
4014F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004016INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004017M: Dan Williams <djbw@fb.com>
4018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004019F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004020
David Woodhouse6c8909b2008-10-18 16:12:17 +01004021INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004022M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004023L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004024T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004025S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004026F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004027F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004028
Dan Williamsb3e5f262007-08-07 10:26:35 -07004029INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004030M: Dan Williams <djbw@fb.com>
4031S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004032F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004033
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004034INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004035M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004037F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4038F: arch/arm/mach-ixp4xx/include/mach/npe.h
4039F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4040F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004041F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004042F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004043
Michael Buesch844dd052006-06-26 00:24:59 -07004044INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004045M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004047F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004048
Jeff Kirsher0d164402010-10-05 01:15:17 +00004049INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004050M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4051M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4052M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004053M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4054M: Don Skidmore <donald.c.skidmore@intel.com>
4055M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004056M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004057M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004058M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004059M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004060L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004061W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004062W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004063T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4064T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004066F: Documentation/networking/e100.txt
4067F: Documentation/networking/e1000.txt
4068F: Documentation/networking/e1000e.txt
4069F: Documentation/networking/igb.txt
4070F: Documentation/networking/igbvf.txt
4071F: Documentation/networking/ixgb.txt
4072F: Documentation/networking/ixgbe.txt
4073F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004074F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004076INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4077M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004078L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004080F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004081F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004082F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004083
Shane Wang4bd96a72010-03-10 14:36:10 +08004084INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004085M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4086M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004087M: Shane Wang <shane.wang@intel.com>
4088L: tboot-devel@lists.sourceforge.net
4089W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004090T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004091S: Supported
4092F: Documentation/intel_txt.txt
4093F: include/linux/tboot.h
4094F: arch/x86/kernel/tboot.c
4095
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004096INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004097M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004098M: linux-wimax@intel.com
4099L: wimax@linuxwimax.org
4100S: Supported
4101W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004102F: Documentation/wimax/README.i2400m
4103F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004104F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004105
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004106INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4107M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004108L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004109S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004110F: drivers/net/wireless/iwlegacy/
4111
Zhu Yib481de92007-09-25 17:54:57 -07004112INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004113M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004114M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004115M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004116L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004117W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004118T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004119S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004120F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004121
Tomas Winklerde8fe022012-05-09 16:39:02 +03004122INTEL MANAGEMENT ENGINE (mei)
4123M: Tomas Winkler <tomas.winkler@intel.com>
4124L: linux-kernel@vger.kernel.org
4125S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004126F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004127F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08004128F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004129
Ralf Baechlecb109a02007-08-30 23:56:30 -07004130IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004131M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132L: linux-mips@linux-mips.org
4133S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004134F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
Ralf Baechlecb109a02007-08-30 23:56:30 -07004136IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004137M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004138L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004139S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004140F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004141
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004142IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004143M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004145F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146
Francois Romieu1202d6f2007-09-17 17:13:55 -07004147IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004148M: Francois Romieu <romieu@fr.zoreil.com>
4149M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004150L: netdev@vger.kernel.org
4151S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004152F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004153
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004154IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004155M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004156L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004158F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004159
Corey Minyard4409ebe2006-04-20 02:43:12 -07004160IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004161M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004162L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004163W: http://openipmi.sourceforge.net/
4164S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004165F: Documentation/IPMI.txt
4166F: drivers/char/ipmi/
4167F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004168F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004169
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004170IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004171M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004172L: linux-scsi@vger.kernel.org
4173W: http://www.adaptec.com/
4174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004175F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004176
4177IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004178M: Wensong Zhang <wensong@linux-vs.org>
4179M: Simon Horman <horms@verge.net.au>
4180M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004181L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004182L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004184F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004185F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004186F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004187F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188
Randy Dunlape7839f22008-10-12 16:11:45 -07004189IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004190M: Jiri Kosina <jkosina@suse.cz>
4191M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004192S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004193F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004194
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004195IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004196M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004197L: netdev@vger.kernel.org
4198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004199F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004200F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004201F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004202
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004204M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004205L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004206L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004208S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004209T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004210F: Documentation/networking/irda.txt
4211F: drivers/net/irda/
4212F: include/net/irda/
4213F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004215IRQ SUBSYSTEM
4216M: Thomas Gleixner <tglx@linutronix.de>
4217S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004218T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004219F: kernel/irq/
4220
Grant Likely7ab3a832012-02-14 14:06:47 -07004221IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4222M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4223M: Grant Likely <grant.likely@secretlab.ca>
4224T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4225S: Maintained
4226F: Documentation/IRQ-domain.txt
4227F: include/linux/irqdomain.h
4228F: kernel/irq/irqdomain.c
4229
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004230ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004231M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004233F: Documentation/isapnp.txt
4234F: drivers/pnp/isapnp/
4235F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004236
Harry Wei71a6d0a2011-05-11 15:13:33 -07004237iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4238M: Peter Jones <pjones@redhat.com>
4239M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4240S: Maintained
4241F: drivers/firmware/iscsi_ibft*
4242
Mike Christie14816b1e2007-11-28 16:22:06 -08004243ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004244M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004245L: open-iscsi@googlegroups.com
4246W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004247T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004249F: drivers/scsi/*iscsi*
4250F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004251
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004253M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004254L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004255L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004257T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004259F: Documentation/isdn/
4260F: drivers/isdn/
4261F: include/linux/isdn.h
4262F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004263F: include/uapi/linux/isdn.h
4264F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265
4266ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004267M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004268L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269W: http://www.melware.de
4270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004271F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272
Jean Delvared6248702010-03-05 22:17:20 +01004273IT87 HARDWARE MONITORING DRIVER
4274M: Jean Delvare <khali@linux-fr.org>
4275L: lm-sensors@lm-sensors.org
4276S: Maintained
4277F: Documentation/hwmon/it87
4278F: drivers/hwmon/it87.c
4279
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004280IT913X MEDIA DRIVER
4281M: Malcolm Priestley <tvboxspy@gmail.com>
4282L: linux-media@vger.kernel.org
4283W: http://linuxtv.org/
4284Q: http://patchwork.linuxtv.org/project/linux-media/list/
4285S: Maintained
4286F: drivers/media/usb/dvb-usb-v2/it913x*
4287
4288IT913X FE MEDIA DRIVER
4289M: Malcolm Priestley <tvboxspy@gmail.com>
4290L: linux-media@vger.kernel.org
4291W: http://linuxtv.org/
4292Q: http://patchwork.linuxtv.org/project/linux-media/list/
4293S: Maintained
4294F: drivers/media/dvb-frontends/it913x-fe*
4295
Hans Verkuil91821ff2007-12-02 09:35:33 -03004296IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004297M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004298L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004299L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004300T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004301W: http://www.ivtvdriver.org
4302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004303F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004304F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004305F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004306
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004307IX2505V MEDIA DRIVER
4308M: Malcolm Priestley <tvboxspy@gmail.com>
4309L: linux-media@vger.kernel.org
4310W: http://linuxtv.org/
4311Q: http://patchwork.linuxtv.org/project/linux-media/list/
4312S: Maintained
4313F: drivers/media/dvb-frontends/ix2505v*
4314
Guenter Roeck4453d732010-08-09 17:21:08 -07004315JC42.4 TEMPERATURE SENSOR DRIVER
4316M: Guenter Roeck <linux@roeck-us.net>
4317L: lm-sensors@lm-sensors.org
4318S: Maintained
4319F: drivers/hwmon/jc42.c
4320F: Documentation/hwmon/jc42
4321
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004322JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004323M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004324L: jfs-discussion@lists.sourceforge.net
4325W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004326T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004328F: Documentation/filesystems/jfs.txt
4329F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004330
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004331JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004332M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004333L: netdev@vger.kernel.org
4334S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004335F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004336
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004338M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004339L: linux-mtd@lists.infradead.org
4340W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004342F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004343F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344
Josh Triplettde456d32006-07-30 03:04:00 -07004345JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004346M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004347M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004348L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004349S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004350F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004351F: include/linux/jbd.h
4352
4353JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4354M: "Theodore Ts'o" <tytso@mit.edu>
4355L: linux-ext4@vger.kernel.org
4356S: Maintained
4357F: fs/jbd2/
4358F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004359
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004360JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004361M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004362L: linux-serial@vger.kernel.org
4363S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004364F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004365
Clemens Ladischaf399172011-01-10 16:32:54 +01004366K10TEMP HARDWARE MONITORING DRIVER
4367M: Clemens Ladisch <clemens@ladisch.de>
4368L: lm-sensors@lm-sensors.org
4369S: Maintained
4370F: Documentation/hwmon/k10temp
4371F: drivers/hwmon/k10temp.c
4372
Rudolf Marek4660cb32006-10-08 22:01:26 +02004373K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004374M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004375L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004377F: Documentation/hwmon/k8temp
4378F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
4380KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004381M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004382L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004383S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004384F: Documentation/kbuild/kconfig-language.txt
4385F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386
Vivek Goyalea6c2082006-05-20 14:59:55 -07004387KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004388M: Vivek Goyal <vgoyal@redhat.com>
4389M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004390L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004391W: http://lse.sourceforge.net/kdump/
4392S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004393F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004394
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004396M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004397L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004399F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400
Michal Marek70fb7ba2010-01-29 14:22:43 +01004401KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004402M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004403T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4404T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004405L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004407F: Documentation/kbuild/
4408F: Makefile
4409F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004410F: scripts/basic/
4411F: scripts/mk*
4412F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413
4414KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004415L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004416W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004417S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004419KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004420M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004421L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004423S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004424F: fs/nfsd/
4425F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004426F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004427F: fs/lockd/
4428F: fs/nfs_common/
4429F: net/sunrpc/
4430F: include/linux/lockd/
4431F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004432F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433
Avi Kivity426d62e2006-12-13 00:34:03 -08004434KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004435M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004436M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004437L: kvm@vger.kernel.org
4438W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004439S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004440F: Documentation/*/kvm.txt
4441F: arch/*/kvm/
4442F: arch/*/include/asm/kvm*
4443F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004444F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004445F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004446
Joerg Roedelad8003d2008-09-10 20:01:07 +02004447KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004448M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004449L: kvm@vger.kernel.org
4450W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004452F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004453F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004454
Hollis Blanchard513014b2008-04-16 23:28:08 -05004455KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004456M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004457L: kvm-ppc@vger.kernel.org
4458W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004459T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004460S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004461F: arch/powerpc/include/asm/kvm*
4462F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004463
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004464KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004465M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004466L: kvm-ia64@vger.kernel.org
4467W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004468S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004469F: Documentation/ia64/kvm.txt
4470F: arch/ia64/include/asm/kvm*
4471F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004472
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004473KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004474M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004475M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004476M: linux390@de.ibm.com
4477L: linux-s390@vger.kernel.org
4478W: http://www.ibm.com/developerworks/linux/linux390/
4479S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004480F: Documentation/s390/kvm.txt
4481F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004482F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004483F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004484
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004485KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004486M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004487W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004488L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004490F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004491F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004492F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004493
David Howellse9714612010-03-29 23:42:09 +01004494KEYS/KEYRINGS:
4495M: David Howells <dhowells@redhat.com>
4496L: keyrings@linux-nfs.org
4497S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004498F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004499F: include/linux/key.h
4500F: include/linux/key-type.h
4501F: include/keys/
4502F: security/keys/
4503
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004504KEYS-TRUSTED
4505M: David Safford <safford@watson.ibm.com>
4506M: Mimi Zohar <zohar@us.ibm.com>
4507L: linux-security-module@vger.kernel.org
4508L: keyrings@linux-nfs.org
4509S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004510F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004511F: include/keys/trusted-type.h
4512F: security/keys/trusted.c
4513F: security/keys/trusted.h
4514
4515KEYS-ENCRYPTED
4516M: Mimi Zohar <zohar@us.ibm.com>
4517M: David Safford <safford@watson.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/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004523F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004524
Jason Wessel5b778da2010-05-20 21:04:28 -05004525KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004526M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004527W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004528L: kgdb-bugreport@lists.sourceforge.net
4529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004530F: Documentation/DocBook/kgdb.tmpl
4531F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004532F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004533F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004534F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004535F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004536
Pekka Enberg456db8c2008-04-28 22:47:29 +03004537KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004538M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004539M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004540S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004541F: Documentation/kmemcheck.txt
4542F: arch/x86/include/asm/kmemcheck.h
4543F: arch/x86/mm/kmemcheck/
4544F: include/linux/kmemcheck.h
4545F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004546
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004547KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004548M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004549S: Maintained
4550F: Documentation/kmemleak.txt
4551F: include/linux/kmemleak.h
4552F: mm/kmemleak.c
4553F: mm/kmemleak-test.c
4554
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004555KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004556M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4557M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4558M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004559M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004561F: Documentation/kprobes.txt
4562F: include/linux/kprobes.h
4563F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004564
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004565KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004566M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004567W: http://miguelojeda.es/auxdisplay.htm
4568W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004570F: Documentation/auxdisplay/ks0108
4571F: drivers/auxdisplay/ks0108.c
4572F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004573
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004576S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004577F: Documentation/networking/lapb-module.txt
4578F: include/*/lapb.h
4579F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580
4581LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004582M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583L: linux-scsi@vger.kernel.org
4584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004585F: Documentation/scsi/53c700.txt
4586F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587
Richard Purdie263de9b2006-05-15 09:44:16 -07004588LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004589M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004590M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004591L: linux-leds@vger.kernel.org
4592T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004594F: drivers/leds/
4595F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004596
Jean Delvareb0461a42011-06-15 15:08:46 -07004597LEGACY EEPROM DRIVER
4598M: Jean Delvare <khali@linux-fr.org>
4599S: Maintained
4600F: Documentation/misc-devices/eeprom
4601F: drivers/misc/eeprom/eeprom.c
4602
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004604M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605L: legousb-devel@lists.sourceforge.net
4606W: http://legousb.sourceforge.net/
4607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004608F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609
Michael Krufky055616a2012-10-02 00:56:06 -03004610LG2160 MEDIA DRIVER
4611M: Michael Krufky <mkrufky@linuxtv.org>
4612L: linux-media@vger.kernel.org
4613W: http://linuxtv.org/
4614W: http://github.com/mkrufky
4615Q: http://patchwork.linuxtv.org/project/linux-media/list/
4616T: git git://linuxtv.org/mkrufky/tuners.git
4617S: Maintained
4618F: drivers/media/dvb-frontends/lg2160.*
4619
Michael Krufky6f0e7722012-10-02 00:56:00 -03004620LGDT3305 MEDIA DRIVER
4621M: Michael Krufky <mkrufky@linuxtv.org>
4622L: linux-media@vger.kernel.org
4623W: http://linuxtv.org/
4624W: http://github.com/mkrufky
4625Q: http://patchwork.linuxtv.org/project/linux-media/list/
4626T: git git://linuxtv.org/mkrufky/tuners.git
4627S: Maintained
4628F: drivers/media/dvb-frontends/lgdt3305.*
4629
Rusty Russell568a17f2007-10-25 14:12:24 +10004630LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004631M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004632L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004633W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004634S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004635F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004636F: arch/x86/lguest/
4637F: drivers/lguest/
4638F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004639F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004640
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004642M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643W: http://www.ibm.com/linux/ltc/projects/ppc
4644S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004645F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004647LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004648M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4649M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004651L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004652Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004653T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004655F: Documentation/powerpc/
4656F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657
4658LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004659M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004661L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004663F: arch/powerpc/platforms/powermac/
4664F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665
Grant Likely77a76362008-07-12 12:11:43 -06004666LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004667M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004668L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004669T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004671F: arch/powerpc/platforms/512x/
4672F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673
4674LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004675M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004676M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004678L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004679T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004681F: arch/powerpc/platforms/40x/
4682F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683
Grant Likely260c02a2007-10-02 12:15:34 +10004684LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004685M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004686W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004687L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004688T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004690F: arch/powerpc/*/*virtex*
4691F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692
Tom Rinie93adf12005-07-26 12:49:53 -07004693LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004694M: Vitaly Bordug <vitb@kernel.crashing.org>
4695M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004696W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004697L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004698S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004699F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004700
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004702M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004703W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004704L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004705S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004706F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004707F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708
Olof Johanssonab06ff32006-09-06 14:44:54 -05004709LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004710M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004711L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004712S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004713F: arch/powerpc/platforms/pasemi/
4714F: drivers/*/*pasemi*
4715F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004716
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004718M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004719L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720S: Supported
4721
Harry Weia23ce6d2011-02-11 16:52:20 +01004722LIS3LV02D ACCELEROMETER DRIVER
4723M: Eric Piel <eric.piel@tremplin-utc.net>
4724S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004725F: Documentation/misc-devices/lis3lv02d
4726F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004727F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004728
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004729LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004730M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004732F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004733F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004734F: include/net/llc*
4735F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004736
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004737LM73 HARDWARE MONITOR DRIVER
4738M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4739L: lm-sensors@lm-sensors.org
4740S: Maintained
4741F: drivers/hwmon/lm73.c
4742
Jean Delvare156e2d12011-07-25 21:46:11 +02004743LM78 HARDWARE MONITOR DRIVER
4744M: Jean Delvare <khali@linux-fr.org>
4745L: lm-sensors@lm-sensors.org
4746S: Maintained
4747F: Documentation/hwmon/lm78
4748F: drivers/hwmon/lm78.c
4749
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004751M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004752L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004754F: Documentation/hwmon/lm83
4755F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756
4757LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004758M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004759L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004761F: Documentation/hwmon/lm90
4762F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004764LME2510 MEDIA DRIVER
4765M: Malcolm Priestley <tvboxspy@gmail.com>
4766L: linux-media@vger.kernel.org
4767W: http://linuxtv.org/
4768Q: http://patchwork.linuxtv.org/project/linux-media/list/
4769S: Maintained
4770F: drivers/media/usb/dvb-usb-v2/lmedm04*
4771
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004772LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004773M: Peter Zijlstra <peterz@infradead.org>
4774M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004775T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004777F: Documentation/lockdep*.txt
4778F: Documentation/lockstat.txt
4779F: include/linux/lockdep.h
4780F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004781
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004782LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004783M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004784L: linux-ntfs-dev@lists.sourceforge.net
4785W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004787F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004788F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789
Joern Engelef6ada32009-11-20 22:17:12 +01004790LogFS
4791M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304792M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004793L: logfs@logfs.org
4794W: logfs.org
4795S: Maintained
4796F: fs/logfs/
4797
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004798LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304799M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4800M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004801M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004802L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004803L: linux-scsi@vger.kernel.org
4804W: http://www.lsilogic.com/support
4805S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004806F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304807F: drivers/scsi/mpt2sas/
4808F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004809
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004811M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812L: linux-scsi@vger.kernel.org
4813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004814F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815
Guenter Roecke5f5c992010-06-25 11:59:54 -07004816LTC4261 HARDWARE MONITOR DRIVER
4817M: Guenter Roeck <linux@roeck-us.net>
4818L: lm-sensors@lm-sensors.org
4819S: Maintained
4820F: Documentation/hwmon/ltc4261
4821F: drivers/hwmon/ltc4261.c
4822
Mike Frysinger81365c32008-10-29 14:01:12 -07004823LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004824M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004825M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004826M: Cyril Hrubis <chrubis@suse.cz>
4827M: Caspar Zhang <caspar@casparzhang.com>
4828M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004829L: ltp-list@lists.sourceforge.net (subscribers-only)
4830W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004831T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004832T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004833S: Maintained
4834
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004835M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004836M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004837L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004838L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4839W: http://www.linux-m32r.org/
4840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004841F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004842
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004844M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845L: linux-m68k@lists.linux-m68k.org
4846W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004847T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004849F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004850F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851
4852M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004853M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004855L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004857F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858
4859M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004860M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861W: http://www.tazenda.demon.co.uk/phil/linux-hp
4862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004863F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004865M88RS2000 MEDIA DRIVER
4866M: Malcolm Priestley <tvboxspy@gmail.com>
4867L: linux-media@vger.kernel.org
4868W: http://linuxtv.org/
4869Q: http://patchwork.linuxtv.org/project/linux-media/list/
4870S: Maintained
4871F: drivers/media/dvb-frontends/m88rs2000*
4872
Jiri Benc64a327a2007-05-05 11:47:08 -07004873MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004874M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004875L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004876W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004877T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4878T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004880F: Documentation/networking/mac80211-injection.txt
4881F: include/net/mac80211.h
4882F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004883
Stefano Brivio1036d862007-12-23 04:46:27 +01004884MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004885M: Stefano Brivio <stefano.brivio@polimi.it>
4886M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004887L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004888W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004889T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4890T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004892F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004893
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004894MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004895M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004896L: netdev@vger.kernel.org
4897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004898F: drivers/net/macvlan.c
4899F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004900
Michael Kerriskfaf16682005-07-31 22:34:47 -07004901MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004902M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004903W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004904L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004905S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004906
stephen hemminger44c14c12012-04-02 12:59:47 +00004907MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4908M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08004909M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00004910L: netdev@vger.kernel.org
4911S: Maintained
4912F: drivers/net/ethernet/marvell/sk*
4913
Stefano Brivio74cda162007-11-19 20:27:46 +01004914MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004915M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004916L: libertas-dev@lists.infradead.org
4917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004918F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004919
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004920MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004921M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004922L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004923S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004924F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004925F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02004927MARVELL MVNETA ETHERNET DRIVER
4928M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4929L: netdev@vger.kernel.org
4930S: Maintained
4931F: drivers/net/ethernet/marvell/mvneta.*
4932
Bing Zhaofcad5842011-07-13 13:11:58 -07004933MARVELL MWIFIEX WIRELESS DRIVER
4934M: Bing Zhao <bzhao@marvell.com>
4935L: linux-wireless@vger.kernel.org
4936S: Maintained
4937F: drivers/net/wireless/mwifiex/
4938
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004939MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004940M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004941L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004942S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004943F: drivers/net/wireless/mwl8k.c
4944
Pierre Ossman2a695672009-03-16 19:52:26 +01004945MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004946M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004947S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004948F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004949
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004951L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004952S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004953F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004954F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955
Guenter Roeckca462082012-06-01 23:28:23 -07004956MAX16065 HARDWARE MONITOR DRIVER
4957M: Guenter Roeck <linux@roeck-us.net>
4958L: lm-sensors@lm-sensors.org
4959S: Maintained
4960F: Documentation/hwmon/max16065
4961F: drivers/hwmon/max16065.c
4962
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004963MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004964M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004965L: lm-sensors@lm-sensors.org
4966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004967F: Documentation/hwmon/max6650
4968F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004969
Joe Perches127c49a2009-04-08 08:34:04 -07004970MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004971M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07004972P: LinuxTV.org Project
4973L: linux-media@vger.kernel.org
4974W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004975Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004976T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07004977S: Maintained
4978F: Documentation/dvb/
4979F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004980F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004981F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004982F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004983F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02004984F: include/uapi/linux/dvb/
4985F: include/uapi/linux/videodev2.h
4986F: include/uapi/linux/media.h
4987F: include/uapi/linux/v4l2-*
4988F: include/uapi/linux/meye.h
4989F: include/uapi/linux/ivtv*
4990F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004991
4992MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004993M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004994L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004995W: http://megaraid.lsilogic.com
4996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004997F: Documentation/scsi/megaraid.txt
4998F: drivers/scsi/megaraid.*
4999F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005000
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005001MELLANOX ETHERNET DRIVER (mlx4_en)
5002M: Amir Vadai <amirv@mellanox.com>
5003L: netdev@vger.kernel.org
5004S: Supported
5005W: http://www.mellanox.com
5006Q: http://patchwork.ozlabs.org/project/netdev/list/
5007F: drivers/net/ethernet/mellanox/mlx4/en_*
5008
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005009MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011W: http://www.linux-mm.org
5012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005013F: include/linux/mm.h
5014F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005015
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005016MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005017M: Johannes Weiner <hannes@cmpxchg.org>
5018M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005019M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005020M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005021L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005022L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005024F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005025F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005026
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005028M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005030W: http://www.linux-mtd.infradead.org/
5031Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08005032T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005034F: drivers/mtd/
5035F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005036F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037
Michal Simekc6375b02009-03-27 14:25:52 +01005038MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005039M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005040L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005041W: http://www.monstr.eu/fdt/
5042T: git git://git.monstr.eu/linux-2.6-microblaze.git
5043S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005044F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045
5046MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005047M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005049F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050
5051MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005052M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005054W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005055T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005056Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005057S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005058F: Documentation/mips/
5059F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005062M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005064F: include/linux/module.h
5065F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066
5067MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005069S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005070F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005071F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005072F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073
Jiri Slabyb9705b62008-04-30 00:53:48 -07005074MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005075M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005077F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005078F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005079
Alexey Klimov889b2f82012-11-16 17:43:59 -03005080MR800 AVERMEDIA USB FM RADIO DRIVER
5081M: Alexey Klimov <klimov.linux@gmail.com>
5082L: linux-media@vger.kernel.org
5083T: git git://linuxtv.org/media_tree.git
5084S: Maintained
5085F: drivers/media/radio/radio-mr800.c
5086
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005087MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005088M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005089L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005091F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005092
Anisse Astier0f1006b2009-12-17 11:28:49 +01005093MSI WMI SUPPORT
5094M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005095L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005096S: Supported
5097F: drivers/platform/x86/msi-wmi.c
5098
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005099MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005100M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005101T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005102S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005103F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005104
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005105MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005106M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005107L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005108T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005110F: drivers/mmc/
5111F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005112F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005113
David Brownell15a05802007-08-08 09:12:54 -07005114MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005115S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005116F: drivers/mmc/host/mmc_spi.c
5117F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005118
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005120M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005122F: Documentation/sound/oss/MultiSound
5123F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124
Jiri Slabyd7354102006-12-08 02:38:35 -08005125MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005126S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005127F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005128F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005129
Felipe Balbi550a7372008-07-24 12:27:36 +03005130MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005131M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005132L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005133T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005135F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005136
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005137MXL5007T MEDIA DRIVER
5138M: Michael Krufky <mkrufky@linuxtv.org>
5139L: linux-media@vger.kernel.org
5140W: http://linuxtv.org/
5141W: http://github.com/mkrufky
5142Q: http://patchwork.linuxtv.org/project/linux-media/list/
5143T: git git://linuxtv.org/mkrufky/tuners.git
5144S: Maintained
5145F: drivers/media/tuners/mxl5007t.*
5146
Brice Goglin2d3cf582008-05-17 12:45:36 +02005147MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005148M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005149L: netdev@vger.kernel.org
5150W: http://www.myri.com/scs/download-Myri10GE.html
5151S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005152F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005153
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005155S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005156F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157
Daniel Mack23dc05a2011-05-18 11:28:38 +02005158NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5159M: Daniel Mack <zonque@gmail.com>
5160S: Maintained
5161L: alsa-devel@alsa-project.org
5162W: http://www.native-instruments.com
5163F: sound/usb/caiaq/
5164
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005166M: Petr Vandrovec <petr@vandrovec.name>
5167S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005168F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169
5170NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005171M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172L: linux-scsi@vger.kernel.org
5173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005174F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005176NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005177M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005178L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005179W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005180S: Supported
5181F: drivers/infiniband/hw/nes/
5182
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005183NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005184M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005185L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005187F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005188
Jon Masonb2f5a052010-07-15 08:47:27 +00005189NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005190M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005191L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005192S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005193F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005194F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005195F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005196
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198P: Harald Welte
5199P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005200M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005201M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005202L: netfilter-devel@vger.kernel.org
5203L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005204L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205W: http://www.netfilter.org/
5206W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005207T: git git://1984.lsi.us.es/nf
5208T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005210F: include/linux/netfilter*
5211F: include/linux/netfilter/
5212F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005213F: include/uapi/linux/netfilter*
5214F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005215F: net/*/netfilter.c
5216F: net/*/netfilter/
5217F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218
Paul Moore4cc67732006-09-25 15:57:13 -07005219NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005220M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005221W: http://netlabel.sf.net
5222L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005223S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005224F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005225F: include/net/netlabel.h
5226F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005227
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005229M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005231W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005233F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005234F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005235F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005237NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005238M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005240F: Documentation/blockdev/nbd.txt
5241F: drivers/block/nbd.c
5242F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005243F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244
Neil Horman6e436502009-10-05 03:56:55 +00005245NETWORK DROP MONITOR
5246M: Neil Horman <nhorman@tuxdriver.com>
5247L: netdev@vger.kernel.org
5248S: Maintained
5249W: https://fedorahosted.org/dropwatch/
5250F: net/core/drop_monitor.c
5251
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005253M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005254L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005255W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005256Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005257T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5258T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005260F: net/
5261F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005262F: include/linux/in.h
5263F: include/linux/net.h
5264F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005265F: include/uapi/linux/in.h
5266F: include/uapi/linux/net.h
5267F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268
5269NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005270M: "David S. Miller" <davem@davemloft.net>
5271M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005272M: James Morris <jmorris@namei.org>
5273M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5274M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005275L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005276T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005278F: net/ipv4/
5279F: net/ipv6/
5280F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005281F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282
David S. Miller73b76562012-10-16 14:08:40 -04005283NETWORKING [IPSEC]
5284M: Steffen Klassert <steffen.klassert@secunet.com>
5285M: Herbert Xu <herbert@gondor.apana.org.au>
5286M: "David S. Miller" <davem@davemloft.net>
5287L: netdev@vger.kernel.org
5288T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5289S: Maintained
5290F: net/xfrm/
5291F: net/key/
5292F: net/ipv4/xfrm*
5293F: net/ipv6/xfrm*
5294F: include/uapi/linux/xfrm.h
5295F: include/net/xfrm.h
5296
James Morris10e2ff12007-08-25 14:41:28 -07005297NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005298M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005299L: netdev@vger.kernel.org
5300S: Maintained
5301
John W. Linville29f8f632006-01-18 14:52:48 -08005302NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005303M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005304L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005305Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005306T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005307S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005308F: net/mac80211/
5309F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005310F: net/wireless/
5311F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005312F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005313F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005314F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005315F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005316
Joe Perches788873a2009-04-16 09:38:45 +00005317NETWORKING DRIVERS
5318L: netdev@vger.kernel.org
5319W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005320Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005321T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5322T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005323S: Odd Fixes
5324F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005325F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005326F: include/linux/netdevice.h
5327F: include/linux/arcdevice.h
5328F: include/linux/etherdevice.h
5329F: include/linux/fcdevice.h
5330F: include/linux/fddidevice.h
5331F: include/linux/hippidevice.h
5332F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005333F: include/uapi/linux/if_*
5334F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005335
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005336NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005337M: Sony Chacko <sony.chacko@qlogic.com>
5338M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005339L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005340W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005341S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005342F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005343
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005344NFC SUBSYSTEM
5345M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5346M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5347M: Samuel Ortiz <sameo@linux.intel.com>
5348L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005349L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005350S: Maintained
5351F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005352F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005353F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005354F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005355F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005357NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005358M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005359L: linux-nfs@vger.kernel.org
5360W: http://client.linux-nfs.org
5361T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005363F: fs/lockd/
5364F: fs/nfs/
5365F: fs/nfs_common/
5366F: net/sunrpc/
5367F: include/linux/lockd/
5368F: include/linux/nfs*
5369F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005370F: include/uapi/linux/nfs*
5371F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372
5373NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005374M: Jan-Pascal van Best <janpascal@vanbest.org>
5375M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005376L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005378F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005380NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005381M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005382L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005383W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005384T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005385S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005386F: Documentation/filesystems/nilfs2.txt
5387F: fs/nilfs2/
5388F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005389
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005391M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005394F: Documentation/scsi/NinjaSCSI.txt
5395F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396
5397NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005398M: GOTO Masanori <gotom@debian.or.jp>
5399M: 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/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005406M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005408W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005409T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005410S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005411F: Documentation/filesystems/ntfs.txt
5412F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005414NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005415M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005416L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005418F: drivers/video/riva/
5419F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420
Tony Lindgrenf5525782009-05-28 13:23:53 -07005421OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005422M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005423L: linux-omap@vger.kernel.org
5424W: http://www.muru.com/linux/omap/
5425W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005426Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005427T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005428S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005429F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005430F: drivers/i2c/busses/i2c-omap.c
5431F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005432
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005433OMAP DEVICE TREE SUPPORT
5434M: Benoît Cousson <b-cousson@ti.com>
5435M: Tony Lindgren <tony@atomide.com>
5436L: linux-omap@vger.kernel.org
5437L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5438S: Maintained
5439F: arch/arm/boot/dts/*omap*
5440F: arch/arm/boot/dts/*am3*
5441
Tony Lindgrenf5525782009-05-28 13:23:53 -07005442OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005443M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005444L: linux-omap@vger.kernel.org
5445S: Maintained
5446F: arch/arm/*omap*/*clock*
5447
5448OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005449M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005450L: linux-omap@vger.kernel.org
5451S: Maintained
5452F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005453F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005454
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005455OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5456M: Rajendra Nayak <rnayak@ti.com>
5457M: Paul Walmsley <paul@pwsan.com>
5458L: linux-omap@vger.kernel.org
5459S: Maintained
5460F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5461F: arch/arm/mach-omap2/powerdomain44xx.c
5462F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5463F: arch/arm/mach-omap2/clockdomain44xx.c
5464
Tony Lindgrenf5525782009-05-28 13:23:53 -07005465OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005466M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005467M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005468L: alsa-devel@alsa-project.org (subscribers-only)
5469L: linux-omap@vger.kernel.org
5470S: Maintained
5471F: sound/soc/omap/
5472
5473OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005474M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005475L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005476L: linux-omap@vger.kernel.org
5477S: Maintained
5478F: drivers/video/omap/
5479
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005480OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005481M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005482L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005483L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005484S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005485F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005486F: Documentation/arm/OMAP/DSS
5487
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005488OMAP HARDWARE SPINLOCK SUPPORT
5489M: Ohad Ben-Cohen <ohad@wizery.com>
5490L: linux-omap@vger.kernel.org
5491S: Maintained
5492F: drivers/hwspinlock/omap_hwspinlock.c
5493F: arch/arm/mach-omap2/hwspinlock.c
5494
Tony Lindgrenf5525782009-05-28 13:23:53 -07005495OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005496M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005497L: linux-omap@vger.kernel.org
5498S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005499F: drivers/mmc/host/omap.c
5500
5501OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305502M: Venkatraman S <svenkatr@ti.com>
5503L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005504L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305505S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005506F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005507
5508OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005509M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005510S: Maintained
5511F: drivers/char/hw_random/omap-rng.c
5512
Paul Walmsleyf400c822010-12-06 19:08:54 -07005513OMAP HWMOD SUPPORT
5514M: Benoît Cousson <b-cousson@ti.com>
5515M: Paul Walmsley <paul@pwsan.com>
5516L: linux-omap@vger.kernel.org
5517S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005518F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005519
5520OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5521M: Benoît Cousson <b-cousson@ti.com>
5522L: linux-omap@vger.kernel.org
5523S: Maintained
5524F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5525
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005526OMAP IMAGE SIGNAL PROCESSOR (ISP)
5527M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5528L: linux-media@vger.kernel.org
5529S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005530F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005531
Tony Lindgrenf5525782009-05-28 13:23:53 -07005532OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005533M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005534L: linux-usb@vger.kernel.org
5535L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005536T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005537S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005538F: drivers/usb/*/*omap*
5539F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005540
Kevin Hilman6d994712012-07-16 10:05:07 -07005541OMAP GPIO DRIVER
5542M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5543M: Kevin Hilman <khilman@ti.com>
5544L: linux-omap@vger.kernel.org
5545S: Maintained
5546F: drivers/gpio/gpio-omap.c
5547
Bob Copeland0ad122d2008-07-25 19:45:18 -07005548OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005549M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005550L: linux-karma-devel@lists.sourceforge.net
5551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005552F: Documentation/filesystems/omfs.txt
5553F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005554
Harald Weltec1986ee2005-11-13 16:06:29 -08005555OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005556M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005558F: drivers/char/pcmcia/cm4000_cs.c
5559F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005560F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005561
Harald Welte77c44ab2005-11-13 16:06:26 -08005562OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005563M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005565F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005566
Jonathan Corbet77d51402007-03-22 19:44:17 -03005567OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005568M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005569L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005570T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005571S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005572F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005573
Thomas Gleixner431bca72007-05-02 09:31:35 +02005574ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005575M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005576L: linux-mtd@lists.infradead.org
5577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005578F: drivers/mtd/onenand/
5579F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005580
Linus Torvalds1da177e2005-04-16 15:20:36 -07005581ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005582M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583L: osst-users@lists.sourceforge.net
5584L: linux-scsi@vger.kernel.org
5585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005586F: drivers/scsi/osst*
5587F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005589OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005590M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005591L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005593F: Documentation/i2c/busses/i2c-ocores
5594F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005595
Grant Likely860c44c2009-10-26 16:49:49 -07005596OPEN FIRMWARE AND FLATTENED DEVICE TREE
5597M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005598M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005599L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005600W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005601T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005602S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005603F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005604F: drivers/of
5605F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005606F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005607K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005608K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005609
Jonas Bonn19f9d392011-06-04 22:00:38 +03005610OPENRISC ARCHITECTURE
5611M: Jonas Bonn <jonas@southpole.se>
5612W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005613L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005614S: Maintained
5615T: git git://openrisc.net/~jonas/linux
5616F: arch/openrisc
5617
Jesse Grossccb13522011-10-25 19:26:31 -07005618OPENVSWITCH
5619M: Jesse Gross <jesse@nicira.com>
5620L: dev@openvswitch.org
5621W: http://openvswitch.org
5622T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5623S: Maintained
5624F: net/openvswitch/
5625
Clemens Ladischaf399172011-01-10 16:32:54 +01005626OPL4 DRIVER
5627M: Clemens Ladisch <clemens@ladisch.de>
5628L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5629T: git git://git.alsa-project.org/alsa-kernel.git
5630S: Maintained
5631F: sound/drivers/opl4/
5632
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005634M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635L: oprofile-list@lists.sf.net
5636S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005637F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005638F: arch/*/oprofile/
5639F: drivers/oprofile/
5640F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005642ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005643M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005644M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005645L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5646W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005647T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005648S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005649F: Documentation/filesystems/ocfs2.txt
5650F: Documentation/filesystems/dlmfs.txt
5651F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005652
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005654L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005655W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005656W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005657S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005658F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005660OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005661M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005662M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005663L: osd-dev@open-osd.org
5664W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005665T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005666S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005667F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005668F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005669F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005670
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005671P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005672M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005673L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005674W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005676F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005677
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005678PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005679M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005680L: netdev@vger.kernel.org
5681S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005682F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005683
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005684PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005685M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005686L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005688F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005689
Steffen Klassert48fc2672010-08-13 10:10:46 -04005690PADATA PARALLEL EXECUTION MECHANISM
5691M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005692L: linux-crypto@vger.kernel.org
5693S: Maintained
5694F: kernel/padata.c
5695F: include/linux/padata.h
5696F: Documentation/padata.txt
5697
Harald Welte709ee532008-09-23 17:46:57 +02005698PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005699M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005700L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005702F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005703
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005704PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005705M: David Howells <dhowells@redhat.com>
5706M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005707L: linux-am33-list@redhat.com (moderated for non-subscribers)
5708W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005710F: Documentation/mn10300/
5711F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005712
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005714L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005715S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005716F: drivers/parport/
5717F: include/linux/parport*.h
5718F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005719F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005721PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005722M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005723M: Chris Wright <chrisw@sous-sol.org>
5724M: Alok Kataria <akataria@vmware.com>
5725M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005726L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005727S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005728F: Documentation/ia64/paravirt_ops.txt
5729F: arch/*/kernel/paravirt*
5730F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005731
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005733M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005734L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735W: http://www.torque.net/linux-pp.html
5736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005737F: Documentation/blockdev/paride.txt
5738F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739
5740PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005741M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005742M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005743L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005745Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005746T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005748F: arch/parisc/
5749F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750
Jim Cromie1662d322006-10-06 00:43:59 -07005751PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005752M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005753L: lm-sensors@lm-sensors.org
5754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005755F: Documentation/hwmon/pc87360
5756F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005757
5758PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005759M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005761F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005762
Jean Delvare1ad107f2010-08-14 21:09:00 +02005763PC87427 HARDWARE MONITORING DRIVER
5764M: Jean Delvare <khali@linux-fr.org>
5765L: lm-sensors@lm-sensors.org
5766S: Maintained
5767F: Documentation/hwmon/pc87427
5768F: drivers/hwmon/pc87427.c
5769
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005770PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005771M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005772S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005773F: drivers/leds/leds-pca9532.c
5774F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005775
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005776PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005777M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005778L: linux-i2c@vger.kernel.org
5779S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005780F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005781
Wolfram Sanga1867d32009-09-18 22:45:51 +02005782PCA9564/PCA9665 I2C BUS DRIVER
5783M: Wolfram Sang <w.sang@pengutronix.de>
5784L: linux-i2c@vger.kernel.org
5785S: Maintained
5786F: drivers/i2c/algos/i2c-algo-pca.c
5787F: drivers/i2c/busses/i2c-pca-*
5788F: include/linux/i2c-algo-pca.h
5789F: include/linux/i2c-pca-platform.h
5790
Khalid Aziz3971dae2012-04-12 12:49:13 -07005791PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005792M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005793S: Maintained
5794F: drivers/firmware/pcdp.*
5795
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005796PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005797M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005798L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005799S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005800F: Documentation/PCI/pci-error-recovery.txt
5801F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005802
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005804M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005805L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005806Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005807T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005809F: Documentation/PCI/
5810F: drivers/pci/
5811F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005814P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005815L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005816W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005817T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005819F: Documentation/pcmcia/
5820F: drivers/pcmcia/
5821F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822
5823PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005824M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005825L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005827F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005828
Steffen Klassert48fc2672010-08-13 10:10:46 -04005829PCRYPT PARALLEL CRYPTO ENGINE
5830M: Steffen Klassert <steffen.klassert@secunet.com>
5831L: linux-crypto@vger.kernel.org
5832S: Maintained
5833F: crypto/pcrypt.c
5834F: include/crypto/pcrypt.h
5835
Tejun Heoe72df0b2010-12-10 17:02:49 +01005836PER-CPU MEMORY ALLOCATOR
5837M: Tejun Heo <tj@kernel.org>
5838M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005839T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5840S: Maintained
5841F: include/linux/percpu*.h
5842F: mm/percpu*.c
5843F: arch/*/include/asm/percpu.h
5844
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005845PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005846M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005848F: include/linux/delayacct.h
5849F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005850
Ingo Molnar57c0c152009-09-21 12:20:38 +02005851PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005852M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5853M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005854M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005855M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005856T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005857S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005858F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005859F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005860F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005861F: arch/*/kernel/perf_event*.c
5862F: arch/*/kernel/*/perf_event*.c
5863F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005864F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02005865F: arch/*/kernel/perf_callchain.c
5866F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005867
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005868PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005869M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005870L: linux-abi-devel@lists.sourceforge.net
5871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005872F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005873F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005874
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005875PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005876M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005877S: Supported
5878F: Documentation/networking/phonet.txt
5879F: include/linux/phonet.h
5880F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005881F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005882F: net/phonet/
5883
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005885M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886L: linux-mtd@lists.infradead.org
5887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005888F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889
Bruno Prémontefdbb102012-07-30 21:39:03 +02005890PICOLCD HID DRIVER
5891M: Bruno Prémont <bonbons@linux-vserver.org>
5892L: linux-input@vger.kernel.org
5893S: Maintained
5894F: drivers/hid/hid-picolcd*
5895
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005896PICOXCELL SUPPORT
5897M: Jamie Iles <jamie@jamieiles.com>
5898L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5899T: git git://github.com/jamieiles/linux-2.6-ji.git
5900S: Supported
5901F: arch/arm/mach-picoxcell
5902F: drivers/*/picoxcell*
5903F: drivers/*/*/picoxcell*
5904
Linus Walleij2744e8a2011-05-02 20:50:54 +02005905PIN CONTROL SUBSYSTEM
5906M: Linus Walleij <linus.walleij@linaro.org>
5907S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005908F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005909F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005910
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02005911PIN CONTROLLER - ATMEL AT91
5912M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
5913L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5914S: Maintained
5915F: drivers/pinctrl/pinctrl-at91.c
5916
Viresh Kumardeda8282012-03-28 22:27:07 +05305917PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005918M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305919L: spear-devel@list.st.com
5920L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5921W: http://www.st.com/spear
5922S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005923F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305924
Peter Osterlund249a6772005-09-27 21:45:30 -07005925PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005926M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005928F: drivers/block/pktcdvd.c
5929F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005930F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005931
GuanXuetaob31d8272011-01-16 00:35:49 +08005932PKUNITY SOC DRIVERS
5933M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5934W: http://mprc.pku.edu.cn/~guanxuetao/linux
5935S: Maintained
5936T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5937F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005938F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005939F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005940F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005941
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005942PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005943M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005944L: lm-sensors@lm-sensors.org
5945W: http://www.lm-sensors.org/
5946W: http://www.roeck-us.net/linux/drivers/
5947T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5948S: Maintained
5949F: Documentation/hwmon/pmbus
5950F: drivers/hwmon/pmbus/
5951F: include/linux/i2c/pmbus.h
5952
Anil Ravindranath89a36812009-08-25 17:35:18 -07005953PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005954M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005955L: linux-scsi@vger.kernel.org
5956W: http://www.pmc-sierra.com/
5957S: Supported
5958F: drivers/scsi/pmcraid.*
5959
jack wangdbf9bfe2009-10-14 16:19:21 +08005960PMC SIERRA PM8001 DRIVER
5961M: jack_wang@usish.com
5962M: lindar_liu@usish.com
5963L: linux-scsi@vger.kernel.org
5964S: Supported
5965F: drivers/scsi/pm8001/
5966
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005968M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005969T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005971F: fs/timerfd.c
5972F: include/linux/timer*
5973F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974
Anton Vorontsov3be86142007-07-15 04:43:36 +04005975POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005976M: Anton Vorontsov <cbou@mail.ru>
5977M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005978T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005980F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005981F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005982
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005984M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005985M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005987F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988
Vitaly Wool999445d2007-01-04 13:07:03 +01005989PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005990M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005991L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005993F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005994
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005996M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997L: linux-ppp@vger.kernel.org
5998S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005999F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000
6001PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006002M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006004F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006005F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006
6007PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006008M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006010F: drivers/net/ppp/pppoe.c
6011F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012
James Chapmana6d23702007-06-27 15:53:17 -07006013PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006014M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006015S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006016F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006017F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006018F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006019
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006020PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006021M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006022W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6023L: linuxpps@ml.enneenne.com (subscribers-only)
6024S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006025F: Documentation/pps/
6026F: drivers/pps/
6027F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006028
Harry Wei71a6d0a2011-05-11 15:13:33 -07006029PPTP DRIVER
6030M: Dmitry Kozlov <xeb@mail.ru>
6031L: netdev@vger.kernel.org
6032S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006033F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006034W: http://sourceforge.net/projects/accel-pptp
6035
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006037M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038L: kpreempt-tech@lists.sourceforge.net
6039W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6040S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006041F: Documentation/preempt-locking.txt
6042F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043
6044PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006045M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006046L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006047W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006048S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006049F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006051PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006052M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006053L: linux-ide@vger.kernel.org
6054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006055F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006056
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006057PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006058M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006059L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006060L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006061S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006062F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006063
Geoff Levandf58a9d12006-11-23 00:46:51 +01006064PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006065M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006066L: linuxppc-dev@lists.ozlabs.org
6067L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006069F: arch/powerpc/boot/ps3*
6070F: arch/powerpc/include/asm/lv1call.h
6071F: arch/powerpc/include/asm/ps3*.h
6072F: arch/powerpc/platforms/ps3/
6073F: drivers/*/ps3*
6074F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006075F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006076F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006077F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006078
Jim Pariscffb4add2009-01-06 11:32:10 +00006079PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006080M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006081L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006082S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006083F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006084
Anton Vorontsov8defe592012-08-03 18:07:20 -07006085PSTORE FILESYSTEM
6086M: Anton Vorontsov <cbouatmailru@gmail.com>
6087M: Colin Cross <ccross@android.com>
6088M: Kees Cook <keescook@chromium.org>
6089M: Tony Luck <tony.luck@intel.com>
6090S: Maintained
6091T: git git://git.infradead.org/users/cbou/linux-pstore.git
6092F: fs/pstore/
6093F: include/linux/pstore*
6094F: drivers/firmware/efivars.c
6095F: drivers/acpi/apei/erst.c
6096
Richard Cochran7fbc4152012-03-10 01:55:53 +00006097PTP HARDWARE CLOCK SUPPORT
6098M: Richard Cochran <richardcochran@gmail.com>
6099S: Maintained
6100W: http://linuxptp.sourceforge.net/
6101F: Documentation/ABI/testing/sysfs-ptp
6102F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006103F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006104F: drivers/net/phy/dp83640*
6105F: drivers/ptp/*
6106F: include/linux/ptp_cl*
6107
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006108PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006109M: Roland McGrath <roland@redhat.com>
6110M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006111S: Maintained
6112F: include/asm-generic/syscall.h
6113F: include/linux/ptrace.h
6114F: include/linux/regset.h
6115F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006116F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006117F: kernel/ptrace.c
6118
Michael Krufky83202042006-07-03 00:24:18 -07006119PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006120M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006121L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006122L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006123W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006124T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006126F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006127F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006128
Hans de Goede39532e62012-11-04 17:05:59 -03006129PWC WEBCAM DRIVER
6130M: Hans de Goede <hdegoede@redhat.com>
6131L: linux-media@vger.kernel.org
6132T: git git://linuxtv.org/media_tree.git
6133S: Maintained
6134F: drivers/media/usb/pwc/*
6135
Thierry Reding200efed2012-03-27 13:16:18 +02006136PWM SUBSYSTEM
6137M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006138L: linux-kernel@vger.kernel.org
6139S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006140W: http://gitorious.org/linux-pwm
6141T: git git://gitorious.org/linux-pwm/linux-pwm.git
6142F: Documentation/pwm.txt
6143F: Documentation/devicetree/bindings/pwm/
6144F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006145F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006146F: drivers/video/backlight/pwm_bl.c
6147F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006148
Eric Miao30ec2612008-06-12 15:21:41 -07006149PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006150M: Eric Miao <eric.y.miao@gmail.com>
6151M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006152M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006153L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006154T: git git://github.com/hzhuang1/linux.git
6155T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006157F: arch/arm/mach-pxa/
6158F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006159F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006160F: drivers/usb/gadget/pxa2*
6161F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006162F: sound/arm/pxa*
6163F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006164
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006165MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006166M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006167M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006168L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006169T: git git://github.com/hzhuang1/linux.git
6170T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006171S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006172F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006173
Pierre Ossman272f1332007-05-14 21:25:26 +02006174PXA MMCI DRIVER
6175S: Orphan
6176
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006177PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006178M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006179L: rtc-linux@googlegroups.com
6180S: Maintained
6181
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006182QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006183M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006184L: linux-rdma@vger.kernel.org
6185S: Supported
6186F: drivers/infiniband/hw/qib/
6187
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006188QLOGIC QLA1280 SCSI DRIVER
6189M: Michael Reed <mdr@sgi.com>
6190L: linux-scsi@vger.kernel.org
6191S: Maintained
6192F: drivers/scsi/qla1280.[ch]
6193
Linus Torvalds1da177e2005-04-16 15:20:36 -07006194QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006195M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006196M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006197L: linux-scsi@vger.kernel.org
6198S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006199F: Documentation/scsi/LICENSE.qla2xxx
6200F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201
Ravi Anand883c98f2010-04-28 11:45:49 +05306202QLOGIC QLA4XXX iSCSI DRIVER
6203M: Ravi Anand <ravi.anand@qlogic.com>
6204M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6205M: iscsi-driver@qlogic.com
6206L: linux-scsi@vger.kernel.org
6207S: Supported
6208F: drivers/scsi/qla4xxx/
6209
Ron Mercer5a4faa872006-07-25 00:40:21 -07006210QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006211M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006212M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006213M: linux-driver@qlogic.com
6214L: netdev@vger.kernel.org
6215S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006216F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006217F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006218
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006219QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006220M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006221M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006222M: linux-driver@qlogic.com
6223L: netdev@vger.kernel.org
6224S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006225F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006226
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006227QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006228M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006229M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006230M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006231L: netdev@vger.kernel.org
6232S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006233F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006234
Linus Torvalds1da177e2005-04-16 15:20:36 -07006235QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006236M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237W: http://www.alarsen.net/linux/qnx4fs/
6238S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006239F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006240F: include/uapi/linux/qnx4_fs.h
6241F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242
Antti Palosaari91952bc2012-10-01 12:28:46 -03006243QT1010 MEDIA DRIVER
6244M: Antti Palosaari <crope@iki.fi>
6245L: linux-media@vger.kernel.org
6246W: http://linuxtv.org/
6247W: http://palosaari.fi/linux/
6248Q: http://patchwork.linuxtv.org/project/linux-media/list/
6249T: git git://linuxtv.org/anttip/media_tree.git
6250S: Maintained
6251F: drivers/media/tuners/qt1010*
6252
Richard Kuo4f4567c2011-10-31 18:56:38 -05006253QUALCOMM HEXAGON ARCHITECTURE
6254M: Richard Kuo <rkuo@codeaurora.org>
6255L: linux-hexagon@vger.kernel.org
6256S: Supported
6257F: arch/hexagon/
6258
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006259RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006260M: Yehuda Sadeh <yehuda@inktank.com>
6261M: Sage Weil <sage@inktank.com>
6262M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006263M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006264W: http://ceph.com/
6265T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006266S: Supported
6267F: drivers/block/rbd.c
6268F: drivers/block/rbd_types.h
6269
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006271M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006272L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006274F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006275F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276
Hans de Goedec6c9b342012-11-04 17:03:58 -03006277RADIOSHARK RADIO DRIVER
6278M: Hans de Goede <hdegoede@redhat.com>
6279L: linux-media@vger.kernel.org
6280T: git git://linuxtv.org/media_tree.git
6281S: Maintained
6282F: drivers/media/radio/radio-shark.c
6283
6284RADIOSHARK2 RADIO DRIVER
6285M: Hans de Goede <hdegoede@redhat.com>
6286L: linux-media@vger.kernel.org
6287T: git git://linuxtv.org/media_tree.git
6288S: Maintained
6289F: drivers/media/radio/radio-shark2.c
6290F: drivers/media/radio/radio-tea5777.c
6291
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006293M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006294L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006296F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297
Randy Dunlape7839f22008-10-12 16:11:45 -07006298RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006299P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006300M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006301M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006302M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006303L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006304L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006305W: http://rt2x00.serialmonkey.com/
6306S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006307T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006308F: drivers/net/wireless/rt2x00/
6309
Nick Piggin9db55792008-02-08 04:19:49 -08006310RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006311M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006313F: Documentation/blockdev/ramdisk.txt
6314F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006315
Matt Mackall9e95ce22005-04-16 15:25:56 -07006316RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006317M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006319F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006320
Matt Porter394b7012005-11-07 01:00:15 -08006321RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006322M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006323M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006325F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006326
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006327RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006328L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006329S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006330F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006331
6332RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006333M: Josh Triplett <josh@freedesktop.org>
6334M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006335S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006336T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006337F: Documentation/RCU/torture.txt
6338F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006339
Florian Fainellic1f766b2008-02-06 22:39:44 +01006340RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006341M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006342S: Maintained
6343
Florian Fainellidb17f392007-12-19 11:30:30 +01006344RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006345M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006346L: netdev@vger.kernel.org
6347S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006348F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006349
Andy Grovera09ed662009-02-24 15:30:41 +00006350RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006351M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006352L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006353S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006354F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006355
Josh Triplett595182b2006-10-04 02:17:21 -07006356READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006357M: Dipankar Sarma <dipankar@in.ibm.com>
6358M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006359W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006360S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006361T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006362F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006363X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006364F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006365F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006366X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006367
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006368REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006369M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006370L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006371Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006373F: Documentation/rtc.txt
6374F: drivers/rtc/
6375F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006376F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006377
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006379L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006380S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006381F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382
Mark Brownb83a3132011-05-11 19:59:58 +02006383REGISTER MAP ABSTRACTION
6384M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6385T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6386S: Supported
6387F: drivers/base/regmap/
6388F: include/linux/regmap.h
6389
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006390REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6391M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006392T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006393S: Maintained
6394F: drivers/remoteproc/
6395F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006396F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006397
Ivo van Doorne08976452008-04-12 19:23:55 +02006398RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006399M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006400L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006401W: http://wireless.kernel.org/
6402T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6403T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006404S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006405F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006406F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006407
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006408RICOH SMARTMEDIA/XD DRIVER
6409M: Maxim Levitsky <maximlevitsky@gmail.com>
6410S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006411F: drivers/mtd/nand/r852.c
6412F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006413
Maxim Levitsky92634122011-03-25 01:56:59 -07006414RICOH R5C592 MEMORYSTICK DRIVER
6415M: Maxim Levitsky <maximlevitsky@gmail.com>
6416S: Maintained
6417F: drivers/memstick/host/r592.*
6418
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419ROCKETPORT DRIVER
6420P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421W: http://www.comtrol.com
6422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006423F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006424F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425
6426ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006427M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006428L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006429W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006431F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006432F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006433F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434
Antti Palosaari91952bc2012-10-01 12:28:46 -03006435RTL2830 MEDIA DRIVER
6436M: Antti Palosaari <crope@iki.fi>
6437L: linux-media@vger.kernel.org
6438W: http://linuxtv.org/
6439W: http://palosaari.fi/linux/
6440Q: http://patchwork.linuxtv.org/project/linux-media/list/
6441T: git git://linuxtv.org/anttip/media_tree.git
6442S: Maintained
6443F: drivers/media/dvb-frontends/rtl2830*
6444
Larry Finger59840482008-11-12 17:13:09 -06006445RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006446M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006447L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006448W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006449T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006450S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006451F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006452
Larry Finger59840482008-11-12 17:13:09 -06006453RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006454M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006455M: Hin-Tak Leung <htl10@users.sourceforge.net>
6456M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006457L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006458W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006459T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006460S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006461F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006462
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006463RTL8192CE WIRELESS DRIVER
6464M: Larry Finger <Larry.Finger@lwfinger.net>
6465M: Chaoming Li <chaoming_li@realsil.com.cn>
6466L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006467W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006468T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6469S: Maintained
6470F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006471F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006472
6473S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006474M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006475L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006477F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006478
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479S390
Joe Perches8b58be82009-07-29 15:04:30 -07006480M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6481M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006483L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006484W: http://www.ibm.com/developerworks/linux/linux390/
6485S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006486F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006487F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006488F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006489F: Documentation/s390/
6490F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006491
6492S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006493M: Ursula Braun <ursula.braun@de.ibm.com>
6494M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006495M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006496L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006497W: http://www.ibm.com/developerworks/linux/linux390/
6498S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006499F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006500
Felix Beckfeed9b62009-03-26 15:24:23 +01006501S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006502M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006503M: linux390@de.ibm.com
6504L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006505W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006506S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006507F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006508
Heiko Carstens5238da42006-02-11 17:56:01 -08006509S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006510M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006511M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006512L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006513W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006515F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516
Ursula Braundd96df22007-09-19 13:09:02 +02006517S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006518M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006519M: linux390@de.ibm.com
6520L: linux-s390@vger.kernel.org
6521W: http://www.ibm.com/developerworks/linux/linux390/
6522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006523F: drivers/s390/net/*iucv*
6524F: include/net/iucv/
6525F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006526
Ben Dooks4dde7f72008-06-30 22:40:38 +01006527S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006528M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006529L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006531F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006532
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006533SAA7134 VIDEO4LINUX DRIVER
6534M: Mauro Carvalho Chehab <mchehab@redhat.com>
6535L: linux-media@vger.kernel.org
6536W: http://linuxtv.org
6537T: git git://linuxtv.org/media_tree.git
6538S: Odd fixes
6539F: Documentation/video4linux/saa7134/
6540F: drivers/media/pci/saa7134/
6541
Linus Torvalds1da177e2005-04-16 15:20:36 -07006542SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006543M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006544L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006545T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546W: http://www.mihu.de/linux/saa7146
6547S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006548F: drivers/media/common/saa7146/
6549F: drivers/media/pci/saa7146/
6550F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006551
Corentin Chary92304a42011-12-05 12:38:35 -05006552SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006553M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006554L: platform-driver-x86@vger.kernel.org
6555S: Maintained
6556F: drivers/platform/x86/samsung-laptop.c
6557
Mark Brown4a109cc2010-09-24 10:50:46 +01006558SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006559M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006560L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6561S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006562F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006563
Jingoo Han0d89a282011-12-19 11:09:35 +09006564SAMSUNG FRAMEBUFFER DRIVER
6565M: Jingoo Han <jg1.han@samsung.com>
6566L: linux-fbdev@vger.kernel.org
6567S: Maintained
6568F: drivers/video/s3c-fb.c
6569
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006570SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6571M: Sangbeom Kim <sbkim73@samsung.com>
6572L: linux-kernel@vger.kernel.org
6573S: Supported
6574F: drivers/mfd/sec*.c
6575F: drivers/regulator/s2m*.c
6576F: drivers/regulator/s5m*.c
6577F: drivers/rtc/rtc-sec.c
6578F: include/linux/mfd/samsung/
6579
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006580SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6581M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6582L: linux-media@vger.kernel.org
6583L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6584S: Maintained
6585F: drivers/media/platform/s3c-camif/
6586F: include/media/s3c_camif.h
6587
Alan Coxca749e22011-03-18 13:56:14 +00006588SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006589M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006590L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006591S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006592F: drivers/tty/serial
6593
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306594SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006595M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306596S: Maintained
6597F: include/linux/dw_dmac.h
6598F: drivers/dma/dw_dmac_regs.h
6599F: drivers/dma/dw_dmac.c
6600
Thomas Gleixner88606e82010-12-14 21:37:13 +01006601TIMEKEEPING, NTP
6602M: John Stultz <johnstul@us.ibm.com>
6603M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006604T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006605S: Supported
6606F: include/linux/clocksource.h
6607F: include/linux/time.h
6608F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006609F: include/uapi/linux/time.h
6610F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006611F: kernel/time/clocksource.c
6612F: kernel/time/time*.c
6613F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006614F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006615
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006616TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006617M: Huang Shijie <shijie8@gmail.com>
6618M: Kang Yong <kangyong@telegent.com>
6619M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006620S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006621F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006622
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006624M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006626F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627
6628SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006629M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006630M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006631T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006633F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006634F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006635F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006636
Chen Liqin6bcf6732009-06-13 15:24:33 +08006637SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006638M: Chen Liqin <liqin.chen@sunplusct.com>
6639M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006640W: http://www.sunplusct.com
6641S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006642F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006643
Linus Torvalds1da177e2005-04-16 15:20:36 -07006644SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006645M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006646L: linux-scsi@vger.kernel.org
6647W: http://www.kernel.dk
6648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006649F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650
Roland Dreierfb50a832010-10-07 09:54:53 -07006651SCSI RDMA PROTOCOL (SRP) INITIATOR
6652M: David Dillow <dillowda@ornl.gov>
6653L: linux-rdma@vger.kernel.org
6654S: Supported
6655W: http://www.openfabrics.org
6656Q: http://patchwork.kernel.org/project/linux-rdma/list/
6657T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6658F: drivers/infiniband/ulp/srp/
6659F: include/scsi/srp.h
6660
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006662M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663L: linux-scsi@vger.kernel.org
6664W: http://www.torque.net/sg
6665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006666F: drivers/scsi/sg.c
6667F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668
6669SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006670M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006671L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006672T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6673T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6674T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006676F: drivers/scsi/
6677F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006678
6679SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006680M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006681L: linux-scsi@vger.kernel.org
6682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006683F: Documentation/scsi/st.txt
6684F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006685
6686SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006687M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006688M: Sridhar Samudrala <sri@us.ibm.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006689M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006690L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006691W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006693F: Documentation/networking/sctp.txt
6694F: include/linux/sctp.h
6695F: include/net/sctp/
6696F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006697
6698SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006699M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006700S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006701F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006702F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006703F: drivers/watchdog/scx200_wdt.c
6704F: drivers/i2c/busses/scx200*
6705F: drivers/mtd/maps/scx200_docflash.c
6706F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006707
6708SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006709M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006711F: drivers/char/scx200_gpio.c
6712F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006713
6714SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006715M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006717F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006718
Sascha Sommer6a369132008-07-15 14:21:29 +02006719SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006720M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006721L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006723F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006724
Randy Dunlape7839f22008-10-12 16:11:45 -07006725SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006726M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006727L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006728T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6729S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006730F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006731F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006732
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006733SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006734M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006735L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006736L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006737S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006738F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006739
Ben Dooks0d1bb412009-06-14 13:52:37 +01006740SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006741M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006742L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006743S: Maintained
6744F: drivers/mmc/host/sdhci-s3c.c
6745
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006746SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006747M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006748L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006749L: linux-mmc@vger.kernel.org
6750S: Maintained
6751F: drivers/mmc/host/sdhci-spear.c
6752
James Morris8711cca2008-12-04 03:19:45 +11006753SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006754M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006755L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006756T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006757W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006758S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006759F: security/
James Morris8711cca2008-12-04 03:19:45 +11006760
Linus Torvalds1da177e2005-04-16 15:20:36 -07006761SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006762M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763S: Supported
6764
6765SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006766M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006767M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006768M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006769L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006770W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006771T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006772S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006773F: include/linux/selinux*
6774F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006775F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006776
John Johansenc1c124e2010-07-29 14:48:09 -07006777APPARMOR SECURITY MODULE
6778M: John Johansen <john.johansen@canonical.com>
6779L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6780W: apparmor.wiki.kernel.org
6781T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6782S: Supported
6783F: security/apparmor/
6784
Jiri Slabycef2cf02007-05-08 00:31:45 -07006785SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006786M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006788F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006789F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006790
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006791SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006792M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006794T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006795S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006796F: drivers/ata/
6797F: include/linux/ata.h
6798F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006799
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306800SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006801M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006802L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006803W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006804S: Supported
6805F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306806
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006807SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006808M: Sathya Perla <sathya.perla@emulex.com>
6809M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6810M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006811L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006812W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006813S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006814F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006815
Ben Hutchings8ceee662008-04-27 12:55:59 +01006816SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006817M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006818M: Ben Hutchings <bhutchings@solarflare.com>
6819L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006820S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006821F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006822
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006823SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006824M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006826F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006827
6828SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006829M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006830L: linux-ia64@vger.kernel.org
6831S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006832F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006833F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006834F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006835
Linus Torvalds1da177e2005-04-16 15:20:36 -07006836SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006837M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838L: linux-visws-devel@lists.sf.net
6839W: http://linux-visws.sf.net
6840S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006841F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006842
Jack Steiner75312612008-08-15 00:40:42 -07006843SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006844M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006846F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006847
Len Brown6349d992009-08-14 15:07:14 -04006848SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006849M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006850L: sfi-devel@simplefirmware.org
6851W: http://simplefirmware.org/
6852T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006853S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006854F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006855F: drivers/sfi/
6856F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006857
Linus Torvalds1da177e2005-04-16 15:20:36 -07006858SIMTEC EB110ATX (Chalice CATS)
6859P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006860P: Vincent Sanders <vince@simtec.co.uk>
6861M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006862W: http://www.simtec.co.uk/products/EB110ATX/
6863S: Supported
6864
6865SIMTEC EB2410ITX (BAST)
6866P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006867P: Vincent Sanders <vince@simtec.co.uk>
6868M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006869W: http://www.simtec.co.uk/products/EB2410ITX/
6870S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006871F: arch/arm/mach-s3c2410/mach-bast.c
6872F: arch/arm/mach-s3c2410/bast-ide.c
6873F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006874
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006875TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006876M: Sekhar Nori <nsekhar@ti.com>
6877M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306878L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306879T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006880Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006881S: Supported
6882F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006883F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006884
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03006885TI DAVINCI SERIES MEDIA DRIVER
6886M: Manjunath Hadli <manjunath.hadli@ti.com>
6887M: Prabhakar Lad <prabhakar.lad@ti.com>
6888L: linux-media@vger.kernel.org
6889L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
6890W: http://linuxtv.org/
6891Q: http://patchwork.linuxtv.org/project/linux-media/list/
6892T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
6893S: Supported
6894F: drivers/media/platform/davinci/
6895F: include/media/davinci/
6896
Francois Romieu92aab3c2005-07-30 13:11:18 +02006897SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006898M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006899L: netdev@vger.kernel.org
6900S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006901F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006902
Linus Torvalds1da177e2005-04-16 15:20:36 -07006903SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006904M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006905W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006906L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006907S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006908F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006909
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006910SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006911M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006912L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006914F: Documentation/i2c/busses/i2c-sis96x
6915F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006916
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006918M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006919W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006921F: Documentation/fb/sisfb.txt
6922F: drivers/video/sis/
6923F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006924
6925SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006926M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006927W: http://www.winischhofer.at/linuxsisusbvga.shtml
6928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006929F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006931SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006932M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006933M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006934M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006935L: linux-mm@kvack.org
6936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006937F: include/linux/sl?b*.h
6938F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006939
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006940SLEEPABLE READ-COPY UPDATE (SRCU)
6941M: Lai Jiangshan <laijs@cn.fujitsu.com>
6942M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6943W: http://www.rdrop.com/users/paulmck/RCU/
6944S: Supported
6945T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6946F: include/linux/srcu*
6947F: kernel/srcu*
6948
Casey Schaufler66372842012-05-23 18:34:52 -07006949SMACK SECURITY MODULE
6950M: Casey Schaufler <casey@schaufler-ca.com>
6951L: linux-security-module@vger.kernel.org
6952W: http://schaufler-ca.com
6953T: git git://git.gitorious.org/smack-next/kernel.git
6954S: Maintained
6955F: Documentation/security/Smack.txt
6956F: security/smack/
6957
Linus Torvalds1da177e2005-04-16 15:20:36 -07006958SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006959M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006960S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006961F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006962
Sakari Ailuse8e31622012-11-12 18:14:39 -03006963SMIA AND SMIA++ IMAGE SENSOR DRIVER
6964M: Sakari Ailus <sakari.ailus@iki.fi>
6965L: linux-media@vger.kernel.org
6966S: Maintained
6967F: drivers/media/i2c/smiapp
6968F: include/media/smiapp.h
6969F: drivers/media/i2c/smiapp-pll.c
6970F: drivers/media/i2c/smiapp-pll.h
6971
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006972SMM665 HARDWARE MONITOR DRIVER
6973M: Guenter Roeck <linux@roeck-us.net>
6974L: lm-sensors@lm-sensors.org
6975S: Maintained
6976F: Documentation/hwmon/smm665
6977F: drivers/hwmon/smm665.c
6978
Steve Glendinning9df73052010-08-14 21:08:54 +02006979SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006980M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006981L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006982S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006983F: Documentation/hwmon/emc2103
6984F: drivers/hwmon/emc2103.c
6985
Hans de Goedea98d5062011-03-21 17:59:36 +01006986SMSC SCH5627 HARDWARE MONITOR DRIVER
6987M: Hans de Goede <hdegoede@redhat.com>
6988L: lm-sensors@lm-sensors.org
6989S: Supported
6990F: Documentation/hwmon/sch5627
6991F: drivers/hwmon/sch5627.c
6992
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006993SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006994M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006995L: lm-sensors@lm-sensors.org
6996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006997F: Documentation/hwmon/smsc47b397
6998F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006999
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007000SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007001M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007002L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007004F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007005F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007006
Steve Glendinning2cb37722008-12-11 20:54:30 -08007007SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007008M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007009L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007010S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007011F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007012
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007013SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007014M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007015L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007016S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007017F: drivers/video/smscufx.c
7018
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007019SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07007020M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007021L: linux-altix@sgi.com
7022L: linux-ia64@vger.kernel.org
7023W: http://www.sgi.com/altix
7024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007025F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007026
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007027SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007028M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007029L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007030T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007031S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007032F: include/media/soc*
7033F: drivers/media/i2c/soc_camera/
7034F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007035
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007036SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007037M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007039F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007040
Linus Torvalds1da177e2005-04-16 15:20:36 -07007041SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007042M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007043L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007044S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007045F: drivers/md/
7046F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007047F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007050M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007051L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007052S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007053F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007054
Michael Buesch61e115a2007-09-18 15:12:50 -04007055SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007056M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007057L: netdev@vger.kernel.org
7058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007059F: drivers/ssb/
7060F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007061
Linus Torvalds1da177e2005-04-16 15:20:36 -07007062SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007063M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007064L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007065W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007067F: Documentation/laptops/sony-laptop.txt
7068F: drivers/char/sonypi.c
7069F: drivers/platform/x86/sony-laptop.c
7070F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007071
Alex Dubovbaf85322008-02-09 10:20:54 -08007072SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007073M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007074W: http://tifmxx.berlios.de/
7075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007076F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007077
Linus Torvalds1da177e2005-04-16 15:20:36 -07007078SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007079M: Jaroslav Kysela <perex@perex.cz>
7080M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007081L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007082W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007083T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007084T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007085S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007086F: Documentation/sound/
7087F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007088F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007089F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007090
Mark Brownbd903bd2008-11-19 19:16:05 +00007091SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01007092M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007093M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007094T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007095L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007096W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007097S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007098F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007099F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007100
Sam Ravnborg473321f2009-01-04 15:47:49 -08007101SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007102M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007104Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007105T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7106T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007108F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007109F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007110
David S. Miller6404fcc2010-03-16 01:00:17 -07007111SPARC SERIAL DRIVERS
7112M: "David S. Miller" <davem@davemloft.net>
7113L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007114T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7115T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007116S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007117F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007118F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007119F: drivers/tty/serial/sunhv.c
7120F: drivers/tty/serial/sunsab.c
7121F: drivers/tty/serial/sunsab.h
7122F: drivers/tty/serial/sunsu.c
7123F: drivers/tty/serial/sunzilog.c
7124F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007125
Christopher Li389325b2012-04-05 14:25:14 -07007126SPARSE CHECKER
7127M: "Christopher Li" <sparse@chrisli.org>
7128L: linux-sparse@vger.kernel.org
7129W: https://sparse.wiki.kernel.org/
7130T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7131T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7132S: Maintained
7133F: include/linux/compiler.h
7134
viresh kumarfc0c1952010-04-01 12:31:21 +01007135SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007136M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307137M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007138L: spear-devel@list.st.com
7139L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007140W: http://www.st.com/spear
7141S: Maintained
7142F: arch/arm/plat-spear/
7143
Viresh Kumar71e09a92012-04-20 22:39:48 +05307144SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007145M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307146M: Shiraz Hashim <shiraz.hashim@st.com>
7147L: spear-devel@list.st.com
7148L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7149W: http://www.st.com/spear
7150S: Maintained
7151F: arch/arm/mach-spear13xx/
7152
viresh kumarfc0c1952010-04-01 12:31:21 +01007153SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007154M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307155M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007156L: spear-devel@list.st.com
7157L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007158W: http://www.st.com/spear
7159S: Maintained
7160F: arch/arm/mach-spear3xx/
7161
7162SPEAR6XX MACHINE SUPPORT
7163M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307164M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007165M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007166L: spear-devel@list.st.com
7167L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007168W: http://www.st.com/spear
7169S: Maintained
7170F: arch/arm/mach-spear6xx/
7171
7172SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007173M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007174L: spear-devel@list.st.com
7175L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007176W: http://www.st.com/spear
7177S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307178F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007179
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007180SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007181M: Grant Likely <grant.likely@secretlab.ca>
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 Hemminger781b456a2006-07-10 20:25:29 -07007448TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007449M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-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 Hemminger781b456a2006-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
7540M: Jiri Pirko <jpirko@redhat.com>
7541L: 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
Sean Young40ad4a32012-11-19 10:32:53 -03007547TECHNOTREND USB IR RECEIVER
7548M: Sean Young <sean@mess.org>
7549L: linux-media@vger.kernel.org
7550S: Maintained
7551F: drivers/media/rc/ttusbir.c
7552
Erik Gilling84b94142010-06-09 15:35:53 -07007553TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007554M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007555L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007556Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7557T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007558S: Supported
7559F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007560F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007561F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007562
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007563TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007564M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007565L: netdev@vger.kernel.org
7566S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007567F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007568
Alan Cox4e688522008-04-30 00:52:11 -07007569Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007570M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007571S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007572F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007573
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007574TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007575M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007576M: Max Filippov <jcmvbkbc@gmail.com>
7577L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007579F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007580
Zhang Ruid3fb6952012-11-15 08:58:27 +08007581THERMAL
7582M: Zhang Rui <rui.zhang@intel.com>
7583L: linux-pm@vger.kernel.org
7584T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7585S: Supported
7586F: drivers/thermal/
7587F: include/linux/thermal.h
7588
Alan Cox4e688522008-04-30 00:52:11 -07007589THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007590M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007591L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007592L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007593W: http://ibm-acpi.sourceforge.net
7594W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007595T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007597F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007598
Alex Dubov4020f2d2006-10-04 02:15:37 -07007599TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007600M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007602F: drivers/misc/tifm*
7603F: drivers/mmc/host/tifm_sd.c
7604F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007605
M R Swami Reddy152ad442012-04-02 20:02:31 +05307606TI LM49xxx FAMILY ASoC CODEC DRIVERS
7607M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307608M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307609L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7610S: Maintained
7611F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307612F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307613
Kim, Milo0edd8072012-12-17 16:01:17 -08007614TI LP855x BACKLIGHT DRIVER
7615M: Milo Kim <milo.kim@ti.com>
7616S: Maintained
7617F: Documentation/backlight/lp855x-driver.txt
7618F: drivers/video/backlight/lp855x_bl.c
7619F: include/linux/platform_data/lp855x.h
7620
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007621TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007622M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007623L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7624S: Maintained
7625F: sound/soc/codecs/twl4030*
7626
Luciano Coelho90921012011-11-20 21:40:41 +02007627TI WILINK WIRELESS DRIVERS
7628M: Luciano Coelho <coelho@ti.com>
7629L: linux-wireless@vger.kernel.org
7630W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7631W: http://wireless.kernel.org/en/users/Drivers/wl1251
7632T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7633S: Maintained
7634F: drivers/net/wireless/ti/
7635F: include/linux/wl12xx.h
7636
Per Lidene86eaa32006-01-12 16:45:18 +01007637TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007638M: Jon Maloy <jon.maloy@ericsson.com>
7639M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007640L: netdev@vger.kernel.org (core kernel code)
7641L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007642W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007643S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007644F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007645F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007646
Chris Metcalf867e3592010-05-28 23:09:12 -04007647TILE ARCHITECTURE
7648M: Chris Metcalf <cmetcalf@tilera.com>
7649W: http://www.tilera.com/scm/
7650S: Supported
7651F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007652F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007653F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007654F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007655
Linus Torvalds1da177e2005-04-16 15:20:36 -07007656TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007657M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007658L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007659W: http://sourceforge.net/projects/tlan/
7660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007661F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007662F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007664TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007665M: Kentaro Takeda <takedakn@nttdata.co.jp>
7666M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007667L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7668L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007669L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7670L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7671W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007672T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007674F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007675
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007676TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007677M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007678L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007679S: Maintained
7680F: drivers/platform/x86/topstar-laptop.c
7681
Linus Torvalds1da177e2005-04-16 15:20:36 -07007682TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007683L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007684S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007685F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007686
7687TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007688M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689L: tlinux-users@tce.toshiba-dme.co.jp
7690W: http://www.buzzard.org.uk/toshiba/
7691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007692F: drivers/char/toshiba.c
7693F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007694F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007695
Pierre Ossmand719f902009-03-24 21:06:09 +01007696TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007697M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007698M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007699L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007700S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007701F: drivers/mmc/host/tmio_mmc*
7702F: drivers/mmc/host/sh_mobile_sdhi.c
7703F: include/linux/mmc/tmio.h
7704F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007705
Hugh Dickins98f32602009-05-21 20:33:58 +01007706TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007707M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007708L: linux-mm@kvack.org
7709S: Maintained
7710F: include/linux/shmem_fs.h
7711F: mm/shmem.c
7712
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02007713TM6000 VIDEO4LINUX DRIVER
7714M: Mauro Carvalho Chehab <mchehab@redhat.com>
7715L: linux-media@vger.kernel.org
7716W: http://linuxtv.org
7717T: git git://linuxtv.org/media_tree.git
7718S: Odd fixes
7719F: drivers/media/usb/tm6000/
7720
Alan Cox4e688522008-04-30 00:52:11 -07007721TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007722M: Kent Yoder <key@linux.vnet.ibm.com>
7723M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007724W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007725M: Marcel Selhorst <tpmdd@selhorst.net>
7726M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007727W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007728L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007730F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007731
Joe Perchesd6f005a2009-10-26 16:49:40 -07007732TRACING
7733M: Steven Rostedt <rostedt@goodmis.org>
7734M: Frederic Weisbecker <fweisbec@gmail.com>
7735M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007736T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007737S: Maintained
7738F: Documentation/trace/ftrace.txt
7739F: arch/*/*/*/ftrace.h
7740F: arch/*/kernel/ftrace.c
7741F: include/*/ftrace.h
7742F: include/linux/trace*.h
7743F: include/trace/
7744F: kernel/trace/
7745
Linus Torvalds1da177e2005-04-16 15:20:36 -07007746TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007747M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007748T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007749S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007750K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007751
Alan Cox4e688522008-04-30 00:52:11 -07007752TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007753M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01007754M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08007755S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007756T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007757F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007758F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007759F: include/linux/serial_core.h
7760F: include/linux/serial.h
7761F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007762F: include/uapi/linux/serial_core.h
7763F: include/uapi/linux/serial.h
7764F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007765
Antti Palosaari91952bc2012-10-01 12:28:46 -03007766TUA9001 MEDIA DRIVER
7767M: Antti Palosaari <crope@iki.fi>
7768L: linux-media@vger.kernel.org
7769W: http://linuxtv.org/
7770W: http://palosaari.fi/linux/
7771Q: http://patchwork.linuxtv.org/project/linux-media/list/
7772T: git git://linuxtv.org/anttip/media_tree.git
7773S: Maintained
7774F: drivers/media/tuners/tua9001*
7775
Grant Grundler740db6d2008-02-17 11:53:49 -07007776TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007777M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007778L: netdev@vger.kernel.org
7779S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007780F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007781
7782TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00007783M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007784W: http://vtun.sourceforge.net/tun
7785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007786F: Documentation/networking/tuntap.txt
7787F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007788
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007789TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007790M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007792F: drivers/tc/
7793F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007794
Linus Torvalds1da177e2005-04-16 15:20:36 -07007795U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007796M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007797L: linux-scsi@vger.kernel.org
7798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007799F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007800
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007801UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007802M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007803M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007804L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007805T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007806W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007808F: Documentation/filesystems/ubifs.txt
7809F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007810
Alan Coxcc2020e2008-05-19 14:21:51 +01007811UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007812M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007813W: http://www.uclinux.org/
7814L: uclinux-dev@uclinux.org (subscribers-only)
7815S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007816F: arch/m68k/*/*_no.*
7817F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007818
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007819UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007820M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007821W: http://uclinux-h8.sourceforge.jp/
7822S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007823F: arch/h8300/
7824F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007825F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007826
Linus Torvalds1da177e2005-04-16 15:20:36 -07007827UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007828M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007830F: Documentation/filesystems/udf.txt
7831F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007832
Alan Coxcc2020e2008-05-19 14:21:51 +01007833UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007834M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007836F: Documentation/filesystems/ufs.txt
7837F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007838
David Herrmann0a09d3a2012-06-10 15:16:28 +02007839UHID USERSPACE HID IO DRIVER:
7840M: David Herrmann <dh.herrmann@googlemail.com>
7841L: linux-input@vger.kernel.org
7842S: Maintained
7843F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007844F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02007845
David Vrabel18332a82008-09-17 16:34:44 +01007846ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007847L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007848S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007849F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007850F: include/linux/uwb.h
7851F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007852
GuanXuetaob31d8272011-01-16 00:35:49 +08007853UNICORE32 ARCHITECTURE:
7854M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7855W: http://mprc.pku.edu.cn/~guanxuetao/linux
7856S: Maintained
7857T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7858F: arch/unicore32/
7859
Tony Finchd8379ab2009-11-27 15:50:30 +00007860UNIFDEF
7861M: Tony Finch <dot@dotat.at>
7862W: http://dotat.at/prog/unifdef
7863S: Maintained
7864F: scripts/unifdef.c
7865
Linus Torvalds1da177e2005-04-16 15:20:36 -07007866UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007867M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007868W: http://www.kernel.dk
7869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007870F: Documentation/cdrom/
7871F: drivers/cdrom/cdrom.c
7872F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007873F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007874
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307875UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7876M: Vinayak Holikatti <vinholikatti@gmail.com>
7877M: Santosh Y <santoshsy@gmail.com>
7878L: linux-scsi@vger.kernel.org
7879S: Supported
7880F: Documentation/scsi/ufs.txt
7881F: drivers/scsi/ufs/
7882
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007883UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007884M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007885W: http://www.linux-mtd.infradead.org/
7886L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007887T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007888S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007889F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007890F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007891F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007892
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007893UNSORTED BLOCK IMAGES (UBI) Fastmap
7894M: Richard Weinberger <richard@nod.at>
7895L: linux-mtd@lists.infradead.org
7896S: Maintained
7897F: drivers/mtd/ubi/fastmap.c
7898
Linus Torvalds1da177e2005-04-16 15:20:36 -07007899USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007900M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007901L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007903F: Documentation/usb/acm.txt
7904F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007905
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02007906USB AR5523 WIRELESS DRIVER
7907M: Pontus Fuchs <pontus.fuchs@gmail.com>
7908L: linux-wireless@vger.kernel.org
7909S: Maintained
7910F: drivers/net/wireless/ath/ar5523/
7911
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007912USB ATTACHED SCSI
7913M: Matthew Wilcox <willy@linux.intel.com>
7914M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7915L: linux-usb@vger.kernel.org
7916L: linux-scsi@vger.kernel.org
7917S: Supported
7918F: drivers/usb/storage/uas.c
7919
Linus Torvalds1da177e2005-04-16 15:20:36 -07007920USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007921M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007922L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007924F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007925F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007926
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007927USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007928M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007929L: linux-usb@vger.kernel.org
7930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007931F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007932
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007933USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007934M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007935L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007936W: http://www.linux-usb.org/usbnet
7937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007938F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007939
Alan Coxcc2020e2008-05-19 14:21:51 +01007940USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007941M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007942L: rio500-users@lists.sourceforge.net
7943W: http://rio500.sourceforge.net
7944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007945F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007946
Linus Torvalds1da177e2005-04-16 15:20:36 -07007947USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007948M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007949L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007951F: Documentation/usb/ehci.txt
7952F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007953
David Brownell69ae9e32006-11-14 02:03:31 -08007954USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007955M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007956L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007957W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007958T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007960F: drivers/usb/gadget/
7961F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007962
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007963USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007964M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007965L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007966T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007967S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007968F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007969F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007970
matt mooney857aab32011-06-17 15:50:46 -07007971USB/IP DRIVERS
7972M: Matt Mooney <mfm@muteddisk.com>
7973L: linux-usb@vger.kernel.org
7974S: Maintained
7975F: drivers/staging/usbip/
7976
Olav Kongas959eea22005-11-03 17:38:14 +02007977USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007978M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007979L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007981F: drivers/usb/host/isp116x*
7982F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007983
Linus Torvalds1da177e2005-04-16 15:20:36 -07007984USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007985M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007986L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007988F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007989
7990USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007991M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007992L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007993L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007994S: Maintained
7995W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007996F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007997
Clemens Ladischaf399172011-01-10 16:32:54 +01007998USB MIDI DRIVER
7999M: Clemens Ladisch <clemens@ladisch.de>
8000L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8001T: git git://git.alsa-project.org/alsa-kernel.git
8002S: Maintained
8003F: sound/usb/midi.*
8004
Linus Torvalds1da177e2005-04-16 15:20:36 -07008005USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008006M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008007L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008009F: Documentation/usb/ohci.txt
8010F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008011
Matthias Urlichsba460e42005-07-14 00:33:47 -07008012USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008013M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008014L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008016F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008017
Linus Torvalds1da177e2005-04-16 15:20:36 -07008018USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008019M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008020L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008021L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008022W: http://pegasus2.sourceforge.net/
8023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008024F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008025
Felipe Balbid3ad5582012-05-21 16:24:49 +03008026USB PHY LAYER
8027M: Felipe Balbi <balbi@ti.com>
8028L: linux-usb@vger.kernel.org
8029T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8030S: Maintained
8031F: drivers/usb/phy/
8032F: drivers/usb/otg/
8033
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008034USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008035M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008036L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008037S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008038F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008039
8040USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008041M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008042L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008043L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008044W: http://pegasus2.sourceforge.net/
8045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008046F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008047
Alan Cox4e688522008-04-30 00:52:11 -07008048USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008049M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008050L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008052F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008053
8054USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008055M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008056L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008057S: Maintained
8058W: http://geocities.com/i0xox0i
8059W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008060F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008061
Linus Torvalds1da177e2005-04-16 15:20:36 -07008062USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008063M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008064W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008066F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008067
8068USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008069M: Peter Berger <pberger@brimson.com>
8070M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008071L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008073F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008074
8075USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008076M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008077L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008078S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008079F: Documentation/usb/usb-serial.txt
8080F: drivers/usb/serial/generic.c
8081F: drivers/usb/serial/usb-serial.c
8082F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008083
Linus Torvalds1da177e2005-04-16 15:20:36 -07008084USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008085M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008086L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008088F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008089
8090USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008091M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
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/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008095
8096USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008097M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008098L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008099W: http://www.connecttech.com
8100S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008101F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008102
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008103USB SMSC75XX ETHERNET DRIVER
8104M: Steve Glendinning <steve.glendinning@shawell.net>
8105L: netdev@vger.kernel.org
8106S: Maintained
8107F: drivers/net/usb/smsc75xx.*
8108
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008109USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008110M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008111L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008113F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008114
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008115USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008116M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008117L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008118L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008119T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008120W: http://www.linux-projects.org
8121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008122F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008123F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008124
8125USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008126M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008127L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008128W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008129T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008130S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008131F: Documentation/usb/
8132F: drivers/net/usb/
8133F: drivers/usb/
8134F: include/linux/usb.h
8135F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008136
8137USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008138M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008139L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008141F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008142
David Brownell69ae9e32006-11-14 02:03:31 -08008143USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008144M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008145L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008146W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008148F: drivers/net/usb/usbnet.c
8149F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008150
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008151USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008152M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008153L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008154L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008155T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008156W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008157S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008158F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008159F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008160
Laurent Pinchart8282da42012-10-04 02:32:42 +02008161USB WEBCAM GADGET
8162M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8163L: linux-usb@vger.kernel.org
8164S: Maintained
8165F: drivers/usb/gadget/*uvc*.c
8166F: drivers/usb/gadget/webcam.c
8167
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008168USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008169M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008170L: linux-wireless@vger.kernel.org
8171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008172F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008173
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008174USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008175M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008176L: linux-usb@vger.kernel.org
8177S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008178F: drivers/usb/host/xhci*
8179F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008180
Linus Torvalds1da177e2005-04-16 15:20:36 -07008181USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008182L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008183W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008184S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008185F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008186
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008187USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008188M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008189L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008190L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008191T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008192W: http://royale.zerezo.com/zr364xx/
8193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008194F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008195F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008196
Randy Dunlape7839f22008-10-12 16:11:45 -07008197USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008198M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008199M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008200L: user-mode-linux-devel@lists.sourceforge.net
8201L: user-mode-linux-user@lists.sourceforge.net
8202W: http://user-mode-linux.sourceforge.net
8203S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008204F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008205F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008206F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008207F: fs/hostfs/
8208F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008209
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008210USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008211M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008212M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008214F: Documentation/DocBook/uio-howto.tmpl
8215F: drivers/uio/
8216F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008217
Karel Zak256cccb2012-06-01 10:13:09 +02008218UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008219M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008220L: util-linux@vger.kernel.org
8221W: http://en.wikipedia.org/wiki/Util-linux
8222T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008223S: Maintained
8224
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008225UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008226M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008227L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008228W: http://dev.gentoo.org/~spock/projects/uvesafb/
8229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008230F: Documentation/fb/uvesafb.txt
8231F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008232
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008233VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008234M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008236F: Documentation/filesystems/vfat.txt
8237F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008238
Alex Williamsoncba33452012-07-31 08:16:22 -06008239VFIO DRIVER
8240M: Alex Williamson <alex.williamson@redhat.com>
8241L: kvm@vger.kernel.org
8242S: Maintained
8243F: Documentation/vfio.txt
8244F: drivers/vfio/
8245F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008246F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008247
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008248VIDEOBUF2 FRAMEWORK
8249M: Pawel Osciak <pawel@osciak.com>
8250M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008251M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008252L: linux-media@vger.kernel.org
8253S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008254F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008255F: include/media/videobuf2-*
8256
Amit Shah9a824462010-03-23 18:23:09 +05308257VIRTIO CONSOLE DRIVER
8258M: Amit Shah <amit.shah@redhat.com>
8259L: virtualization@lists.linux-foundation.org
8260S: Maintained
8261F: drivers/char/virtio_console.c
8262F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008263F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308264
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308265VIRTIO CORE, NET AND BLOCK DRIVERS
8266M: Rusty Russell <rusty@rustcorp.com.au>
8267M: "Michael S. Tsirkin" <mst@redhat.com>
8268L: virtualization@lists.linux-foundation.org
8269S: Maintained
8270F: drivers/virtio/
8271F: drivers/net/virtio_net.c
8272F: drivers/block/virtio_blk.c
8273F: include/linux/virtio_*.h
8274
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008275VIRTIO HOST (VHOST)
8276M: "Michael S. Tsirkin" <mst@redhat.com>
8277L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008278L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008279L: netdev@vger.kernel.org
8280S: Maintained
8281F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008282F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008283
Linus Torvalds1da177e2005-04-16 15:20:36 -07008284VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008285M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008286S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008287F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008288
Harald Weltef0bf7f62009-06-17 20:22:39 +02008289VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008290M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008291M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008292S: Maintained
8293F: drivers/mmc/host/via-sdmmc.c
8294
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008295VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008296M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008297L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008298S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008299F: include/linux/via-core.h
8300F: include/linux/via-gpio.h
8301F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008302F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008303
Francois Romieu01f20732007-01-26 00:57:17 -08008304VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008305M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008306L: netdev@vger.kernel.org
8307S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008308F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008309
Patrick McHardybe7f8272007-10-23 20:26:36 -07008310VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008311M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008312L: netdev@vger.kernel.org
8313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008314F: drivers/net/macvlan.c
8315F: include/linux/if_*vlan.h
8316F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008317
Florian Fainelli55e331c2009-06-16 15:33:53 -07008318VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008319M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008320L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008321S: Maintained
8322F: drivers/vlynq/vlynq.c
8323F: include/linux/vlynq.h
8324
Martyn Welch390beae2012-05-03 17:52:36 +01008325VME SUBSYSTEM
8326M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008327M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008328M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8329L: devel@driverdev.osuosl.org
8330S: Maintained
8331T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8332F: Documentation/vme_api.txt
8333F: drivers/staging/vme/
8334F: drivers/vme/
8335F: include/linux/vme*
8336
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008337VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008338M: Shreyas Bhatewara <sbhatewara@vmware.com>
8339M: "VMware, Inc." <pv-drivers@vmware.com>
8340L: netdev@vger.kernel.org
8341S: Maintained
8342F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008343
Alok Kataria851b1642009-10-13 14:51:05 -07008344VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008345M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008346M: VMware PV-Drivers <pv-drivers@vmware.com>
8347L: linux-scsi@vger.kernel.org
8348S: Maintained
8349F: drivers/scsi/vmw_pvscsi.c
8350F: drivers/scsi/vmw_pvscsi.h
8351
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008352VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008353M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008354M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008355W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008356W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008357T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008358S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008359F: drivers/regulator/
8360F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008361
Juerg Haefligerab413192006-09-24 20:54:04 +02008362VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008363M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008364L: lm-sensors@lm-sensors.org
8365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008366F: Documentation/hwmon/vt1211
8367F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008368
Roger Lucas1de9e372005-11-26 20:20:05 +01008369VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008370M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008371L: lm-sensors@lm-sensors.org
8372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008373F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008374
Tony Olech88095e72011-05-14 16:48:13 -04008375VUB300 USB to SDIO/SD/MMC bridge chip
8376M: Tony Olech <tony.olech@elandigitalsystems.com>
8377L: linux-mmc@vger.kernel.org
8378L: linux-usb@vger.kernel.org
8379S: Supported
8380F: drivers/mmc/host/vub300.c
8381
Linus Torvalds1da177e2005-04-16 15:20:36 -07008382W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008383M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008385F: Documentation/w1/
8386F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008387
Charles Spirakis13927072006-07-05 18:05:15 +02008388W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008389M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008390L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008392F: Documentation/hwmon/w83791d
8393F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008394
Rudolf Marek61db0112006-12-12 18:18:30 +01008395W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008396M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008397L: lm-sensors@lm-sensors.org
8398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008399F: Documentation/hwmon/w83793
8400F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008401
Jean Delvaree3760b42010-10-28 20:31:49 +02008402W83795 HARDWARE MONITORING DRIVER
8403M: Jean Delvare <khali@linux-fr.org>
8404L: lm-sensors@lm-sensors.org
8405S: Maintained
8406F: drivers/hwmon/w83795.c
8407
Linus Torvalds1da177e2005-04-16 15:20:36 -07008408W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008409M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008411F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008412
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008413WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008414M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008415L: linux-watchdog@vger.kernel.org
8416W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008417T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008419F: Documentation/watchdog/
8420F: drivers/watchdog/
8421F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008422F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008423
Linus Torvalds1da177e2005-04-16 15:20:36 -07008424WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008425M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008426L: linux-scsi@vger.kernel.org
8427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008428F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008429
David Herrmannb22e00f2011-09-06 13:50:40 +02008430WIIMOTE HID DRIVER
8431M: David Herrmann <dh.herrmann@googlemail.com>
8432L: linux-input@vger.kernel.org
8433S: Maintained
8434F: drivers/hid/hid-wiimote*
8435
David Härdemane258b802009-09-21 17:04:53 -07008436WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008437M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008438S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008439F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008440
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008441WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008442M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008443M: linux-wimax@intel.com
8444L: wimax@linuxwimax.org
8445S: Supported
8446W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008447F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008448F: include/linux/wimax/debug.h
8449F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008450F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008451F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008452
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008453WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008454M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008456F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008457
Linus Torvalds1da177e2005-04-16 15:20:36 -07008458WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008459M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008460L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008461W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008463F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008464
Mark Brownfebf1df2008-04-02 00:51:09 -04008465WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008466M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8467M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008468L: linux-input@vger.kernel.org
8469T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8470W: http://opensource.wolfsonmicro.com/node/7
8471S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008472F: drivers/input/touchscreen/*wm97*
8473F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008474
Mark Brown055bcbc2010-08-13 14:18:12 +01008475WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008476M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008477L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008478T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008479T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008480W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008481S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008482F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008483F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008484F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008485F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008486F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008487F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008488F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008489F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008490F: drivers/input/misc/wm831x-on.c
8491F: drivers/input/touchscreen/wm831x-ts.c
8492F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008493F: drivers/mfd/arizona*
8494F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008495F: drivers/power/wm83*.c
8496F: drivers/rtc/rtc-wm83*.c
8497F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008498F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008499F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008500F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008501F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008502F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008503F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008504F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008505F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008506F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008507F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008508
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008509WORKQUEUE
8510M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008511T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8512S: Maintained
8513F: include/linux/workqueue.h
8514F: kernel/workqueue.c
8515F: Documentation/workqueue.txt
8516
Linus Torvalds1da177e2005-04-16 15:20:36 -07008517X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008518M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008519L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008520S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008521F: Documentation/networking/x25*
8522F: include/net/x25*
8523F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008524
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008525X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008526M: Thomas Gleixner <tglx@linutronix.de>
8527M: Ingo Molnar <mingo@redhat.com>
8528M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008529M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008530T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008532F: Documentation/x86/
8533F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008534
Matthew Garrettd0944852010-02-11 10:40:13 -05008535X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05008536M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008537L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008538T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008539S: Maintained
8540F: drivers/platform/x86
8541
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008542X86 MCE INFRASTRUCTURE
8543M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008544M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008545L: linux-edac@vger.kernel.org
8546S: Maintained
8547F: arch/x86/kernel/cpu/mcheck/*
8548
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008549XC2028/3028 TUNER DRIVER
8550M: Mauro Carvalho Chehab <mchehab@redhat.com>
8551L: linux-media@vger.kernel.org
8552W: http://linuxtv.org
8553T: git git://linuxtv.org/media_tree.git
8554S: Maintained
8555F: drivers/media/tuners/tuner-xc2028.*
8556
Ian Campbellc4468082011-04-27 15:26:46 -07008557XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008558M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008559M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008560L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8561L: virtualization@lists.linux-foundation.org
8562S: Supported
8563F: arch/x86/xen/
8564F: drivers/*/xen-*front.c
8565F: drivers/xen/
8566F: arch/x86/include/asm/xen/
8567F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008568F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07008569
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008570XEN HYPERVISOR ARM
8571M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8572L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8573S: Supported
8574F: arch/arm/xen/
8575F: arch/arm/include/asm/xen/
8576
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008577XEN NETWORK BACKEND DRIVER
8578M: Ian Campbell <ian.campbell@citrix.com>
8579L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8580L: netdev@vger.kernel.org
8581S: Supported
8582F: drivers/net/xen-netback/*
8583
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008584XEN PCI SUBSYSTEM
8585M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008586L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008587S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008588F: arch/x86/pci/*xen*
8589F: drivers/pci/*xen*
8590
8591XEN SWIOTLB SUBSYSTEM
8592M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008593L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008594S: Supported
8595F: arch/x86/xen/*swiotlb*
8596F: drivers/xen/*swiotlb*
8597
Linus Torvalds1da177e2005-04-16 15:20:36 -07008598XFS FILESYSTEM
8599P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008600M: Ben Myers <bpm@sgi.com>
8601M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008602M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008603L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008604W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008605T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008606S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008607F: Documentation/filesystems/xfs.txt
8608F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008609
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008610XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008611M: Anirudha Sarangi <anirudh@xilinx.com>
8612M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008613S: Maintained
8614F: drivers/net/ethernet/xilinx/xilinx_axienet*
8615
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008616XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008617M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008618W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008620F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008621
Peter Korsgaard238b8722006-12-06 20:35:17 -08008622XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008623M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008624L: linux-serial@vger.kernel.org
8625S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008626F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008627
Linus Torvalds1da177e2005-04-16 15:20:36 -07008628YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008629M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008630L: linux-hams@vger.kernel.org
8631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008632F: drivers/net/hamradio/yam*
8633F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008634
Henkaf64a5e2005-10-12 15:02:56 +02008635YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008636M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008637L: usbb2k-api-dev@nongnu.org
8638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008639F: Documentation/input/yealink.txt
8640F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008641
Linus Torvalds1da177e2005-04-16 15:20:36 -07008642Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008643M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008644W: http://yaina.de/jreuter/
8645W: http://www.qsl.net/dl1bke/
8646L: linux-hams@vger.kernel.org
8647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008648F: Documentation/networking/z8530drv.txt
8649F: drivers/net/hamradio/*scc.c
8650F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008651
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008652ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008653M: Daniel Drake <dsd@gentoo.org>
8654M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008655W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008656L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008657L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008659F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008660
Linus Torvalds1da177e2005-04-16 15:20:36 -07008661ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008662L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008663L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008664W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008665T: Mercurial http://linuxtv.org/hg/v4l-dvb
8666S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008667F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008668
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008669ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008670M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008671S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008672F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008673
Linus Torvalds1da177e2005-04-16 15:20:36 -07008674THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008675M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008676L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008677Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008678T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008679S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008680F: *
8681F: */