blob: a92f485f54568589df0cefbe66664d07e4ce4557 [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
Russell King08a5c9a2013-02-11 15:28:51 +0000673M: Russell King <linux@arm.linux.org.uk>
674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700675F: drivers/mmc/host/mmci.*
Russell King2f748aa2013-02-11 15:28:05 +0000676F: include/linux/amba/mmci.h
Russell King2761f5c2007-05-24 06:56:08 +0200677
Russell King1b4304e2013-02-11 15:26:27 +0000678ARM PRIMECELL UART PL010 AND PL011 DRIVERS
679M: Russell King <linux@arm.linux.org.uk>
680S: Maintained
681F: drivers/tty/serial/amba-pl01*.c
682F: include/linux/amba/serial.h
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683
Russell Kingcefbf4e2009-11-22 17:40:28 +0000684ARM PRIMECELL BUS SUPPORT
685M: Russell King <linux@arm.linux.org.uk>
686S: Maintained
687F: drivers/amba/
688F: include/linux/amba/bus.h
689
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800690ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700691M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700692L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800693S: Maintained
694
Sergey Lapin9c784f92008-08-03 02:29:48 +0100695ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700696M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700697L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100698S: Maintained
699
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800700ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700701M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700702L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800703S: Maintained
704
Maxime Ripard1b106692012-11-15 21:51:26 +0100705ARM/Allwinner A1X SoC support
706M: Maxime Ripard <maxime.ripard@free-electrons.com>
707L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
708S: Maintained
709F: arch/arm/mach-sunxi/
710
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800711ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700712M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800713M: Nicolas Ferre <nicolas.ferre@atmel.com>
714M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700715L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200716W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800717W: http://www.linux4sam.org
718S: Supported
719F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100720
Rob Herring986cf2e2011-06-22 11:28:53 -0500721ARM/CALXEDA HIGHBANK ARCHITECTURE
722M: Rob Herring <rob.herring@calxeda.com>
723L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
724S: Maintained
725F: arch/arm/mach-highbank/
726
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300727ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
728M: Anton Vorontsov <avorontsov@mvista.com>
729S: Maintained
730F: arch/arm/mach-cns3xxx/
731T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
732
Alexander Shiyan386ab512012-11-17 17:57:24 +0400733ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
734M: Alexander Shiyan <shc_work@mail.ru>
735L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
736S: Odd Fixes
737F: arch/arm/mach-clps711x/
738
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800739ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100740M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000741M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700742L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800743S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100744F: arch/arm/mach-ep93xx/
745F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800746
747ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700748M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700749L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800750S: Maintained
751
Russell Kingd4275352009-04-16 14:05:27 +0100752ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700753M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700754L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700755S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100756F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700757F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100758
Mike Rapoportd48134e2008-08-20 09:03:26 +0100759ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700760M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700761L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100762S: Maintained
763
Hubert Feurstein94150092009-10-07 08:36:07 +0100764ARM/CONTEC MICRO9 MACHINE SUPPORT
765M: Hubert Feurstein <hubert.feurstein@contec.at>
766S: Maintained
767F: arch/arm/mach-ep93xx/micro9.c
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700770M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771S: Maintained
772
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200773ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100774M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700775L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100776T: git git://git.berlios.de/gemini-board
777S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300778F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200779
Barry Songa990cbd2011-07-12 21:44:10 +0800780ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
781M: Barry Song <baohua.song@csr.com>
782L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
783S: Maintained
784F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800785F: drivers/dma/sirf-dma.c
786F: drivers/i2c/busses/i2c-sirf.c
787F: drivers/pinctrl/pinctrl-sirf.c
788F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800789
Russell Kingd4275352009-04-16 14:05:27 +0100790ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700791M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700792L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100793W: http://www.arm.linux.org.uk/
794S: Maintained
795F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700796F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100797
Russell Kinga9da4f72008-07-12 21:42:04 +0100798ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700799M: Daniel Ribeiro <drwyrm@gmail.com>
800M: Stefan Schmidt <stefan@openezx.org>
801M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200802L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100803W: http://www.openezx.org/
804S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200805T: topgit git://git.openezx.org/openezx.git
806F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100807
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200808ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100809M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700810L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100811S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700812T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300813F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200814
Russell Kingd4275352009-04-16 14:05:27 +0100815ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700816M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700817L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100818W: http://www.arm.linux.org.uk/
819S: Maintained
820F: arch/arm/include/asm/hardware/dec21285.h
821F: arch/arm/mach-footbridge/
822
Sascha Hauer86183a52008-07-24 23:50:35 +0200823ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700824M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700825L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200826S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700827T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100828F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700829F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200830
Shawn Guo8bcb9762011-10-07 22:24:18 +0800831ARM/FREESCALE IMX6
832M: Shawn Guo <shawn.guo@linaro.org>
833L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
834S: Maintained
835T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
836F: arch/arm/mach-imx/*imx6*
837
Shawn Guoa9866a092011-10-21 11:53:34 +0800838ARM/FREESCALE MXS ARM ARCHITECTURE
839M: Shawn Guo <shawn.guo@linaro.org>
840L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
841S: Maintained
842T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
843F: arch/arm/mach-mxs/
844
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800845ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700846M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700847L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800848S: Maintained
849
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100850ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700851M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700852L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100853S: Maintained
854
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200855ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700856M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100857M: Paul Parsons <lost.distance@yahoo.com>
858L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200859S: Maintained
860F: arch/arm/mach-pxa/hx4700.c
861F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100862F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200863
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100864ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700865M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200866W: www.jlime.com
867S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700868T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
869F: arch/arm/mach-sa1100/jornada720.c
870F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100871
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200872ARM/IGEP MACHINE SUPPORT
873M: Enric Balletbo i Serra <eballetbo@gmail.com>
874M: Javier Martinez Canillas <javier@dowhile0.org>
875L: linux-omap@vger.kernel.org
876L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
877S: Maintained
878F: arch/arm/mach-omap2/board-igep0020.c
879
Marek Vasut403d2972010-05-22 00:29:39 +0200880ARM/INCOME PXA270 SUPPORT
881M: Marek Vasut <marek.vasut@gmail.com>
882L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
883S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700884F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200885
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800886ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700887M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700888M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700889L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700890S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100891
892ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700893M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700894L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700895S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800896
897ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700898M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700899M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700901S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800902
903ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700904M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700905M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700906L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700907S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800908
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800909ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700910M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700911L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800912S: Maintained
913
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200914ARM/INTEL IXP4XX ARM ARCHITECTURE
915M: Imre Kaloz <kaloz@openwrt.org>
916M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100917L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200918S: Maintained
919F: arch/arm/mach-ixp4xx/
920
Joe Perches838553c2010-10-26 14:22:59 -0700921ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100922M: Jonathan Cameron <jic23@cam.ac.uk>
923L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
924S: Maintained
925F: arch/arm/mach-pxa/stargate2.c
926F: drivers/pcmcia/pxa2xx_stargate2.c
927
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800928ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700929M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700930M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700931L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700932S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800933
934ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700935M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700936L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800937S: Maintained
938
939ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700940M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700941L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800942S: Maintained
943
Philipp Zabel3b8861712008-07-09 21:27:15 +0100944ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700945M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100946S: Maintained
947
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200948ARM/Marvell Armada 370 and Armada XP SOC support
949M: Jason Cooper <jason@lakedaemon.net>
950M: Andrew Lunn <andrew@lunn.ch>
951M: Gregory Clement <gregory.clement@free-electrons.com>
952L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
953S: Maintained
954F: arch/arm/mach-mvebu/
955
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400956ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
957M: Jason Cooper <jason@lakedaemon.net>
958M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700959L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400960S: Maintained
961F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400962F: arch/arm/mach-kirkwood/
963F: arch/arm/mach-mv78xx0/
964F: arch/arm/mach-orion5x/
965F: arch/arm/plat-orion/
966
Alexander Clouterd69ac132011-04-14 15:22:02 -0700967ARM/Orion SoC/Technologic Systems TS-78xx platform support
968M: Alexander Clouter <alex@digriz.org.uk>
969L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
970W: http://www.digriz.org.uk/ts78xx/kernel
971S: Maintained
972F: arch/arm/mach-orion5x/ts78xx-*
973
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000974ARM/MICREL KS8695 ARCHITECTURE
975M: Greg Ungerer <gerg@uclinux.org>
976L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
977F: arch/arm/mach-ks8695
978S: Odd Fixes
979
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200980ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700981M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700982L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200983F: arch/arm/mach-pxa/mioa701.c
984S: Maintained
985
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100986ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700987M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100988S: Maintained
989
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100990ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700991M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200992M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700993M: STEricsson <STEricsson_nomadik_linux@list.st.com>
994L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
995S: Maintained
996F: arch/arm/mach-nomadik/
997F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100998F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200999T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001000
Andy Green9d762952009-05-19 06:41:42 -03001001ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001002M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001003L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1004W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1005S: Supported
1006
Daniel Walker0c19d212009-12-07 16:53:51 -08001007ARM/QUALCOMM MSM MACHINE SUPPORT
1008M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001009M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001010M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001011L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001012F: arch/arm/mach-msm/
1013F: drivers/video/msm/
1014F: drivers/mmc/host/msm_sdcc.c
1015F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001016F: drivers/tty/serial/msm_serial.h
1017F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001018F: drivers/*/pm8???-*
1019F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001020T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001021S: Maintained
1022
Dirk Opfer8459c152005-11-06 14:27:52 +00001023ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001024M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1025M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001026S: Maintained
1027
Marek Vasut5d783a22009-07-16 13:26:48 +02001028ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001029M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001030L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001031W: http://hackndev.com
1032S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001033F: arch/arm/mach-pxa/include/mach/palmtx.h
1034F: arch/arm/mach-pxa/palmtx.c
1035F: arch/arm/mach-pxa/include/mach/palmt5.h
1036F: arch/arm/mach-pxa/palmt5.c
1037F: arch/arm/mach-pxa/include/mach/palmld.h
1038F: arch/arm/mach-pxa/palmld.c
1039F: arch/arm/mach-pxa/include/mach/palmte2.h
1040F: arch/arm/mach-pxa/palmte2.c
1041F: arch/arm/mach-pxa/include/mach/palmtc.h
1042F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001043
Joe Perchesb57fe922009-12-14 18:00:52 -08001044ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001045M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001046L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001047W: http://hackndev.com
1048S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001049F: arch/arm/mach-pxa/include/mach/palmtreo.h
1050F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001051
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001052ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001053M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001054L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001055W: http://hackndev.com
1056S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001057F: arch/arm/mach-pxa/include/mach/palmz72.h
1058F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001061M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1063S: Maintained
1064
1065ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001066M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001067L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068W: http://www.arm.linux.org.uk/
1069S: Maintained
1070
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001071ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001072M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001073L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001074S: Maintained
1075
Russell Kingd4275352009-04-16 14:05:27 +01001076ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001077M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001078L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001079W: http://www.arm.linux.org.uk/
1080S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001081F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1082F: arch/arm/include/asm/hardware/ioc.h
1083F: arch/arm/include/asm/hardware/iomd.h
1084F: arch/arm/include/asm/hardware/memc.h
1085F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001086F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001087F: drivers/net/ethernet/i825xx/ether1*
1088F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001089F: drivers/scsi/arm/
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001092M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093W: http://www.shark-linux.de/shark.html
1094S: Maintained
1095
Ben Dooksb21477f2009-06-13 10:46:34 +01001096ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001097M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001098M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001099L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001100L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001101W: http://www.fluff.org/ben/linux/
1102S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001103F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001104F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001105F: arch/arm/mach-s3c24*/
1106F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001107F: drivers/*/*s3c2410*
1108F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001109F: drivers/spi/spi-s3c*
1110F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001112ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001113M: Kukjin Kim <kgene.kim@samsung.com>
1114L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1115L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1116S: Maintained
1117F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001118F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001119
Kyungmin Park10ffa962011-03-04 17:36:26 -08001120ARM/SAMSUNG MOBILE MACHINE SUPPORT
1121M: Kyungmin Park <kyungmin.park@samsung.com>
1122L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1123S: Maintained
1124F: arch/arm/mach-s5pv210/mach-aquila.c
1125F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001126F: arch/arm/mach-exynos/mach-universal_c210.c
1127F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001128
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001129ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1130M: Kyungmin Park <kyungmin.park@samsung.com>
1131M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1132L: linux-arm-kernel@lists.infradead.org
1133L: linux-media@vger.kernel.org
1134S: Maintained
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001135F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001136F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001137
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001138ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1139M: Kyungmin Park <kyungmin.park@samsung.com>
1140M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001141M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001142L: linux-arm-kernel@lists.infradead.org
1143L: linux-media@vger.kernel.org
1144S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001145F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001146F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001147
1148ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1149M: Kyungmin Park <kyungmin.park@samsung.com>
1150M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1151L: linux-arm-kernel@lists.infradead.org
1152L: linux-media@vger.kernel.org
1153S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001154F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001155
Paul Mundtd48d38e2010-02-08 12:50:24 +09001156ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001157M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001158M: Magnus Damm <magnus.damm@gmail.com>
1159L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001160W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001161Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001162T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001163S: Supported
1164F: arch/arm/mach-shmobile/
1165F: drivers/sh/
1166
Dinh Nguyen66314222012-07-18 16:07:18 -06001167ARM/SOCFPGA ARCHITECTURE
1168M: Dinh Nguyen <dinguyen@altera.com>
1169S: Maintained
1170F: arch/arm/mach-socfpga/
1171
1172ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1173M: Dinh Nguyen <dinguyen@altera.com>
1174S: Maintained
1175F: drivers/clk/socfpga/
1176
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001177ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001178M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001179L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001180S: Maintained
1181
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001182ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001183M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001184L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1185S: Maintained
1186
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001187ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001188M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001189L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001190S: Maintained
1191
wanzongshun98ad6e32009-02-13 06:04:32 +01001192ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001193M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001194L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001195W: http://www.mcuos.com
1196S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001197F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001198F: drivers/input/keyboard/w90p910_keypad.c
1199F: drivers/input/touchscreen/w90p910_ts.c
1200F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001201F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001202F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001203F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001204F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001205F: drivers/usb/host/ehci-w90x900.c
1206F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001207
Linus Walleij54274d72010-04-04 10:58:03 +01001208ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001209M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001210L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1211S: Supported
1212F: arch/arm/mach-u300/
1213F: drivers/i2c/busses/i2c-stu300.c
1214F: drivers/rtc/rtc-coh901331.c
1215F: drivers/watchdog/coh901327_wdt.c
1216F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001217F: drivers/mfd/ab3100*
1218F: drivers/rtc/rtc-ab3100.c
1219F: drivers/rtc/rtc-coh901331.c
1220T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001221
Linus Walleij87572882010-12-22 09:18:29 +01001222ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001223M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001224M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001225L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1226S: Maintained
1227F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001228F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001229F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001230F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001231F: drivers/mfd/abx500*
1232F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001233F: drivers/mfd/dbx500*
1234F: drivers/mfd/db8500*
1235F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001236F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001237F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001238T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001239
Russell Kingd4275352009-04-16 14:05:27 +01001240ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001241M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001242L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001243W: http://www.arm.linux.org.uk/
1244S: Maintained
1245F: arch/arm/vfp/
1246
Marek Vasute66b6d82010-03-26 06:51:32 +01001247ARM/VOIPAC PXA270 SUPPORT
1248M: Marek Vasut <marek.vasut@gmail.com>
1249L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1250S: Maintained
1251F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001252F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001253
Tony Prisk04529fe2012-07-24 04:19:37 +12001254ARM/VT8500 ARM ARCHITECTURE
1255M: Tony Prisk <linux@prisktech.co.nz>
1256L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1257S: Maintained
1258F: arch/arm/mach-vt8500/
Tony Prisk41fd91b2013-02-08 18:18:03 +13001259F: drivers/clocksource/vt8500_timer.c
1260F: drivers/gpio/gpio-vt8500.c
1261F: drivers/mmc/host/wmt-sdmmc.c
1262F: drivers/pwm/pwm-vt8500.c
1263F: drivers/rtc/rtc-vt8500.c
1264F: drivers/tty/serial/vt8500_serial.c
1265F: drivers/usb/host/ehci-vt8500.c
1266F: drivers/usb/host/uhci-platform.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001267F: drivers/video/vt8500lcdfb.*
1268F: drivers/video/wm8505fb*
1269F: drivers/video/wmt_ge_rops.*
Tony Prisk04529fe2012-07-24 04:19:37 +12001270
Marek Vasute66b6d82010-03-26 06:51:32 +01001271ARM/ZIPIT Z2 SUPPORT
1272M: Marek Vasut <marek.vasut@gmail.com>
1273L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1274S: Maintained
1275F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001276F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001277
Michal Simek51f29d42013-01-21 17:41:46 +01001278ARM/ZYNQ ARCHITECTURE
1279M: Michal Simek <michal.simek@xilinx.com>
1280L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1281W: http://wiki.xilinx.com
1282T: git git://git.xilinx.com/linux-xlnx.git
1283S: Supported
1284F: arch/arm/mach-zynq/
1285
Catalin Marinas38074222012-03-05 11:49:34 +00001286ARM64 PORT (AARCH64 ARCHITECTURE)
1287M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001288M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001289L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1290S: Maintained
1291F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001292F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001293
George Josephd58de032010-03-05 22:17:25 +01001294ASC7621 HARDWARE MONITOR DRIVER
1295M: George Joseph <george.joseph@fairview5.com>
1296L: lm-sensors@lm-sensors.org
1297S: Maintained
1298F: Documentation/hwmon/asc7621
1299F: drivers/hwmon/asc7621.c
1300
Corentin Charyb229ece2011-02-26 10:20:40 +01001301ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001302M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001304L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001305W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001307F: drivers/platform/x86/asus*.c
1308F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001310ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001311M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001312L: lm-sensors@lm-sensors.org
1313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001314F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001315
Andrew Morton953a6472008-11-06 12:53:28 -08001316ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001317M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001318W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001320F: Documentation/crypto/async-tx-api.txt
1321F: crypto/async_tx/
1322F: drivers/dma/
1323F: include/linux/dmaengine.h
1324F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001325
Wolfram Sanga1867d32009-09-18 22:45:51 +02001326AT24 EEPROM DRIVER
Wolfram Sang14d77c42013-02-08 20:54:40 +01001327M: Wolfram Sang <wsa@the-dreams.de>
Wolfram Sanga1867d32009-09-18 22:45:51 +02001328L: linux-i2c@vger.kernel.org
1329S: Maintained
1330F: drivers/misc/eeprom/at24.c
1331F: include/linux/i2c/at24.h
1332
Randy Dunlape7839f22008-10-12 16:11:45 -07001333ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001334M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001335W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001337F: Documentation/aoe/
1338F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Joe Perches9a10a872010-12-01 09:37:55 -08001340ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001341M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001342L: linux-wireless@vger.kernel.org
1343S: Supported
1344F: drivers/net/wireless/ath/*
1345
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001346ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001347M: Jiri Slaby <jirislaby@gmail.com>
1348M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001349M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001350L: linux-wireless@vger.kernel.org
1351L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001352W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001353S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001354F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001355
Kalle Valo12e62d62011-09-13 10:21:25 +03001356ATHEROS ATH6KL WIRELESS DRIVER
1357M: Kalle Valo <kvalo@qca.qualcomm.com>
1358L: linux-wireless@vger.kernel.org
1359W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1360T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1361S: Supported
1362F: drivers/net/wireless/ath/ath6kl/
1363
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001364ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001365M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1366M: Jouni Malinen <jouni@qca.qualcomm.com>
1367M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1368M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001369L: linux-wireless@vger.kernel.org
1370L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001371W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001372S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001373F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001374
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001375WILOCITY WIL6210 WIRELESS DRIVER
1376M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1377L: linux-wireless@vger.kernel.org
1378L: wil6210@qca.qualcomm.com
1379S: Supported
1380W: http://wireless.kernel.org/en/users/Drivers/wil6210
1381F: drivers/net/wireless/ath/wil6210/
1382
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001383CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1384M: Christian Lamparter <chunkeey@googlemail.com>
1385L: linux-wireless@vger.kernel.org
1386W: http://wireless.kernel.org/en/users/Drivers/carl9170
1387S: Maintained
1388F: drivers/net/wireless/ath/carl9170/
1389
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001390ATK0110 HWMON DRIVER
1391M: Luca Tettamanti <kronos.it@gmail.com>
1392L: lm-sensors@lm-sensors.org
1393S: Maintained
1394F: drivers/hwmon/asus_atk0110.c
1395
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001396ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001397M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001399F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001400
Chris Snook7ae115b2008-09-09 03:26:57 -04001401ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001402M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001403M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001404L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001405W: http://sourceforge.net/projects/atl1
1406W: http://atl1.sourceforge.net
1407S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001408F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001411M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001412L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001413L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414W: http://linux-atm.sourceforge.net
1415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001416F: drivers/atm/
1417F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001418F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001420ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001421M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001422S: Maintained
1423F: drivers/mmc/host/atmel-mci.c
1424F: drivers/mmc/host/atmel-mci-regs.h
1425
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001426ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001427M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001428S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001429F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001430
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001431ATMEL DMA DRIVER
1432M: Nicolas Ferre <nicolas.ferre@atmel.com>
1433L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1434S: Supported
1435F: drivers/dma/at_hdmac.c
1436F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001437F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001438
Josh Wu15515542012-03-23 17:56:29 +08001439ATMEL ISI DRIVER
1440M: Josh Wu <josh.wu@atmel.com>
1441L: linux-media@vger.kernel.org
1442S: Supported
Cesar Eduardo Barrosf2294c22013-01-04 15:35:21 -08001443F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001444F: include/media/atmel-isi.h
1445
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001446ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001447M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001448L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001450F: drivers/video/atmel_lcdfb.c
1451F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001452
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001453ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001454M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001455S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001456F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001457
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001458ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001459M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001460S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001461F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001462
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001463ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1464M: Nicolas Ferre <nicolas.ferre@atmel.com>
1465L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1466S: Supported
1467F: drivers/misc/atmel_tclib.c
1468F: drivers/clocksource/tcb_clksrc.c
1469
Josh Wuff2675d2012-03-23 17:56:55 +08001470ATMEL TSADCC DRIVER
1471M: Josh Wu <josh.wu@atmel.com>
1472L: linux-input@vger.kernel.org
1473S: Supported
1474F: drivers/input/touchscreen/atmel_tsadcc.c
1475
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001476ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001477M: Nicolas Ferre <nicolas.ferre@atmel.com>
1478L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001479S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001480F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001483M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001484L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485W: http://www.thekelleys.org.uk/atmel
1486W: http://atmelwlandriver.sourceforge.net/
1487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001488F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Chris Wrighta92b7b82005-07-07 18:12:23 -07001490AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001491M: Al Viro <viro@zeniv.linux.org.uk>
1492M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001493L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001494W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001495T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001497F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001498F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001499F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001500
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001501AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001502M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001503W: http://miguelojeda.es/auxdisplay.htm
1504W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001506F: drivers/auxdisplay/
1507F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001508
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001509AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001510M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1511M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001512W: http://www.atmel.com/products/AVR32/
Matthias Brugger249d9d92013-02-04 14:28:47 -08001513W: http://mirror.egtvedt.no/avr32linux.org/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001514W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001516F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001517
1518AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001519M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1520M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001522F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001525M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001527W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001529F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001530F: include/net/ax25.h
1531F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001533AZ6007 DVB DRIVER
1534M: Mauro Carvalho Chehab <mchehab@redhat.com>
1535L: linux-media@vger.kernel.org
1536W: http://linuxtv.org
1537T: git git://linuxtv.org/media_tree.git
1538S: Maintained
1539F: drivers/media/usb/dvb-usb-v2/az6007.c
1540
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001541B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001542M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001543L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001544L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001545W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001547F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001548
1549B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001550M: Larry Finger <Larry.Finger@lwfinger.net>
1551M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001552L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001553L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001554W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001556F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001557
Richard Purdie300abeb2007-02-07 22:21:07 +00001558BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001559M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001561F: drivers/video/backlight/
1562F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001563
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001564BATMAN ADVANCED
1565M: Marek Lindner <lindner_marek@yahoo.de>
1566M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001567M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001568L: b.a.t.m.a.n@lists.open-mesh.org
1569W: http://www.open-mesh.org/
1570S: Maintained
1571F: net/batman-adv/
1572
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001573BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001574M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001575L: linux-hams@vger.kernel.org
1576W: http://www.baycom.org/~tom/ham/ham.html
1577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001578F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001579
1580BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001581S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001582F: Documentation/filesystems/befs.txt
1583F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001584
1585BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001586M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001588F: Documentation/filesystems/bfs.txt
1589F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001590F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001591
Bryan Wu1394f032007-05-06 14:50:22 -07001592BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001593M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001594L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001595W: http://blackfin.uclinux.org
1596S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001597F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001598
Bryan Wue190d6b2007-07-17 14:43:44 +08001599BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001600L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001601W: http://blackfin.uclinux.org
1602S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001603F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001604
Mike Frysinger566da5b2007-06-11 15:31:30 +08001605BLACKFIN RTC 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
Mike Frysinger566da5b2007-06-11 15:31:30 +08001608W: http://blackfin.uclinux.org
1609S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001610F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001611
Mike Frysinger936ed492010-03-10 15:20:38 -08001612BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001613M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001614L: uclinux-dist-devel@blackfin.uclinux.org
1615W: http://blackfin.uclinux.org
1616S: Supported
1617F: drivers/mmc/host/bfin_sdh.c
1618
Bryan Wu1394f032007-05-06 14:50:22 -07001619BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001620M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001621L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001622W: http://blackfin.uclinux.org
1623S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001624F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001625
Bryan Wu1e6d3202007-07-15 02:50:02 +08001626BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001627M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001628L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001629W: http://blackfin.uclinux.org
1630S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001631F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001632
Bryan Wud24ecfc2007-05-01 23:26:32 +02001633BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001634M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001635L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001636W: http://blackfin.uclinux.org/
1637S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001638F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001639
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001640BLINKM RGB LED DRIVER
1641M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1642S: Maintained
1643F: drivers/leds/leds-blinkm.c
1644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001646M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001647T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001649F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Joern Engel2b54aae2008-02-06 01:38:02 -08001651BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001652M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001653L: linux-mtd@lists.infradead.org
1654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001655F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001656
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001657BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001658M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001659M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001660M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001661L: linux-bluetooth@vger.kernel.org
1662W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001663T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1664T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001666F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001669M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001670M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001671M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001672L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001673W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001674T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1675T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001677F: net/bluetooth/
1678F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001681M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001682M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001683L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001684W: http://sourceforge.net/projects/bonding/
1685S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001686F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001687F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Gary Zambrano39105892006-06-22 17:26:20 -07001689BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001690M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001691L: netdev@vger.kernel.org
1692S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001693F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001694
Michael Chan948c51e2006-06-04 02:51:39 -07001695BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001696M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001697L: netdev@vger.kernel.org
1698S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001699F: drivers/net/ethernet/broadcom/bnx2.*
1700F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001701
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001702BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001703M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001704L: netdev@vger.kernel.org
1705S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001706F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001707
Stephen Warrenf680f252012-09-15 00:18:54 -06001708BROADCOM BCM2835 ARM ARCHICTURE
1709M: Stephen Warren <swarren@wwwdotorg.org>
1710L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1711T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1712S: Maintained
1713F: arch/arm/mach-bcm2835/
1714F: arch/arm/boot/dts/bcm2835*
1715F: arch/arm/configs/bcm2835_defconfig
1716F: drivers/*/*bcm2835*
1717
Michael Chan948c51e2006-06-04 02:51:39 -07001718BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001719M: Matt Carlson <mcarlson@broadcom.com>
1720M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001721L: netdev@vger.kernel.org
1722S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001723F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001724
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001725BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1726M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001727M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001728M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001729M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001730L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001731L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001732S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001733F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001734
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001735BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1736M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1737L: linux-scsi@vger.kernel.org
1738S: Supported
1739F: drivers/scsi/bnx2fc/
1740
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001741BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1742M: Rafał Miłecki <zajec5@gmail.com>
1743L: linux-wireless@vger.kernel.org
1744S: Maintained
1745F: drivers/bcma/
1746F: include/linux/bcma/
1747
Jing Huang7725ccf2009-09-23 17:46:15 -07001748BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001749M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001750L: linux-scsi@vger.kernel.org
1751S: Supported
1752F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001753
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001754BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1755M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001756L: netdev@vger.kernel.org
1757S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001758F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001759
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001760BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001761M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001762L: linux-scsi@vger.kernel.org
1763S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001764F: block/bsg.c
1765F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001766F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001767
Clemens Ladischaf399172011-01-10 16:32:54 +01001768BT87X AUDIO DRIVER
1769M: Clemens Ladisch <clemens@ladisch.de>
1770L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1771T: git git://git.alsa-project.org/alsa-kernel.git
1772S: Maintained
1773F: Documentation/sound/alsa/Bt87x.txt
1774F: sound/pci/bt87x.c
1775
Michael Bueschff1d5c22008-07-25 01:46:10 -07001776BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001777M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001778W: http://bu3sch.de/btgpio.php
1779S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001780F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001781
Joe Percheseb1eb042009-01-21 10:49:16 -05001782BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001783M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001784L: linux-btrfs@vger.kernel.org
1785W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001786Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001787T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001789F: Documentation/filesystems/btrfs.txt
1790F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001793M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001794L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001795W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001796T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001797S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001798F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001799F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Clemens Ladischaf399172011-01-10 16:32:54 +01001801C-MEDIA CMI8788 DRIVER
1802M: Clemens Ladisch <clemens@ladisch.de>
1803L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1804T: git git://git.alsa-project.org/alsa-kernel.git
1805S: Maintained
1806F: sound/pci/oxygen/
1807
Mark Salter21413552011-10-04 11:21:42 -04001808C6X ARCHITECTURE
1809M: Mark Salter <msalter@redhat.com>
1810M: Aurelien Jacquiot <a-jacquiot@ti.com>
1811L: linux-c6x-dev@linux-c6x.org
1812W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1813S: Maintained
1814F: arch/c6x/
1815
David Howellsa5432f52009-04-20 15:46:45 +01001816CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001817M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001818L: linux-cachefs@redhat.com
1819S: Supported
1820F: Documentation/filesystems/caching/cachefiles.txt
1821F: fs/cachefiles/
1822
Jonathan Corbet77d51402007-03-22 19:44:17 -03001823CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001824M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001825L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001826T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001827S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001828F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001829F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001830
Joe Perches201b6ba2010-09-07 20:33:24 +00001831CAIF NETWORK LAYER
1832M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1833L: netdev@vger.kernel.org
1834S: Supported
1835F: Documentation/networking/caif/
1836F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001837F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001838F: include/net/caif/
1839F: net/caif/
1840
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001841CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001842M: Muli Ben-Yehuda <muli@il.ibm.com>
1843M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001844L: discuss@x86-64.org
1845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001846F: arch/x86/kernel/pci-calgary_64.c
1847F: arch/x86/kernel/tce_64.c
1848F: arch/x86/include/asm/calgary.h
1849F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001850
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001851CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001852M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001853L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001854W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001855T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001856S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001857F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001858F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001859F: include/uapi/linux/can.h
1860F: include/uapi/linux/can/bcm.h
1861F: include/uapi/linux/can/raw.h
1862F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001863
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001864CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001865M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001866M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001867L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001868W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001869T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001870S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001871F: drivers/net/can/
1872F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001873F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001874F: include/uapi/linux/can/error.h
1875F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001876
James Morris95d16c72012-03-16 12:05:48 +11001877CAPABILITIES
1878M: Serge Hallyn <serge.hallyn@canonical.com>
1879L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001880S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001881F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001882F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001883F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001884F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001885F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001886
Arnd Bergmannb8154542008-05-16 11:10:59 +02001887CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001888M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001889L: linuxppc-dev@lists.ozlabs.org
1890L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001891W: http://www.ibm.com/developerworks/power/cell/
1892S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001893F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001894F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001895F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001896F: arch/powerpc/oprofile/*cell*
1897F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001898
Sage Weil9030aaf2009-10-06 11:31:15 -07001899CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001900M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001901L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001902W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001903T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001904S: Supported
1905F: Documentation/filesystems/ceph.txt
1906F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001907F: net/ceph
1908F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001909F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001910
David Vrabel18332a82008-09-17 16:34:44 +01001911CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001912L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001913S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001914F: Documentation/usb/WUSB-Design-overview.txt
1915F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001916F: drivers/usb/host/hwa-hc.c
1917F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001918F: drivers/usb/wusbcore/
1919F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001920
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001921CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001922M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001923W: http://miguelojeda.es/auxdisplay.htm
1924W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001926F: drivers/auxdisplay/cfag12864b.c
1927F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001928
1929CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001930M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001931W: http://miguelojeda.es/auxdisplay.htm
1932W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001934F: drivers/auxdisplay/cfag12864bfb.c
1935F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001936
Johannes Berg704232c2007-04-23 12:20:05 -07001937CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001938M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001939L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001940W: http://wireless.kernel.org/
1941T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1942T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001943S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001944F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07001945F: include/net/cfg80211.h
1946F: net/wireless/*
1947X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001948
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001949CHAR and MISC DRIVERS
1950M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001951M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001952T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001953S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001954F: drivers/char/*
1955F: drivers/misc/*
1956
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001957CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001958M: Andy Whitcroft <apw@canonical.com>
Joe Perches10d83f02013-02-21 16:44:15 -08001959M: Joe Perches <joe@perches.com>
1960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001961F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001962
Harry Weif8407f262011-02-25 14:44:15 -08001963CHINESE DOCUMENTATION
1964M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08001965L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08001966L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1967S: Maintained
1968F: Documentation/zh_CN/
1969
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001970CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1971M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1972L: linux-usb@vger.kernel.org
1973S: Maintained
1974F: drivers/usb/chipidea/
1975
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001976CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001977M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001978M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001979M: Neel Patel <neepatel@cisco.com>
1980M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001981S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001982F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001983
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001984CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001985M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001986L: netdev@vger.kernel.org
1987S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001988F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001989
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001990CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001991M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001992L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001994F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001995
Timur Tabid9e9d822008-04-24 08:45:26 +10001996CIRRUS LOGIC CS4270 SOUND DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06001997M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07001998L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabic4ef9bc2013-01-15 14:19:45 -06001999S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002000F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002001
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002002CLEANCACHE API
2003M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2004L: linux-kernel@vger.kernel.org
2005S: Maintained
2006F: mm/cleancache.c
2007F: include/linux/cleancache.h
2008
Russell Kingd4275352009-04-16 14:05:27 +01002009CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002010M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002011S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002012F: include/linux/clk.h
2013
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002014CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002015M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002016M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
2017M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002018L: linux-scsi@vger.kernel.org
2019S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002020F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002021
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002022CMPC ACPI DRIVER
2023M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2024M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05002025L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002026S: Supported
2027F: drivers/platform/x86/classmate-laptop.c
2028
Nicolas Palix74425ee2010-06-06 17:15:01 +02002029COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002030M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002031M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002032M: Nicolas Palix <nicolas.palix@imag.fr>
2033L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002034W: http://coccinelle.lip6.fr/
2035S: Supported
2036F: scripts/coccinelle/
2037F: scripts/coccicheck
2038
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002040M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041M: coda@cs.cmu.edu
2042L: codalist@coda.cs.cmu.edu
2043W: http://www.coda.cs.cmu.edu/
2044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002045F: Documentation/filesystems/coda.txt
2046F: fs/coda/
2047F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002048F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Mike Turquette7704add2012-05-02 18:37:45 -07002050COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002051M: Mike Turquette <mturquette@linaro.org>
2052L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2053T: git git://git.linaro.org/people/mturquette/linux.git
2054S: Maintained
2055F: drivers/clk/clk.c
2056F: drivers/clk/clk-*
2057F: include/linux/clk-pr*
2058
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002059COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002060M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002061L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002062L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002063W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002064Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002065T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002066S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002067F: Documentation/filesystems/cifs.txt
2068F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002071M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002072L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002074F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002077M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002078L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002080F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002083M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002084L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002086F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002088COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002089M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002090L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002092F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002093
Simon Arlott949be0f2007-03-06 02:47:46 -08002094CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002095M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002096L: accessrunner-general@lists.sourceforge.net
2097W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002099F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002100
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002101CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002102M: Joel Becker <jlbec@evilplan.org>
2103T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002104S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002105F: fs/configfs/
2106F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002107
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002108CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002109M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002110L: netdev@vger.kernel.org
2111S: Maintained
2112F: drivers/connector/
2113
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002114CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002115M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002116M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002117L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002118L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002119T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002121F: include/linux/cgroup*
2122F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002123F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002124
Rudolf Marekbebe4672007-05-08 17:22:02 +02002125CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002126M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002127L: lm-sensors@lm-sensors.org
2128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002129F: Documentation/hwmon/coretemp
2130F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002133M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134W: http://www.fi.muni.cz/~kas/cosa/
2135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002136F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Florian Fainelli4371ee32009-06-01 02:43:17 -07002138CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002139M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002140L: netdev@vger.kernel.org
2141S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002142F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002145M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002146L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002147L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002149F: drivers/cpufreq/
2150F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
2152CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002153M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002155F: arch/x86/kernel/cpuid.c
2156F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002158CPU POWER MONITORING SUBSYSTEM
2159M: Dominik Brodowski <linux@dominikbrodowski.net>
2160M: Thomas Renninger <trenn@suse.de>
2161S: Maintained
2162F: tools/power/cpupower
2163
Paul Jacksoned90fb42005-09-27 21:45:37 -07002164CPUSETS
Li Zefanf47b89c2013-01-11 17:29:17 +08002165M: Li Zefan <lizefan@huawei.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002166W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002167W: http://oss.sgi.com/projects/cpusets/
Li Zefanf47b89c2013-01-11 17:29:17 +08002168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002169F: Documentation/cgroups/cpusets.txt
2170F: include/linux/cpuset.h
2171F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002172
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002174W: http://sourceforge.net/projects/cramfs/
2175S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002176F: Documentation/filesystems/cramfs.txt
2177F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002180M: Mikael Starvik <starvik@axis.com>
2181M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002182L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183W: http://developer.axis.com
2184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002185F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002186F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
2188CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002189M: Herbert Xu <herbert@gondor.apana.org.au>
2190M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002192T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002194F: Documentation/crypto/
2195F: arch/*/crypto/
2196F: crypto/
2197F: drivers/crypto/
2198F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Neil Horman5b07bd52009-02-05 16:03:04 +11002200CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002201M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002202L: linux-crypto@vger.kernel.org
2203S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002204F: crypto/ansi_cprng.c
2205F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002206
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002207CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002208M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002210F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002211
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002212CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002213M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002214L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002215L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002216T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002217W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002218W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002220F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002221F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002222F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002223
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002224CX88 VIDEO4LINUX DRIVER
2225M: Mauro Carvalho Chehab <mchehab@redhat.com>
2226L: linux-media@vger.kernel.org
2227W: http://linuxtv.org
2228T: git git://linuxtv.org/media_tree.git
2229S: Odd fixes
2230F: Documentation/video4linux/cx88/
2231F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002232
Antti Palosaari91952bc2012-10-01 12:28:46 -03002233CXD2820R MEDIA DRIVER
2234M: Antti Palosaari <crope@iki.fi>
2235L: linux-media@vger.kernel.org
2236W: http://linuxtv.org/
2237W: http://palosaari.fi/linux/
2238Q: http://patchwork.linuxtv.org/project/linux-media/list/
2239T: git git://linuxtv.org/anttip/media_tree.git
2240S: Maintained
2241F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002242
Steve Wisee5ec3782008-05-20 14:06:33 -07002243CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002244M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002245L: netdev@vger.kernel.org
2246W: http://www.chelsio.com
2247S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002248F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002249
2250CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002251M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002252L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002253W: http://www.openfabrics.org
2254S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002255F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002256
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002257CXGB4 ETHERNET DRIVER (CXGB4)
2258M: Dimitris Michailidis <dm@chelsio.com>
2259L: netdev@vger.kernel.org
2260W: http://www.chelsio.com
2261S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002262F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002263
2264CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2265M: Steve Wise <swise@chelsio.com>
2266L: linux-rdma@vger.kernel.org
2267W: http://www.openfabrics.org
2268S: Supported
2269F: drivers/infiniband/hw/cxgb4/
2270
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002271CXGB4VF ETHERNET DRIVER (CXGB4VF)
2272M: Casey Leedom <leedom@chelsio.com>
2273L: netdev@vger.kernel.org
2274W: http://www.chelsio.com
2275S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002276F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002277
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002278STMMAC ETHERNET DRIVER
2279M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2280L: netdev@vger.kernel.org
2281W: http://www.stlinux.com
2282S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002283F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002284
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002286M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002287L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288W: http://www.arm.linux.org.uk/
2289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002290F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002293M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002294W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002296F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
2298CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002300S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002301F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002302F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002303F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
2305CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002307S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002308F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002310CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002311M: Javier Martinez Canillas <javier@dowhile0.org>
2312L: linux-input@vger.kernel.org
2313S: Maintained
2314F: drivers/input/touchscreen/cyttsp*
2315F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002316
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002318M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319W: http://yaina.de/jreuter/
2320W: http://www.qsl.net/dl1bke/
2321L: linux-hams@vger.kernel.org
2322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002323F: net/ax25/af_ax25.c
2324F: net/ax25/ax25_dev.c
2325F: net/ax25/ax25_ds_*
2326F: net/ax25/ax25_in.c
2327F: net/ax25/ax25_out.c
2328F: net/ax25/ax25_timer.c
2329F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002331DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002332L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002333S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002334F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002335F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002336
2337DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002338M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002339W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002340M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002342F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002343
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002345M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002346M: Ali Akcaagac <aliakc@web.de>
2347M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002349L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350L: http://lists.twibble.org/mailman/listinfo/dc395x/
2351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002352F: Documentation/scsi/dc395x.txt
2353F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002355DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002356M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002357L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002358W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002360F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002361F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002362F: include/linux/tfrc.h
2363F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002364
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366W: http://linux-decnet.sourceforge.net
2367L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002368S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002369F: Documentation/networking/decnet.txt
2370F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
2372DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002373M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002375F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002377DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002378M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002379L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002381F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002384M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385W: http://www.debian.org/~dz/i8k/
2386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002387F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002388F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
Doug Warzecha90563ec2005-09-06 15:17:15 -07002390DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002391M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002393F: Documentation/dcdbas.txt
2394F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002395
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002396DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002397M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002398S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002399F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002400
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002401DESIGNWARE USB3 DRD IP DRIVER
2402M: Felipe Balbi <balbi@ti.com>
2403L: linux-usb@vger.kernel.org
2404L: linux-omap@vger.kernel.org
2405T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2406S: Maintained
2407F: drivers/usb/dwc3/
2408
Kyungmin Park89d07762012-01-10 15:09:09 -08002409DEVICE FREQUENCY (DEVFREQ)
2410M: MyungJoo Ham <myungjoo.ham@samsung.com>
2411M: Kyungmin Park <kyungmin.park@samsung.com>
2412L: linux-kernel@vger.kernel.org
2413S: Maintained
2414F: drivers/devfreq/
2415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002417M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419S: Maintained
2420
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002421DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002422M: Alasdair Kergon <agk@redhat.com>
2423M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002424L: dm-devel@redhat.com
2425W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002426Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002427T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002429F: Documentation/device-mapper/
2430F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002431F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002432F: include/linux/device-mapper.h
2433F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002434
Guenter Roeck335d7c52011-01-26 11:45:49 -08002435DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002436M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002437L: linux-i2c@vger.kernel.org
2438S: Maintained
2439F: drivers/i2c/busses/i2c-diolan-u2c.c
2440
Randy Dunlape7839f22008-10-12 16:11:45 -07002441DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002442M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002444F: Documentation/filesystems/dnotify.txt
2445F: fs/notify/dnotify/
2446F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
2448DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002449M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2451W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2452W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2453S: Maintained
2454
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002455DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002456M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002458F: Documentation/filesystems/quota.txt
2459F: fs/quota/
2460F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002461F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462
Bernie Thompson702686a2012-03-01 13:52:13 -08002463DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2464M: Bernie Thompson <bernie@plugable.com>
2465L: linux-fbdev@vger.kernel.org
2466S: Maintained
2467W: http://plugable.com/category/projects/udlfb/
2468F: drivers/video/udlfb.c
2469F: include/video/udlfb.h
2470F: Documentation/fb/udlfb.txt
2471
Randy Dunlape7839f22008-10-12 16:11:45 -07002472DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002473M: Christine Caulfield <ccaulfie@redhat.com>
2474M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002475L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002476W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002477T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002478S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002479F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002480
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302481DMA BUFFER SHARING FRAMEWORK
2482M: Sumit Semwal <sumit.semwal@linaro.org>
2483S: Maintained
2484L: linux-media@vger.kernel.org
2485L: dri-devel@lists.freedesktop.org
2486L: linaro-mm-sig@lists.linaro.org
2487F: drivers/base/dma-buf*
2488F: include/linux/dma-buf*
2489F: Documentation/dma-buf-sharing.txt
2490T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2491
Dan Williamsb3e5f262007-08-07 10:26:35 -07002492DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002493M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002494M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002495S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002496F: drivers/dma/
2497F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302498T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2499T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002500
Juerg Haefligerb8250372007-06-09 10:11:16 -04002501DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002502M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002503L: lm-sensors@lm-sensors.org
2504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002505F: Documentation/hwmon/dme1737
2506F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002507
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002508DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002509M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002510L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002511S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002512F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002513
Joe Perches7d2c86b2009-04-07 20:59:01 -07002514DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002515M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002516L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002517T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002519F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002522M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523L: blinux-list@redhat.com
2524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002525F: drivers/char/dtlk.c
2526F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002528DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002529M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002530L: linux-scsi@vger.kernel.org
2531W: http://www.adaptec.com/
2532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002533F: drivers/scsi/dpt*
2534F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002535
Philipp Reisnerb411b362009-09-25 16:07:19 -07002536DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002537P: Philipp Reisner
2538P: Lars Ellenberg
2539M: drbd-dev@lists.linbit.com
2540L: drbd-user@lists.linbit.com
2541W: http://www.drbd.org
2542T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2543T: git git://git.drbd.org/drbd-8.3.git
2544S: Supported
2545F: drivers/block/drbd/
2546F: lib/lru_cache.c
2547F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002548
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002549DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002550M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002551T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002553F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002554F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002555F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002556F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002557F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002558F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002559F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
2561DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002562M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002563L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002564T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002566F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002567F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002568F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Chris Wilson8daf7472010-09-28 14:07:26 +01002570INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002571M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002572L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002573L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002574T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002575S: Supported
2576F: drivers/gpu/drm/i915
2577F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002578F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002579
Kyungmin Park398a6d42011-11-02 11:33:16 +09002580DRM DRIVERS FOR EXYNOS
2581M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002582M: Joonyoung Shim <jy0922.shim@samsung.com>
2583M: Seung-Woo Kim <sw0312.kim@samsung.com>
2584M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002585L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002586T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002587S: Supported
2588F: drivers/gpu/drm/exynos
2589F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002590F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002591
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002592DRM DRIVERS FOR NVIDIA TEGRA
2593M: Thierry Reding <thierry.reding@avionic-design.de>
2594L: dri-devel@lists.freedesktop.org
2595L: linux-tegra@vger.kernel.org
2596T: git git://gitorious.org/thierryreding/linux.git
2597S: Maintained
2598F: drivers/gpu/drm/tegra/
2599F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2600
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002602M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002603L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002605F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
Antti Palosaari91952bc2012-10-01 12:28:46 -03002607DVB_USB_AF9015 MEDIA DRIVER
2608M: Antti Palosaari <crope@iki.fi>
2609L: linux-media@vger.kernel.org
2610W: http://linuxtv.org/
2611W: http://palosaari.fi/linux/
2612Q: http://patchwork.linuxtv.org/project/linux-media/list/
2613T: git git://linuxtv.org/anttip/media_tree.git
2614S: Maintained
2615F: drivers/media/usb/dvb-usb-v2/af9015*
2616
2617DVB_USB_AF9035 MEDIA DRIVER
2618M: Antti Palosaari <crope@iki.fi>
2619L: linux-media@vger.kernel.org
2620W: http://linuxtv.org/
2621W: http://palosaari.fi/linux/
2622Q: http://patchwork.linuxtv.org/project/linux-media/list/
2623T: git git://linuxtv.org/anttip/media_tree.git
2624S: Maintained
2625F: drivers/media/usb/dvb-usb-v2/af9035*
2626
2627DVB_USB_ANYSEE MEDIA DRIVER
2628M: Antti Palosaari <crope@iki.fi>
2629L: linux-media@vger.kernel.org
2630W: http://linuxtv.org/
2631W: http://palosaari.fi/linux/
2632Q: http://patchwork.linuxtv.org/project/linux-media/list/
2633T: git git://linuxtv.org/anttip/media_tree.git
2634S: Maintained
2635F: drivers/media/usb/dvb-usb-v2/anysee*
2636
2637DVB_USB_AU6610 MEDIA DRIVER
2638M: Antti Palosaari <crope@iki.fi>
2639L: linux-media@vger.kernel.org
2640W: http://linuxtv.org/
2641W: http://palosaari.fi/linux/
2642Q: http://patchwork.linuxtv.org/project/linux-media/list/
2643T: git git://linuxtv.org/anttip/media_tree.git
2644S: Maintained
2645F: drivers/media/usb/dvb-usb-v2/au6610*
2646
2647DVB_USB_CE6230 MEDIA DRIVER
2648M: Antti Palosaari <crope@iki.fi>
2649L: linux-media@vger.kernel.org
2650W: http://linuxtv.org/
2651W: http://palosaari.fi/linux/
2652Q: http://patchwork.linuxtv.org/project/linux-media/list/
2653T: git git://linuxtv.org/anttip/media_tree.git
2654S: Maintained
2655F: drivers/media/usb/dvb-usb-v2/ce6230*
2656
Michael Krufkyd099dea2012-10-02 00:56:20 -03002657DVB_USB_CXUSB MEDIA DRIVER
2658M: Michael Krufky <mkrufky@linuxtv.org>
2659L: linux-media@vger.kernel.org
2660W: http://linuxtv.org/
2661W: http://github.com/mkrufky
2662Q: http://patchwork.linuxtv.org/project/linux-media/list/
2663T: git git://linuxtv.org/media_tree.git
2664S: Maintained
Cesar Eduardo Barros9819da62013-01-04 15:35:25 -08002665F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002666
Antti Palosaari91952bc2012-10-01 12:28:46 -03002667DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2668M: Antti Palosaari <crope@iki.fi>
2669L: linux-media@vger.kernel.org
2670W: http://linuxtv.org/
2671W: http://palosaari.fi/linux/
2672Q: http://patchwork.linuxtv.org/project/linux-media/list/
2673T: git git://linuxtv.org/anttip/media_tree.git
2674S: Maintained
2675F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2676
2677DVB_USB_EC168 MEDIA DRIVER
2678M: Antti Palosaari <crope@iki.fi>
2679L: linux-media@vger.kernel.org
2680W: http://linuxtv.org/
2681W: http://palosaari.fi/linux/
2682Q: http://patchwork.linuxtv.org/project/linux-media/list/
2683T: git git://linuxtv.org/anttip/media_tree.git
2684S: Maintained
2685F: drivers/media/usb/dvb-usb-v2/ec168*
2686
Michael Krufky8856f5f2012-10-02 00:55:50 -03002687DVB_USB_MXL111SF MEDIA DRIVER
2688M: Michael Krufky <mkrufky@linuxtv.org>
2689L: linux-media@vger.kernel.org
2690W: http://linuxtv.org/
2691W: http://github.com/mkrufky
2692Q: http://patchwork.linuxtv.org/project/linux-media/list/
2693T: git git://linuxtv.org/mkrufky/mxl111sf.git
2694S: Maintained
2695F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2696
Antti Palosaari91952bc2012-10-01 12:28:46 -03002697DVB_USB_RTL28XXU MEDIA DRIVER
2698M: Antti Palosaari <crope@iki.fi>
2699L: linux-media@vger.kernel.org
2700W: http://linuxtv.org/
2701W: http://palosaari.fi/linux/
2702Q: http://patchwork.linuxtv.org/project/linux-media/list/
2703T: git git://linuxtv.org/anttip/media_tree.git
2704S: Maintained
2705F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2706
2707DVB_USB_V2 MEDIA DRIVER
2708M: Antti Palosaari <crope@iki.fi>
2709L: linux-media@vger.kernel.org
2710W: http://linuxtv.org/
2711W: http://palosaari.fi/linux/
2712Q: http://patchwork.linuxtv.org/project/linux-media/list/
2713T: git git://linuxtv.org/anttip/media_tree.git
2714S: Maintained
2715F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2716F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2717
Jason Baronac0ac382011-08-11 14:36:43 -04002718DYNAMIC DEBUG
2719M: Jason Baron <jbaron@redhat.com>
2720S: Maintained
2721F: lib/dynamic_debug.c
2722F: include/linux/dynamic_debug.h
2723
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002724DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002725M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002726S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002727F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002728
Antti Palosaari91952bc2012-10-01 12:28:46 -03002729E4000 MEDIA DRIVER
2730M: Antti Palosaari <crope@iki.fi>
2731L: linux-media@vger.kernel.org
2732W: http://linuxtv.org/
2733W: http://palosaari.fi/linux/
2734Q: http://patchwork.linuxtv.org/project/linux-media/list/
2735T: git git://linuxtv.org/anttip/media_tree.git
2736S: Maintained
2737F: drivers/media/tuners/e4000*
2738
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002740M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002741L: linux-eata@i-connect.net
2742L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002744F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
2746EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002747M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748L: linux-scsi@vger.kernel.org
2749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002750F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
2752EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002753M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002754L: linux-eata@i-connect.net
2755L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002757F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
2759EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002760M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002761L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762W: http://ebtables.sourceforge.net/
2763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002764F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002765F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002766F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
Antti Palosaari91952bc2012-10-01 12:28:46 -03002768EC100 MEDIA DRIVER
2769M: Antti Palosaari <crope@iki.fi>
2770L: linux-media@vger.kernel.org
2771W: http://linuxtv.org/
2772W: http://palosaari.fi/linux/
2773Q: http://patchwork.linuxtv.org/project/linux-media/list/
2774T: git git://linuxtv.org/anttip/media_tree.git
2775S: Maintained
2776F: drivers/media/dvb-frontends/ec100*
2777
Michael Halcrow237fead2006-10-04 02:16:22 -07002778ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002779M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002780M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002781L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002782W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002783S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002784F: Documentation/filesystems/ecryptfs.txt
2785F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002786
Alan Coxda9bb1d2006-01-18 17:44:13 -08002787EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002788M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002789L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002790W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002791S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002792F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002793F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002794F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002795
Borislav Petkovc476c232009-05-20 20:31:58 +02002796EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002797M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002798M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002799L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002800W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002801S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002802F: drivers/edac/amd64_edac*
2803
Ralf Baechlef65aad42012-10-17 00:39:09 +02002804EDAC-CAVIUM
2805M: Ralf Baechle <ralf@linux-mips.org>
2806M: David Daney <david.daney@cavium.com>
2807L: linux-edac@vger.kernel.org
2808L: linux-mips@linux-mips.org
2809W: bluesmoke.sourceforge.net
2810S: Supported
2811F: drivers/edac/octeon_edac*
2812
Dave Peterson0e438e32006-03-26 01:38:55 -08002813EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002814M: Mark Gross <mark.gross@intel.com>
2815M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002816L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002817W: bluesmoke.sourceforge.net
2818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002819F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002820
2821EDAC-E7XXX
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
Dave Peterson0e438e32006-03-26 01:38:55 -08002824W: bluesmoke.sourceforge.net
2825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002826F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002827
Douglas Thompson6bc78402007-07-19 01:50:12 -07002828EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002829M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002830L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002831W: bluesmoke.sourceforge.net
2832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002833F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002834
2835EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002836M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002837L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002838W: bluesmoke.sourceforge.net
2839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002840F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002841
2842EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002843M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002844L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002845W: bluesmoke.sourceforge.net
2846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002847F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002848
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002849EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002850M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002851L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002852W: bluesmoke.sourceforge.net
2853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002854F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002855
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002856EDAC-I7300
2857M: Mauro Carvalho Chehab <mchehab@redhat.com>
2858L: linux-edac@vger.kernel.org
2859W: bluesmoke.sourceforge.net
2860S: Maintained
2861F: drivers/edac/i7300_edac.c
2862
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002863EDAC-I7CORE
2864M: Mauro Carvalho Chehab <mchehab@redhat.com>
2865L: linux-edac@vger.kernel.org
2866W: bluesmoke.sourceforge.net
2867S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002868F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002869
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002870EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002871M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302872M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002873L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002874W: bluesmoke.sourceforge.net
2875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002876F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002877
2878EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002879M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002880L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002881W: bluesmoke.sourceforge.net
2882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002883F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002884
Dave Peterson0e438e32006-03-26 01:38:55 -08002885EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002886M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002887L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002888W: bluesmoke.sourceforge.net
2889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002890F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002891
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002892EDAC-SBRIDGE
2893M: Mauro Carvalho Chehab <mchehab@redhat.com>
2894L: linux-edac@vger.kernel.org
2895W: bluesmoke.sourceforge.net
2896S: Maintained
2897F: drivers/edac/sb_edac.c
2898
Clemens Ladischaf399172011-01-10 16:32:54 +01002899EDIROL UA-101/UA-1000 DRIVER
2900M: Clemens Ladisch <clemens@ladisch.de>
2901L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2902T: git git://git.alsa-project.org/alsa-kernel.git
2903S: Maintained
2904F: sound/usb/misc/ua101.c
2905
Matt Fleming1f7df952012-10-03 10:04:02 +01002906EXTENSIBLE FIRMWARE INTERFACE (EFI)
2907M: Matt Fleming <matt.fleming@intel.com>
2908L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002909T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002910S: Maintained
2911F: Documentation/x86/efi-stub.txt
2912F: arch/ia64/kernel/efi.c
2913F: arch/x86/boot/compressed/eboot.[ch]
2914F: arch/x86/include/asm/efi.h
2915F: arch/x86/platform/efi/*
2916F: drivers/firmware/efivars.c
2917F: include/linux/efi*.h
2918
Peter Jones85a00d92010-09-22 13:05:04 -07002919EFIFB FRAMEBUFFER DRIVER
2920L: linux-fbdev@vger.kernel.org
2921M: Peter Jones <pjones@redhat.com>
2922S: Maintained
2923F: drivers/video/efifb.c
2924
Josh Triplett0bee8d22006-07-30 03:03:58 -07002925EFS FILESYSTEM
2926W: http://aeschi.ch.eu.org/efs/
2927S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002928F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002929
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002930EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002931M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2932M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002933L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002934S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002935F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002936
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002937EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002938M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002939L: netdev@vger.kernel.org
2940S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002941F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002942
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02002943EM28XX VIDEO4LINUX DRIVER
2944M: Mauro Carvalho Chehab <mchehab@redhat.com>
2945L: linux-media@vger.kernel.org
2946W: http://linuxtv.org
2947T: git git://linuxtv.org/media_tree.git
2948S: Maintained
2949F: drivers/media/usb/em28xx/
2950
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002951EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002952M: Paul Gortmaker <paul.gortmaker@windriver.com>
2953M: Matt Mackall <mpm@selenic.com>
2954M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002955L: linux-embedded@vger.kernel.org
2956S: Maintained
2957
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002958EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002959M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002960L: linux-scsi@vger.kernel.org
2961W: http://sourceforge.net/projects/lpfcxxxx
2962S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002963F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002964
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002965ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002966M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002967S: Maintained
2968F: drivers/misc/cb710/
2969F: drivers/mmc/host/cb710-mmc.*
2970F: include/linux/cb710.h
2971
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002972ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2973M: Maxim Levitsky <maximlevitsky@gmail.com>
2974S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002975F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002976
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002977EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002978M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002979S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002980T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002981F: drivers/video/s1d13xxxfb.c
2982F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002983
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002985M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002986L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002988F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
2990ETHERNET BRIDGE
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08002991M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07002992L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002993L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002994W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002996F: include/linux/netfilter_bridge/
2997F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003000M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003001L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003003F: Documentation/filesystems/ext2.txt
3004F: fs/ext2/
3005F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006
3007EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003008M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003009M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003010M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003011L: linux-ext4@vger.kernel.org
3012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003013F: Documentation/filesystems/ext3.txt
3014F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003015
3016EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003017M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003018M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003019L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003020W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003021Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003023F: Documentation/filesystems/ext4.txt
3024F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
Mimi Zoharc5532b02011-08-17 18:52:24 -04003026Extended Verification Module (EVM)
3027M: Mimi Zohar <zohar@us.ibm.com>
3028S: Supported
3029F: security/integrity/evm/
3030
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003031EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3032M: MyungJoo Ham <myungjoo.ham@samsung.com>
3033M: Chanwoo Choi <cw00.choi@samsung.com>
3034L: linux-kernel@vger.kernel.org
3035S: Maintained
3036F: drivers/extcon/
3037F: Documentation/extcon/
3038
Jingoo Han0a799512012-02-06 11:30:39 +09003039EXYNOS DP DRIVER
3040M: Jingoo Han <jg1.han@samsung.com>
3041L: linux-fbdev@vger.kernel.org
3042S: Maintained
3043F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003044F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003045
Donghwa Lee33ad3912012-03-06 11:44:58 +09003046EXYNOS MIPI DISPLAY DRIVERS
3047M: Inki Dae <inki.dae@samsung.com>
3048M: Donghwa Lee <dh09.lee@samsung.com>
3049M: Kyungmin Park <kyungmin.park@samsung.com>
3050L: linux-fbdev@vger.kernel.org
3051S: Maintained
3052F: drivers/video/exynos/exynos_mipi*
3053F: include/video/exynos_mipi*
3054
Jean Delvaree53004e2006-01-09 23:26:14 +01003055F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003056M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003057L: lm-sensors@lm-sensors.org
3058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003059F: Documentation/hwmon/f71805f
3060F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003061
Michael Büscheea977e2012-04-02 12:14:32 -03003062FC0011 TUNER DRIVER
3063M: Michael Buesch <m@bues.ch>
3064L: linux-media@vger.kernel.org
3065S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003066F: drivers/media/tuners/fc0011.h
3067F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003068
Antti Palosaari91952bc2012-10-01 12:28:46 -03003069FC2580 MEDIA DRIVER
3070M: Antti Palosaari <crope@iki.fi>
3071L: linux-media@vger.kernel.org
3072W: http://linuxtv.org/
3073W: http://palosaari.fi/linux/
3074Q: http://patchwork.linuxtv.org/project/linux-media/list/
3075T: git git://linuxtv.org/anttip/media_tree.git
3076S: Maintained
3077F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078
Eric Paris88b2dbd2010-08-18 12:25:50 -04003079FANOTIFY
3080M: Eric Paris <eparis@redhat.com>
3081S: Maintained
3082F: fs/notify/fanotify/
3083F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003084F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003085
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003087M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088W: http://www.farsite.co.uk/
3089S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003090F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091
Akinobu Mitac5408b82007-04-23 14:41:20 -07003092FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003093M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003094S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003095F: Documentation/fault-injection/
3096F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003097
Robert Lovecae727d2010-02-16 12:16:00 -08003098FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3099M: Robert Love <robert.w.love@intel.com>
3100L: devel@open-fcoe.org
3101W: www.Open-FCoE.org
3102S: Supported
3103F: drivers/scsi/libfc/
3104F: drivers/scsi/fcoe/
3105F: include/scsi/fc/
3106F: include/scsi/libfc.h
3107F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003108F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003109
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003110FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003111M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003112L: linux-fsdevel@vger.kernel.org
3113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003114F: include/linux/fcntl.h
3115F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003116F: include/uapi/linux/fcntl.h
3117F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003118F: fs/fcntl.c
3119F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003120
3121FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003122M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003123L: linux-fsdevel@vger.kernel.org
3124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003125F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003126
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003127FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003128M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003129L: lm-sensors@lm-sensors.org
3130S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003131F: drivers/hwmon/f75375s.c
3132F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003133
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003134FIREWIRE AUDIO DRIVERS
3135M: Clemens Ladisch <clemens@ladisch.de>
3136L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3137T: git git://git.alsa-project.org/alsa-kernel.git
3138S: Maintained
3139F: sound/firewire/
3140
Stefan Richtereb86ec52012-11-03 09:25:20 +01003141FIREWIRE MEDIA DRIVERS (firedtv)
3142M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3143L: linux-media@vger.kernel.org
3144L: linux1394-devel@lists.sourceforge.net
3145T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3146S: Maintained
3147F: drivers/media/firewire/
3148
Chris Boota511ce32012-04-14 17:50:35 -07003149FIREWIRE SBP-2 TARGET
3150M: Chris Boot <bootc@bootc.net>
3151L: linux-scsi@vger.kernel.org
3152L: target-devel@vger.kernel.org
3153L: linux1394-devel@lists.sourceforge.net
3154T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3155S: Maintained
3156F: drivers/target/sbp/
3157
Joe Perches7d2c86b2009-04-07 20:59:01 -07003158FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003159M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003160L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003161W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003162T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003164F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003165F: include/linux/firewire.h
3166F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003167F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003168
3169FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003170M: Ming Lei <ming.lei@canonical.com>
3171L: linux-kernel@vger.kernel.org
3172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003173F: Documentation/firmware_class/
3174F: drivers/base/firmware*.c
3175F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003176
Jiri Kosina8206f662012-05-18 13:52:29 +02003177FLOPPY DRIVER
3178M: Jiri Kosina <jkosina@suse.cz>
3179T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3180S: Odd fixes
3181F: drivers/block/floppy.c
3182
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003183FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003184M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003185W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003187F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003188
3189FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003190L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003191S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003192F: drivers/net/wan/dlci.c
3193F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003194
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003196M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003197L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003199Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003200T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003202F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003203F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003204F: drivers/video/
3205F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003206F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003207F: include/uapi/video/
3208F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209
Timur Tabia57c1882012-10-16 17:33:42 -05003210FREESCALE DIU FRAMEBUFFER DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003211M: Timur Tabi <timur@tabi.org>
Timur Tabia57c1882012-10-16 17:33:42 -05003212L: linux-fbdev@vger.kernel.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003213S: Maintained
Timur Tabia57c1882012-10-16 17:33:42 -05003214F: drivers/video/fsl-diu-fb.*
3215
Zhang Wei173acc72008-03-01 07:42:48 -07003216FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003217M: Li Yang <leoli@freescale.com>
3218M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003219L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003221F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003222
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003223FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003224M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003225L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003226L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003228F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003229
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003230FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003231M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003232L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003233L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003234S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003235F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003236F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003237
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003238FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003239M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3240M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003241L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003242L: netdev@vger.kernel.org
3243S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003244F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003245F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003246
Timur Tabid9e9d822008-04-24 08:45:26 +10003247FREESCALE QUICC ENGINE LIBRARY
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003248L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003249S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003250F: arch/powerpc/sysdev/qe_lib/
3251F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003252
Joe Perchesb55ef9292009-10-26 16:49:46 -07003253FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003254M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003255L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003256L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003257S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003258F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003259
Li Yangbeaf53b2007-05-25 13:54:02 +08003260FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003261M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003262L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003263L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003264S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003265F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003266
Timur Tabid9e9d822008-04-24 08:45:26 +10003267FREESCALE QUICC ENGINE UCC UART DRIVER
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003268M: Timur Tabi <timur@tabi.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003269L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003270S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003271F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003272
3273FREESCALE SOC SOUND DRIVERS
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003274M: Timur Tabi <timur@tabi.org>
Joe Perches93711662009-06-16 15:34:07 -07003275L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003276L: linuxppc-dev@lists.ozlabs.org
Timur Tabic4ef9bc2013-01-15 14:19:45 -06003277S: Maintained
Joe Perches69aefce2009-04-09 10:39:22 -07003278F: sound/soc/fsl/fsl*
3279F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003280
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003282M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003285F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286
Pavel Machek71038f52009-01-15 13:51:02 -08003287FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003288M: Pavel Machek <pavel@ucw.cz>
3289M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003290L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003291S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003292F: Documentation/power/freezing-of-tasks.txt
3293F: include/linux/freezer.h
3294F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003295
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003296FRONTSWAP API
3297M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3298L: linux-kernel@vger.kernel.org
3299S: Maintained
3300F: mm/frontswap.c
3301F: include/linux/frontswap.h
3302
David Howellsa5432f52009-04-20 15:46:45 +01003303FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003304M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003305L: linux-cachefs@redhat.com
3306S: Supported
3307F: Documentation/filesystems/caching/
3308F: fs/fscache/
3309F: include/linux/fscache*.h
3310
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003311F2FS FILE SYSTEM
3312M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3313L: linux-f2fs-devel@lists.sourceforge.net
3314W: http://en.wikipedia.org/wiki/F2FS
3315T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3316S: Maintained
3317F: Documentation/filesystems/f2fs.txt
3318F: fs/f2fs/
3319F: include/linux/f2fs_fs.h
3320
David Howells5ab7ffe2007-04-10 15:10:45 +01003321FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003322M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003324F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325
Jonathan Woithe20b93732008-06-11 10:14:56 +09303326FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303327M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003328L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003330F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303331
Heungjun Kim4da621b2011-11-11 08:05:33 -03003332FUJITSU M-5MO LS CAMERA ISP DRIVER
3333M: Kyungmin Park <kyungmin.park@samsung.com>
3334M: Heungjun Kim <riverful.kim@samsung.com>
3335L: linux-media@vger.kernel.org
3336S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003337F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003338F: include/media/m5mols.h
3339
Robert Gerlach2d24c492012-01-18 14:26:22 +01003340FUJITSU TABLET EXTRAS
3341M: Robert Gerlach <khnz@gmx.de>
3342L: platform-driver-x86@vger.kernel.org
3343S: Maintained
3344F: drivers/platform/x86/fujitsu-tablet.c
3345
Miklos Szeredi04578f12005-09-09 13:10:22 -07003346FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003347M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003348L: fuse-devel@lists.sourceforge.net
3349W: http://fuse.sourceforge.net/
3350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003351F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003352F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003353
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003355M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003357S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003358F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359
3360GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003361M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362L: linux-scsi@vger.kernel.org
3363W: http://www.icp-vortex.com/
3364S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003365F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003367GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003368M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003369S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003370F: drivers/i2c/busses/i2c-gpio.c
3371F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003372
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003373GENERIC GPIO I2C MULTIPLEXER DRIVER
3374M: Peter Korsgaard <peter.korsgaard@barco.com>
3375L: linux-i2c@vger.kernel.org
3376S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003377F: drivers/i2c/muxes/i2c-mux-gpio.c
3378F: include/linux/i2c-mux-gpio.h
3379F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003380
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003381GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003382M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003385F: drivers/net/wan/c101.c
3386F: drivers/net/wan/hd6457*
3387F: drivers/net/wan/hdlc*
3388F: drivers/net/wan/n2.c
3389F: drivers/net/wan/pc300too.c
3390F: drivers/net/wan/pci200syn.c
3391F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003393GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003394M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003395L: linux-arch@vger.kernel.org
3396T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3397S: Maintained
3398F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003399F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003400
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003401GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003402M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003403L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003404S: Supported
3405F: drivers/uio/uio_pci_generic.c
3406
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003407GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003408M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003409L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003410W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003411T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3412T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003413S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003414F: Documentation/filesystems/gfs2*.txt
3415F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003416F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003417
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003418GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003419M: Hansjoerg Lipp <hjlipp@web.de>
3420M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003421L: gigaset307x-common@lists.sourceforge.net
3422W: http://gigaset307x.sourceforge.net/
3423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003424F: Documentation/isdn/README.gigaset
3425F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003426F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003427
Grant Likelya0dc00b2011-02-12 01:48:14 -07003428GPIO SUBSYSTEM
3429M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003430M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003431S: Maintained
3432T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003433F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003434F: drivers/gpio/
3435F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003436F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003437
Harry Wei71a6d0a2011-05-11 15:13:33 -07003438GRE DEMULTIPLEXER DRIVER
3439M: Dmitry Kozlov <xeb@mail.ru>
3440L: netdev@vger.kernel.org
3441S: Maintained
3442F: net/ipv4/gre.c
3443F: include/net/gre.h
3444
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003445GRETH 10/100/1G Ethernet MAC device driver
3446M: Kristoffer Glembo <kristoffer@gaisler.com>
3447L: netdev@vger.kernel.org
3448S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003449F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003450
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003451GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003452M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003453L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003454T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003455S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003456F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003457
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003458GSPCA GL860 SUBDRIVER
3459M: Olivier Lorin <o.lorin@laposte.net>
3460L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003461T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003462S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003463F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003464
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003465GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003466M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003467L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003468T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003469S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003470F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003471
3472GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003473M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003474L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003475T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003476S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003477F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003478
Brian Johnson261982f2009-07-19 15:58:56 -03003479GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003480M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003481L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003482T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003483S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003484F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003485
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003486GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003487M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003488L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003489T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003490S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003491F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003492
3493GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003494M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003495L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003496T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003497S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003498F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003499
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003500STK1160 USB VIDEO CAPTURE DRIVER
3501M: Ezequiel Garcia <elezegarcia@gmail.com>
3502L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003503T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003504S: Maintained
3505F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003506
Harry Wei71a6d0a2011-05-11 15:13:33 -07003507HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3508M: Frank Seidel <frank@f-seidel.de>
3509L: platform-driver-x86@vger.kernel.org
3510W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3511S: Maintained
3512F: drivers/platform/x86/hdaps.c
3513
3514HWPOISON MEMORY FAILURE HANDLING
3515M: Andi Kleen <andi@firstfloor.org>
3516L: linux-mm@kvack.org
3517T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3518S: Maintained
3519F: mm/memory-failure.c
3520F: mm/hwpoison-inject.c
3521
3522HYPERVISOR VIRTUAL CONSOLE DRIVER
3523L: linuxppc-dev@lists.ozlabs.org
3524S: Odd Fixes
3525F: drivers/tty/hvc/
3526
Michael Buesch844dd052006-06-26 00:24:59 -07003527HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003528M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003529M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003530L: lm-sensors@lm-sensors.org
3531W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003532T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003533T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003534S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003535F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003536F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003537F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003538
3539HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003540M: Matt Mackall <mpm@selenic.com>
3541M: Herbert Xu <herbert@gondor.apana.org.au>
3542S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003543F: Documentation/hw_random.txt
3544F: drivers/char/hw_random/
3545F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003546
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003547HARDWARE SPINLOCK CORE
3548M: Ohad Ben-Cohen <ohad@wizery.com>
3549S: Maintained
3550F: Documentation/hwspinlock.txt
3551F: drivers/hwspinlock/hwspinlock_*
3552F: include/linux/hwspinlock.h
3553
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003555L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003557F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558
Antti Palosaari91952bc2012-10-01 12:28:46 -03003559HD29L2 MEDIA DRIVER
3560M: Antti Palosaari <crope@iki.fi>
3561L: linux-media@vger.kernel.org
3562W: http://linuxtv.org/
3563W: http://palosaari.fi/linux/
3564Q: http://patchwork.linuxtv.org/project/linux-media/list/
3565T: git git://linuxtv.org/anttip/media_tree.git
3566S: Maintained
3567F: drivers/media/dvb-frontends/hd29l2*
3568
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003569HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003570M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003571L: iss_storagedev@hp.com
3572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003573F: Documentation/blockdev/cpqarray.txt
3574F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003575
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003576HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003577M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003578L: iss_storagedev@hp.com
3579S: Supported
3580F: Documentation/scsi/hpsa.txt
3581F: drivers/scsi/hpsa*.[ch]
3582F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003583F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003584
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003585HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003586M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003587L: iss_storagedev@hp.com
3588S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003589F: Documentation/blockdev/cciss.txt
3590F: drivers/block/cciss*
3591F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003592F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003593
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003595L: linux-fsdevel@vger.kernel.org
3596S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003597F: Documentation/filesystems/hfs.txt
3598F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599
3600HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003601M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602L: linux-nvidia@lists.surfsouth.com
3603W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003605F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003607HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003608M: Pavel Machek <pavel@ucw.cz>
3609M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003610L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003611S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003612F: arch/x86/power/
3613F: drivers/base/power/
3614F: kernel/power/
3615F: include/linux/suspend.h
3616F: include/linux/freezer.h
3617F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003618F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003619
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003620HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003621M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003622L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003623T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003625F: drivers/hid/
3626F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003627F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003628
Ingo Molnar38bed542007-02-22 09:09:34 +01003629HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003630M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003631T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003633F: Documentation/timers/
3634F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003635F: kernel/time/clockevents.c
3636F: kernel/time/tick*.*
3637F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003638F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003639F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003640
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003643S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003644F: drivers/net/hamradio/dmascc.c
3645F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003647HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003648M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003649W: http://www.highpoint-tech.com
3650S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003651F: Documentation/scsi/hptiop.txt
3652F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003653
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003655M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656L: linux-hippi@sunsite.dk
3657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003658F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003659F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003660F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003661F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662
Jouni Malinenff1d2762005-05-12 22:54:16 -04003663HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003664M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003665L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003666L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003667W: http://hostap.epitest.fi/
3668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003669F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003670
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003671HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003672L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003673S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003674F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003675
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003676HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003677M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003678S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003679F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003680
Joe Perches7d2c86b2009-04-07 20:59:01 -07003681HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003682M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003684F: Documentation/timers/hpet.txt
3685F: drivers/char/hpet.c
3686F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003687F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003688
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003689HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003690M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003692F: arch/x86/kernel/hpet.c
3693F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003694
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003696M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003699F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700
Joe Perches7d2c86b2009-04-07 20:59:01 -07003701HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003702M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003703W: http://www.pharscape.org
3704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003705F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003706
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003707HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003708M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003709L: linux-input@vger.kernel.org
3710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003711F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003712
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003714M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003716F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003718Hyper-V CORE AND DRIVERS
3719M: K. Y. Srinivasan <kys@microsoft.com>
3720M: Haiyang Zhang <haiyangz@microsoft.com>
3721L: devel@linuxdriverproject.org
3722S: Maintained
3723F: drivers/hv/
3724F: drivers/hid/hid-hyperv.c
3725F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003726
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003727I2C OVER PARALLEL PORT
3728M: Jean Delvare <khali@linux-fr.org>
3729L: linux-i2c@vger.kernel.org
3730S: Maintained
3731F: Documentation/i2c/busses/i2c-parport
3732F: Documentation/i2c/busses/i2c-parport-light
3733F: drivers/i2c/busses/i2c-parport.c
3734F: drivers/i2c/busses/i2c-parport-light.c
3735
3736I2C/SMBUS CONTROLLER DRIVERS FOR PC
3737M: Jean Delvare <khali@linux-fr.org>
3738L: linux-i2c@vger.kernel.org
3739S: Maintained
3740F: Documentation/i2c/busses/i2c-ali1535
3741F: Documentation/i2c/busses/i2c-ali1563
3742F: Documentation/i2c/busses/i2c-ali15x3
3743F: Documentation/i2c/busses/i2c-amd756
3744F: Documentation/i2c/busses/i2c-amd8111
3745F: Documentation/i2c/busses/i2c-i801
3746F: Documentation/i2c/busses/i2c-nforce2
3747F: Documentation/i2c/busses/i2c-piix4
3748F: Documentation/i2c/busses/i2c-sis5595
3749F: Documentation/i2c/busses/i2c-sis630
3750F: Documentation/i2c/busses/i2c-sis96x
3751F: Documentation/i2c/busses/i2c-via
3752F: Documentation/i2c/busses/i2c-viapro
3753F: drivers/i2c/busses/i2c-ali1535.c
3754F: drivers/i2c/busses/i2c-ali1563.c
3755F: drivers/i2c/busses/i2c-ali15x3.c
3756F: drivers/i2c/busses/i2c-amd756.c
3757F: drivers/i2c/busses/i2c-amd756-s4882.c
3758F: drivers/i2c/busses/i2c-amd8111.c
3759F: drivers/i2c/busses/i2c-i801.c
3760F: drivers/i2c/busses/i2c-isch.c
3761F: drivers/i2c/busses/i2c-nforce2.c
3762F: drivers/i2c/busses/i2c-nforce2-s4985.c
3763F: drivers/i2c/busses/i2c-piix4.c
3764F: drivers/i2c/busses/i2c-sis5595.c
3765F: drivers/i2c/busses/i2c-sis630.c
3766F: drivers/i2c/busses/i2c-sis96x.c
3767F: drivers/i2c/busses/i2c-via.c
3768F: drivers/i2c/busses/i2c-viapro.c
3769
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003770I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003771M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003772L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003773S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003774F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003775
Jean Delvare5b543962005-08-15 19:51:02 +02003776I2C SUBSYSTEM
Wolfram Sang14d77c42013-02-08 20:54:40 +01003777M: Wolfram Sang <wsa@the-dreams.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003778M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003779L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003780W: http://i2c.wiki.kernel.org/
Wolfram Sang14d77c42013-02-08 20:54:40 +01003781T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003783F: Documentation/i2c/
3784F: drivers/i2c/
3785F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003786F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003787F: include/uapi/linux/i2c.h
3788F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003790I2C-TAOS-EVM DRIVER
3791M: Jean Delvare <khali@linux-fr.org>
3792L: linux-i2c@vger.kernel.org
3793S: Maintained
3794F: Documentation/i2c/busses/i2c-taos-evm
3795F: drivers/i2c/busses/i2c-taos-evm.c
3796
Till Harbaume8c76ee2007-05-01 23:26:35 +02003797I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003798M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003799L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003800W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003802F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003803
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003805M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003807F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808
3809i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003810M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003811T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812S: Maintained
3813
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003815M: Tony Luck <tony.luck@intel.com>
3816M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003818T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003820F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
Kent Yoder956c2032012-09-07 04:17:01 +08003822IBM Power in-Nest Crypto Acceleration
3823M: Kent Yoder <key@linux.vnet.ibm.com>
3824L: linux-crypto@vger.kernel.org
3825S: Supported
3826F: drivers/crypto/nx/
3827
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003828IBM Power 842 compression accelerator
3829M: Robert Jennings <rcj@linux.vnet.ibm.com>
3830S: Supported
3831F: drivers/crypto/nx/nx-842.c
3832F: include/linux/nx842.h
3833
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003835M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003837F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
Santiago Leon9d348af2010-09-03 18:29:53 +00003839IBM Power Virtual Ethernet Device Driver
3840M: Santiago Leon <santil@linux.vnet.ibm.com>
3841L: netdev@vger.kernel.org
3842S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003843F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003844
Robert Jennings4b7652c2012-07-31 12:34:36 -05003845IBM Power Virtual SCSI/FC Device Drivers
3846M: Robert Jennings <rcj@linux.vnet.ibm.com>
3847L: linux-scsi@vger.kernel.org
3848S: Supported
3849F: drivers/scsi/ibmvscsi/
3850X: drivers/scsi/ibmvscsi/ibmvstgt.c
3851
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852IBM ServeRAID RAID DRIVER
3853P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003854M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003856S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003857F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003859ICH LPC AND GPIO DRIVER
3860M: Peter Tyser <ptyser@xes-inc.com>
3861S: Maintained
3862F: drivers/mfd/lpc_ich.c
3863F: drivers/gpio/gpio-ich.c
3864
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003865IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003866M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003868Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003869T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003871F: Documentation/ide/
3872F: drivers/ide/
3873F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
Ike Panhc6cb8c132011-08-25 22:28:45 +08003875IDEAPAD LAPTOP EXTRAS DRIVER
3876M: Ike Panhc <ike.pan@canonical.com>
3877L: platform-driver-x86@vger.kernel.org
3878W: http://launchpad.net/ideapad-laptop
3879S: Maintained
3880F: drivers/platform/x86/ideapad-laptop.c
3881
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003882IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003883M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003884L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003886F: Documentation/cdrom/ide-cd
3887F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
Andy Henroid27471fd2008-10-09 11:45:22 -07003889IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003890M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003891L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003892S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003893F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003894
Sergey Lapin02cf2282009-06-08 12:18:50 +00003895IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003896M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003897M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003898L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003899W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003900T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003901S: Maintained
3902F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003903F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08003904F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003905
Sean Young40ad4a32012-11-19 10:32:53 -03003906IGUANAWORKS USB IR TRANSCEIVER
3907M: Sean Young <sean@mess.org>
3908L: linux-media@vger.kernel.org
3909S: Maintained
3910F: drivers/media/rc/iguanair.c
3911
Ameya Palande9545f862012-01-10 09:00:58 -08003912IIO SUBSYSTEM AND DRIVERS
3913M: Jonathan Cameron <jic23@cam.ac.uk>
3914L: linux-iio@vger.kernel.org
3915S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003916F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003917F: drivers/staging/iio/
3918
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003919IKANOS/ADI EAGLE ADSL USB DRIVER
3920M: Matthieu Castet <castet.matthieu@free.fr>
3921M: Stanislaw Gruszka <stf_xl@wp.pl>
3922S: Maintained
3923F: drivers/usb/atm/ueagle-atm.c
3924
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01003925INDUSTRY PACK SUBSYSTEM (IPACK)
3926M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
3927M: Jens Taprogge <jens.taprogge@taprogge.org>
3928M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3929L: industrypack-devel@lists.sourceforge.net
3930W: http://industrypack.sourceforge.net
3931S: Maintained
3932F: drivers/ipack/
3933
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003934INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003935M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003936S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003937F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003938
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003940L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003941S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003942F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943
3944INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003945M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003946M: Sean Hefty <sean.hefty@intel.com>
3947M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003948L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003949W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003950Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003951T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003953F: Documentation/infiniband/
3954F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003955F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
Robert Lovec9f04f52005-07-15 12:21:07 -04003957INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003958M: John McCutchan <john@johnmccutchan.com>
3959M: Robert Love <rlove@rlove.org>
3960M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003962F: Documentation/filesystems/inotify.txt
3963F: fs/notify/inotify/
3964F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003965F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003966
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003967INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003968M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3969M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003970L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003971Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003972T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003974F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003975F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003976F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003977F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003978
Henrik Rydberg3267a872010-06-24 19:10:40 -07003979INPUT MULTITOUCH (MT) PROTOCOL
3980M: Henrik Rydberg <rydberg@euromail.se>
3981L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003982T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003983S: Maintained
3984F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003985F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003986K: \b(ABS|SYN)_MT_
3987
Dave Jiang4ac13e12011-07-29 17:16:55 -07003988INTEL C600 SERIES SAS CONTROLLER DRIVER
3989M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003990M: Lukasz Dorau <lukasz.dorau@intel.com>
3991M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003992M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003993L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003994T: git git://git.code.sf.net/p/intel-sas/isci
3995S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003996F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07003997
Len Brown26717172010-03-08 14:07:30 -05003998INTEL IDLE DRIVER
3999M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004000L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004001T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004002S: Supported
4003F: drivers/idle/intel_idle.c
4004
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004005INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004006M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004007L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004009F: Documentation/fb/intelfb.txt
4010F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004011
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004013M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004014L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004016F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304018INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004019M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004020L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304021W: http://www.lesswatts.org/projects/acpi/
4022S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004023F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304024
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004026M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004028F: arch/x86/kernel/microcode_core.c
4029F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004031INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004032M: Dan Williams <djbw@fb.com>
4033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004034F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004035
David Woodhouse6c8909b2008-10-18 16:12:17 +01004036INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004037M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004038L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004039T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004040S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004041F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004042F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004043
Dan Williamsb3e5f262007-08-07 10:26:35 -07004044INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004045M: Dan Williams <djbw@fb.com>
4046S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004047F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004048
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004049INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004050M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004052F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4053F: arch/arm/mach-ixp4xx/include/mach/npe.h
4054F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4055F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004056F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004057F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004058
Michael Buesch844dd052006-06-26 00:24:59 -07004059INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004060M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004062F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004063
Jeff Kirsher0d164402010-10-05 01:15:17 +00004064INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004065M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4066M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4067M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004068M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4069M: Don Skidmore <donald.c.skidmore@intel.com>
4070M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004071M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004072M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004073M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004074M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004075L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004076W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004077W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004078T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4079T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004081F: Documentation/networking/e100.txt
4082F: Documentation/networking/e1000.txt
4083F: Documentation/networking/e1000e.txt
4084F: Documentation/networking/igb.txt
4085F: Documentation/networking/igbvf.txt
4086F: Documentation/networking/ixgb.txt
4087F: Documentation/networking/ixgbe.txt
4088F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004089F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004091INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4092M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004093L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004095F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004096F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004097F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004098
Shane Wang4bd96a72010-03-10 14:36:10 +08004099INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004100M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4101M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004102M: Shane Wang <shane.wang@intel.com>
4103L: tboot-devel@lists.sourceforge.net
4104W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004105T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004106S: Supported
4107F: Documentation/intel_txt.txt
4108F: include/linux/tboot.h
4109F: arch/x86/kernel/tboot.c
4110
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004111INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004112M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004113M: linux-wimax@intel.com
4114L: wimax@linuxwimax.org
4115S: Supported
4116W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004117F: Documentation/wimax/README.i2400m
4118F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004119F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004120
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004121INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4122M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004123L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004124S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004125F: drivers/net/wireless/iwlegacy/
4126
Zhu Yib481de92007-09-25 17:54:57 -07004127INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004128M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004129M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004130M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004131L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004132W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004133T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004134S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004135F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004136
Tomas Winklerde8fe022012-05-09 16:39:02 +03004137INTEL MANAGEMENT ENGINE (mei)
4138M: Tomas Winkler <tomas.winkler@intel.com>
4139L: linux-kernel@vger.kernel.org
4140S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004141F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004142F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a2013-01-04 15:35:36 -08004143F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004144
Ralf Baechlecb109a02007-08-30 23:56:30 -07004145IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004146M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147L: linux-mips@linux-mips.org
4148S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004149F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150
Ralf Baechlecb109a02007-08-30 23:56:30 -07004151IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004152M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004153L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004154S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004155F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004156
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004157IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004158M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004160F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161
Francois Romieu1202d6f2007-09-17 17:13:55 -07004162IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004163M: Francois Romieu <romieu@fr.zoreil.com>
4164M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004165L: netdev@vger.kernel.org
4166S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004167F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004168
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004169IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004170M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004171L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004173F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004174
Corey Minyard4409ebe2006-04-20 02:43:12 -07004175IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004176M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004177L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004178W: http://openipmi.sourceforge.net/
4179S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004180F: Documentation/IPMI.txt
4181F: drivers/char/ipmi/
4182F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004183F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004184
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004185IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004186M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004187L: linux-scsi@vger.kernel.org
4188W: http://www.adaptec.com/
4189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004190F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004191
4192IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004193M: Wensong Zhang <wensong@linux-vs.org>
4194M: Simon Horman <horms@verge.net.au>
4195M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004196L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004197L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004199F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004200F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004201F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004202F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203
Randy Dunlape7839f22008-10-12 16:11:45 -07004204IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004205M: Jiri Kosina <jkosina@suse.cz>
4206M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004207S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004208F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004209
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004210IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004211M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004212L: netdev@vger.kernel.org
4213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004214F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004215F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004216F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004217
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004219M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004220L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004221L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004223S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004224T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004225F: Documentation/networking/irda.txt
4226F: drivers/net/irda/
4227F: include/net/irda/
4228F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004230IRQ SUBSYSTEM
4231M: Thomas Gleixner <tglx@linutronix.de>
4232S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004233T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004234F: kernel/irq/
Thomas Petazzoniedd96902012-10-28 10:05:40 +01004235F: drivers/irqchip/
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004236
Grant Likely7ab3a832012-02-14 14:06:47 -07004237IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4238M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4239M: Grant Likely <grant.likely@secretlab.ca>
4240T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4241S: Maintained
4242F: Documentation/IRQ-domain.txt
4243F: include/linux/irqdomain.h
4244F: kernel/irq/irqdomain.c
4245
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004246ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004247M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004249F: Documentation/isapnp.txt
4250F: drivers/pnp/isapnp/
4251F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004252
Harry Wei71a6d0a2011-05-11 15:13:33 -07004253iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4254M: Peter Jones <pjones@redhat.com>
4255M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4256S: Maintained
4257F: drivers/firmware/iscsi_ibft*
4258
Mike Christie14816b1e2007-11-28 16:22:06 -08004259ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004260M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004261L: open-iscsi@googlegroups.com
4262W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004263T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004265F: drivers/scsi/*iscsi*
4266F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004267
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004269M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004270L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004271L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004273T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004275F: Documentation/isdn/
4276F: drivers/isdn/
4277F: include/linux/isdn.h
4278F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004279F: include/uapi/linux/isdn.h
4280F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281
4282ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004283M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004284L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285W: http://www.melware.de
4286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004287F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288
Jean Delvared6248702010-03-05 22:17:20 +01004289IT87 HARDWARE MONITORING DRIVER
4290M: Jean Delvare <khali@linux-fr.org>
4291L: lm-sensors@lm-sensors.org
4292S: Maintained
4293F: Documentation/hwmon/it87
4294F: drivers/hwmon/it87.c
4295
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004296IT913X MEDIA DRIVER
4297M: Malcolm Priestley <tvboxspy@gmail.com>
4298L: linux-media@vger.kernel.org
4299W: http://linuxtv.org/
4300Q: http://patchwork.linuxtv.org/project/linux-media/list/
4301S: Maintained
4302F: drivers/media/usb/dvb-usb-v2/it913x*
4303
4304IT913X FE MEDIA DRIVER
4305M: Malcolm Priestley <tvboxspy@gmail.com>
4306L: linux-media@vger.kernel.org
4307W: http://linuxtv.org/
4308Q: http://patchwork.linuxtv.org/project/linux-media/list/
4309S: Maintained
4310F: drivers/media/dvb-frontends/it913x-fe*
4311
Hans Verkuil91821ff2007-12-02 09:35:33 -03004312IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004313M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004314L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004315L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004316T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004317W: http://www.ivtvdriver.org
4318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004319F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004320F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004321F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004322
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004323IX2505V MEDIA DRIVER
4324M: Malcolm Priestley <tvboxspy@gmail.com>
4325L: linux-media@vger.kernel.org
4326W: http://linuxtv.org/
4327Q: http://patchwork.linuxtv.org/project/linux-media/list/
4328S: Maintained
4329F: drivers/media/dvb-frontends/ix2505v*
4330
Guenter Roeck4453d732010-08-09 17:21:08 -07004331JC42.4 TEMPERATURE SENSOR DRIVER
4332M: Guenter Roeck <linux@roeck-us.net>
4333L: lm-sensors@lm-sensors.org
4334S: Maintained
4335F: drivers/hwmon/jc42.c
4336F: Documentation/hwmon/jc42
4337
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004338JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004339M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004340L: jfs-discussion@lists.sourceforge.net
4341W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004342T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004344F: Documentation/filesystems/jfs.txt
4345F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004346
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004347JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004348M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004349L: netdev@vger.kernel.org
4350S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004351F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004352
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004354M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004355L: linux-mtd@lists.infradead.org
4356W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004358F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004359F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360
Josh Triplettde456d32006-07-30 03:04:00 -07004361JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004362M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004363M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004364L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004365S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004366F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004367F: include/linux/jbd.h
4368
4369JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4370M: "Theodore Ts'o" <tytso@mit.edu>
4371L: linux-ext4@vger.kernel.org
4372S: Maintained
4373F: fs/jbd2/
4374F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004375
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004376JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004377M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004378L: linux-serial@vger.kernel.org
4379S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004380F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004381
Clemens Ladischaf399172011-01-10 16:32:54 +01004382K10TEMP HARDWARE MONITORING DRIVER
4383M: Clemens Ladisch <clemens@ladisch.de>
4384L: lm-sensors@lm-sensors.org
4385S: Maintained
4386F: Documentation/hwmon/k10temp
4387F: drivers/hwmon/k10temp.c
4388
Rudolf Marek4660cb32006-10-08 22:01:26 +02004389K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004390M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004391L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004393F: Documentation/hwmon/k8temp
4394F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395
4396KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004397M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004398L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004399S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004400F: Documentation/kbuild/kconfig-language.txt
4401F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402
Vivek Goyalea6c2082006-05-20 14:59:55 -07004403KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004404M: Vivek Goyal <vgoyal@redhat.com>
4405M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004406L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004407W: http://lse.sourceforge.net/kdump/
4408S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004409F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004410
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004412M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004413L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004415F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416
Michal Marek70fb7ba2010-01-29 14:22:43 +01004417KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004418M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004419T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4420T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004421L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004423F: Documentation/kbuild/
4424F: Makefile
4425F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004426F: scripts/basic/
4427F: scripts/mk*
4428F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429
4430KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004431L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004432W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004433S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004435KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004436M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004437L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004439S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004440F: fs/nfsd/
4441F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004442F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004443F: fs/lockd/
4444F: fs/nfs_common/
4445F: net/sunrpc/
4446F: include/linux/lockd/
4447F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004448F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449
Avi Kivity426d62e2006-12-13 00:34:03 -08004450KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004451M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004452M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004453L: kvm@vger.kernel.org
4454W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004455S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004456F: Documentation/*/kvm.txt
4457F: arch/*/kvm/
4458F: arch/*/include/asm/kvm*
4459F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004460F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004461F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004462
Joerg Roedelad8003d2008-09-10 20:01:07 +02004463KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004464M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004465L: kvm@vger.kernel.org
4466W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004468F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004469F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004470
Hollis Blanchard513014b2008-04-16 23:28:08 -05004471KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004472M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004473L: kvm-ppc@vger.kernel.org
4474W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004475T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004477F: arch/powerpc/include/asm/kvm*
4478F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004479
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004480KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004481M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004482L: kvm-ia64@vger.kernel.org
4483W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004484S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004485F: Documentation/ia64/kvm.txt
4486F: arch/ia64/include/asm/kvm*
4487F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004488
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004489KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004490M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004491M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004492M: linux390@de.ibm.com
4493L: linux-s390@vger.kernel.org
4494W: http://www.ibm.com/developerworks/linux/linux390/
4495S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004496F: Documentation/s390/kvm.txt
4497F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004498F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004499F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004500
Christoffer Dalla7494742013-01-20 18:42:26 -05004501KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4502M: Christoffer Dall <cdall@cs.columbia.edu>
4503L: kvmarm@lists.cs.columbia.edu
4504W: http://systems.cs.columbia.edu/projects/kvm-arm
4505S: Maintained
4506F: arch/arm/include/uapi/asm/kvm*
4507F: arch/arm/include/asm/kvm*
4508F: arch/arm/kvm/
4509
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004510KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004511M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004512W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004513L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004515F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004516F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004517F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004518
David Howellse9714612010-03-29 23:42:09 +01004519KEYS/KEYRINGS:
4520M: David Howells <dhowells@redhat.com>
4521L: keyrings@linux-nfs.org
4522S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004523F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004524F: include/linux/key.h
4525F: include/linux/key-type.h
4526F: include/keys/
4527F: security/keys/
4528
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004529KEYS-TRUSTED
4530M: David Safford <safford@watson.ibm.com>
4531M: Mimi Zohar <zohar@us.ibm.com>
4532L: linux-security-module@vger.kernel.org
4533L: keyrings@linux-nfs.org
4534S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004535F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004536F: include/keys/trusted-type.h
4537F: security/keys/trusted.c
4538F: security/keys/trusted.h
4539
4540KEYS-ENCRYPTED
4541M: Mimi Zohar <zohar@us.ibm.com>
4542M: David Safford <safford@watson.ibm.com>
4543L: linux-security-module@vger.kernel.org
4544L: keyrings@linux-nfs.org
4545S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004546F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004547F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004548F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004549
Jason Wessel5b778da2010-05-20 21:04:28 -05004550KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004551M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004552W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004553L: kgdb-bugreport@lists.sourceforge.net
4554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004555F: Documentation/DocBook/kgdb.tmpl
4556F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004557F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004558F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004559F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004560F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004561
Pekka Enberg456db8c2008-04-28 22:47:29 +03004562KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004563M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004564M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004565S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004566F: Documentation/kmemcheck.txt
4567F: arch/x86/include/asm/kmemcheck.h
4568F: arch/x86/mm/kmemcheck/
4569F: include/linux/kmemcheck.h
4570F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004571
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004572KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004573M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004574S: Maintained
4575F: Documentation/kmemleak.txt
4576F: include/linux/kmemleak.h
4577F: mm/kmemleak.c
4578F: mm/kmemleak-test.c
4579
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004580KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004581M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4582M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4583M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004584M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004586F: Documentation/kprobes.txt
4587F: include/linux/kprobes.h
4588F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004589
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004590KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004591M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004592W: http://miguelojeda.es/auxdisplay.htm
4593W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004595F: Documentation/auxdisplay/ks0108
4596F: drivers/auxdisplay/ks0108.c
4597F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004598
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004601S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004602F: Documentation/networking/lapb-module.txt
4603F: include/*/lapb.h
4604F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605
4606LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004607M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608L: linux-scsi@vger.kernel.org
4609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004610F: Documentation/scsi/53c700.txt
4611F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612
Richard Purdie263de9b2006-05-15 09:44:16 -07004613LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004614M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004615M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004616L: linux-leds@vger.kernel.org
4617T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004619F: drivers/leds/
4620F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004621
Jean Delvareb0461a42011-06-15 15:08:46 -07004622LEGACY EEPROM DRIVER
4623M: Jean Delvare <khali@linux-fr.org>
4624S: Maintained
4625F: Documentation/misc-devices/eeprom
4626F: drivers/misc/eeprom/eeprom.c
4627
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004629M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630L: legousb-devel@lists.sourceforge.net
4631W: http://legousb.sourceforge.net/
4632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004633F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634
Michael Krufky055616a2012-10-02 00:56:06 -03004635LG2160 MEDIA DRIVER
4636M: Michael Krufky <mkrufky@linuxtv.org>
4637L: linux-media@vger.kernel.org
4638W: http://linuxtv.org/
4639W: http://github.com/mkrufky
4640Q: http://patchwork.linuxtv.org/project/linux-media/list/
4641T: git git://linuxtv.org/mkrufky/tuners.git
4642S: Maintained
4643F: drivers/media/dvb-frontends/lg2160.*
4644
Michael Krufky6f0e7722012-10-02 00:56:00 -03004645LGDT3305 MEDIA DRIVER
4646M: Michael Krufky <mkrufky@linuxtv.org>
4647L: linux-media@vger.kernel.org
4648W: http://linuxtv.org/
4649W: http://github.com/mkrufky
4650Q: http://patchwork.linuxtv.org/project/linux-media/list/
4651T: git git://linuxtv.org/mkrufky/tuners.git
4652S: Maintained
4653F: drivers/media/dvb-frontends/lgdt3305.*
4654
Rusty Russell568a17f2007-10-25 14:12:24 +10004655LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004656M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004657L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004658W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004659S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004660F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004661F: arch/x86/lguest/
4662F: drivers/lguest/
4663F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004664F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004665
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004667M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668W: http://www.ibm.com/linux/ltc/projects/ppc
4669S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004670F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004672LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004673M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4674M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004676L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004677Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004678T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004680F: Documentation/powerpc/
4681F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682
4683LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004684M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004686L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004688F: arch/powerpc/platforms/powermac/
4689F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690
Grant Likely77a76362008-07-12 12:11:43 -06004691LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004692M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004693L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004694T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004696F: arch/powerpc/platforms/512x/
4697F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698
4699LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004700M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004701M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004703L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004704T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004706F: arch/powerpc/platforms/40x/
4707F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708
Grant Likely260c02a2007-10-02 12:15:34 +10004709LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004710M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004711W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004712L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004713T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004715F: arch/powerpc/*/*virtex*
4716F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717
Tom Rinie93adf12005-07-26 12:49:53 -07004718LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004719M: Vitaly Bordug <vitb@kernel.crashing.org>
4720M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004721W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004722L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004723S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004724F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004725
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004727M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004728W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004729L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004730S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004731F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004732F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733
Olof Johanssonab06ff32006-09-06 14:44:54 -05004734LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004735M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004736L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004737S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004738F: arch/powerpc/platforms/pasemi/
4739F: drivers/*/*pasemi*
4740F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004741
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004743M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004744L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745S: Supported
4746
Harry Weia23ce6d2011-02-11 16:52:20 +01004747LIS3LV02D ACCELEROMETER DRIVER
4748M: Eric Piel <eric.piel@tremplin-utc.net>
4749S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004750F: Documentation/misc-devices/lis3lv02d
4751F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004752F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004753
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004754LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004755M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004757F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004758F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004759F: include/net/llc*
4760F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004761
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004762LM73 HARDWARE MONITOR DRIVER
4763M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4764L: lm-sensors@lm-sensors.org
4765S: Maintained
4766F: drivers/hwmon/lm73.c
4767
Jean Delvare156e2d12011-07-25 21:46:11 +02004768LM78 HARDWARE MONITOR DRIVER
4769M: Jean Delvare <khali@linux-fr.org>
4770L: lm-sensors@lm-sensors.org
4771S: Maintained
4772F: Documentation/hwmon/lm78
4773F: drivers/hwmon/lm78.c
4774
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004776M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004777L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004779F: Documentation/hwmon/lm83
4780F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781
4782LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004783M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004784L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004786F: Documentation/hwmon/lm90
4787F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004789LME2510 MEDIA DRIVER
4790M: Malcolm Priestley <tvboxspy@gmail.com>
4791L: linux-media@vger.kernel.org
4792W: http://linuxtv.org/
4793Q: http://patchwork.linuxtv.org/project/linux-media/list/
4794S: Maintained
4795F: drivers/media/usb/dvb-usb-v2/lmedm04*
4796
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004797LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004798M: Peter Zijlstra <peterz@infradead.org>
4799M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004800T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004802F: Documentation/lockdep*.txt
4803F: Documentation/lockstat.txt
4804F: include/linux/lockdep.h
4805F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004806
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004807LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004808M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004809L: linux-ntfs-dev@lists.sourceforge.net
4810W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004812F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004813F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814
Joern Engelef6ada32009-11-20 22:17:12 +01004815LogFS
4816M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304817M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004818L: logfs@logfs.org
4819W: logfs.org
4820S: Maintained
4821F: fs/logfs/
4822
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004823LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304824M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4825M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004826M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004827L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004828L: linux-scsi@vger.kernel.org
4829W: http://www.lsilogic.com/support
4830S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004831F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304832F: drivers/scsi/mpt2sas/
4833F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004834
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004836M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837L: linux-scsi@vger.kernel.org
4838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004839F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840
Guenter Roecke5f5c992010-06-25 11:59:54 -07004841LTC4261 HARDWARE MONITOR DRIVER
4842M: Guenter Roeck <linux@roeck-us.net>
4843L: lm-sensors@lm-sensors.org
4844S: Maintained
4845F: Documentation/hwmon/ltc4261
4846F: drivers/hwmon/ltc4261.c
4847
Mike Frysinger81365c32008-10-29 14:01:12 -07004848LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004849M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004850M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004851M: Cyril Hrubis <chrubis@suse.cz>
4852M: Caspar Zhang <caspar@casparzhang.com>
4853M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004854L: ltp-list@lists.sourceforge.net (subscribers-only)
4855W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004856T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004857T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004858S: Maintained
4859
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004860M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004861M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004862L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004863L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4864W: http://www.linux-m32r.org/
4865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004866F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004867
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004869M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870L: linux-m68k@lists.linux-m68k.org
4871W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004872T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004874F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004875F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876
4877M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004878M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004880L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004882F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883
4884M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004885M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886W: http://www.tazenda.demon.co.uk/phil/linux-hp
4887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004888F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004890M88RS2000 MEDIA DRIVER
4891M: Malcolm Priestley <tvboxspy@gmail.com>
4892L: linux-media@vger.kernel.org
4893W: http://linuxtv.org/
4894Q: http://patchwork.linuxtv.org/project/linux-media/list/
4895S: Maintained
4896F: drivers/media/dvb-frontends/m88rs2000*
4897
Jiri Benc64a327a2007-05-05 11:47:08 -07004898MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004899M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004900L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004901W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004902T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4903T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004905F: Documentation/networking/mac80211-injection.txt
4906F: include/net/mac80211.h
4907F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004908
Stefano Brivio1036d862007-12-23 04:46:27 +01004909MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004910M: Stefano Brivio <stefano.brivio@polimi.it>
4911M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004912L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004913W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004914T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4915T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004917F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004918
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004919MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004920M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004921L: netdev@vger.kernel.org
4922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004923F: drivers/net/macvlan.c
4924F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004925
Michael Kerriskfaf16682005-07-31 22:34:47 -07004926MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004927M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004928W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004929L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004930S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004931
stephen hemminger44c14c12012-04-02 12:59:47 +00004932MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4933M: Mirko Lindner <mlindner@marvell.com>
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08004934M: Stephen Hemminger <stephen@networkplumber.org>
stephen hemminger44c14c12012-04-02 12:59:47 +00004935L: netdev@vger.kernel.org
4936S: Maintained
4937F: drivers/net/ethernet/marvell/sk*
4938
Stefano Brivio74cda162007-11-19 20:27:46 +01004939MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004940M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004941L: libertas-dev@lists.infradead.org
4942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004943F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004944
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004945MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004946M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004947L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004948S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004949F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004950F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02004952MARVELL MVNETA ETHERNET DRIVER
4953M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4954L: netdev@vger.kernel.org
4955S: Maintained
4956F: drivers/net/ethernet/marvell/mvneta.*
4957
Bing Zhaofcad5842011-07-13 13:11:58 -07004958MARVELL MWIFIEX WIRELESS DRIVER
4959M: Bing Zhao <bzhao@marvell.com>
4960L: linux-wireless@vger.kernel.org
4961S: Maintained
4962F: drivers/net/wireless/mwifiex/
4963
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004964MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004965M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004966L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004967S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004968F: drivers/net/wireless/mwl8k.c
4969
Pierre Ossman2a695672009-03-16 19:52:26 +01004970MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004971M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004972S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004973F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004974
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004976L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004977S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004978F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004979F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980
Guenter Roeckca462082012-06-01 23:28:23 -07004981MAX16065 HARDWARE MONITOR DRIVER
4982M: Guenter Roeck <linux@roeck-us.net>
4983L: lm-sensors@lm-sensors.org
4984S: Maintained
4985F: Documentation/hwmon/max16065
4986F: drivers/hwmon/max16065.c
4987
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004988MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004989M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004990L: lm-sensors@lm-sensors.org
4991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004992F: Documentation/hwmon/max6650
4993F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004994
Joe Perches127c49a2009-04-08 08:34:04 -07004995MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004996M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07004997P: LinuxTV.org Project
4998L: linux-media@vger.kernel.org
4999W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005000Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005001T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005002S: Maintained
5003F: Documentation/dvb/
5004F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005005F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005006F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005007F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005008F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005009F: include/uapi/linux/dvb/
5010F: include/uapi/linux/videodev2.h
5011F: include/uapi/linux/media.h
5012F: include/uapi/linux/v4l2-*
5013F: include/uapi/linux/meye.h
5014F: include/uapi/linux/ivtv*
5015F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005016
5017MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005018M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005019L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005020W: http://megaraid.lsilogic.com
5021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005022F: Documentation/scsi/megaraid.txt
5023F: drivers/scsi/megaraid.*
5024F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005025
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005026MELLANOX ETHERNET DRIVER (mlx4_en)
5027M: Amir Vadai <amirv@mellanox.com>
5028L: netdev@vger.kernel.org
5029S: Supported
5030W: http://www.mellanox.com
5031Q: http://patchwork.ozlabs.org/project/netdev/list/
5032F: drivers/net/ethernet/mellanox/mlx4/en_*
5033
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005034MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036W: http://www.linux-mm.org
5037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005038F: include/linux/mm.h
Cody P Schafer551450b2013-02-21 16:43:13 -08005039F: include/linux/gfp.h
5040F: include/linux/mmzone.h
5041F: include/linux/memory_hotplug.h
5042F: include/linux/vmalloc.h
Joe Perches679655d2009-04-07 20:44:32 -07005043F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005044
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005045MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005046M: Johannes Weiner <hannes@cmpxchg.org>
5047M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005048M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005049M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005050L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005051L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005053F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005054F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005055
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005057M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005059W: http://www.linux-mtd.infradead.org/
5060Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08005061T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005063F: drivers/mtd/
5064F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005065F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066
Michal Simekc6375b02009-03-27 14:25:52 +01005067MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005068M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005069L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005070W: http://www.monstr.eu/fdt/
5071T: git git://git.monstr.eu/linux-2.6-microblaze.git
5072S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005073F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074
5075MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005076M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005078F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079
5080MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005081M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005083W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005084T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005085Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005086S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005087F: Documentation/mips/
5088F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005091M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005093F: include/linux/module.h
5094F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095
5096MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005098S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005099F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005100F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005101F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102
Jiri Slabyb9705b62008-04-30 00:53:48 -07005103MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005104M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005106F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005107F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005108
Alexey Klimov889b2f82012-11-16 17:43:59 -03005109MR800 AVERMEDIA USB FM RADIO DRIVER
5110M: Alexey Klimov <klimov.linux@gmail.com>
5111L: linux-media@vger.kernel.org
5112T: git git://linuxtv.org/media_tree.git
5113S: Maintained
5114F: drivers/media/radio/radio-mr800.c
5115
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005116MSI LAPTOP SUPPORT
Lee, Chun-Yi182ae552012-12-14 16:14:24 +08005117M: "Lee, Chun-Yi" <jlee@suse.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005118L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005120F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005121
Anisse Astier0f1006b2009-12-17 11:28:49 +01005122MSI WMI SUPPORT
5123M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005124L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005125S: Supported
5126F: drivers/platform/x86/msi-wmi.c
5127
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005128MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005129M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005130T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005131S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005132F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005133
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005134MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005135M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005136L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005137T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005139F: drivers/mmc/
5140F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005141F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005142
David Brownell15a05802007-08-08 09:12:54 -07005143MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005144S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005145F: drivers/mmc/host/mmc_spi.c
5146F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005147
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005149M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005151F: Documentation/sound/oss/MultiSound
5152F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153
Jiri Slabyd7354102006-12-08 02:38:35 -08005154MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005155S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005156F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005157F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005158
Felipe Balbi550a7372008-07-24 12:27:36 +03005159MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005160M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005161L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005162T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005164F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005165
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005166MXL5007T MEDIA DRIVER
5167M: Michael Krufky <mkrufky@linuxtv.org>
5168L: linux-media@vger.kernel.org
5169W: http://linuxtv.org/
5170W: http://github.com/mkrufky
5171Q: http://patchwork.linuxtv.org/project/linux-media/list/
5172T: git git://linuxtv.org/mkrufky/tuners.git
5173S: Maintained
5174F: drivers/media/tuners/mxl5007t.*
5175
Brice Goglin2d3cf582008-05-17 12:45:36 +02005176MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005177M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005178L: netdev@vger.kernel.org
5179W: http://www.myri.com/scs/download-Myri10GE.html
5180S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005181F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005182
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005184S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005185F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186
Daniel Mack23dc05a2011-05-18 11:28:38 +02005187NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5188M: Daniel Mack <zonque@gmail.com>
5189S: Maintained
5190L: alsa-devel@alsa-project.org
5191W: http://www.native-instruments.com
5192F: sound/usb/caiaq/
5193
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005195M: Petr Vandrovec <petr@vandrovec.name>
5196S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005197F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198
5199NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005200M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201L: linux-scsi@vger.kernel.org
5202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005203F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005205NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005206M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005207L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005208W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005209S: Supported
5210F: drivers/infiniband/hw/nes/
5211
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005212NETEM NETWORK EMULATOR
Stephen Hemmingeradbbf692013-01-16 09:55:57 -08005213M: Stephen Hemminger <stephen@networkplumber.org>
David Brownellf318a632007-04-23 14:41:06 -07005214L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005216F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005217
Jon Masonb2f5a052010-07-15 08:47:27 +00005218NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005219M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005220L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005221S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005222F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005223F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005224F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005225
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227P: Harald Welte
5228P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005229M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005230M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005231L: netfilter-devel@vger.kernel.org
5232L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005233L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234W: http://www.netfilter.org/
5235W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005236T: git git://1984.lsi.us.es/nf
5237T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005239F: include/linux/netfilter*
5240F: include/linux/netfilter/
5241F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005242F: include/uapi/linux/netfilter*
5243F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005244F: net/*/netfilter.c
5245F: net/*/netfilter/
5246F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247
Paul Moore4cc67732006-09-25 15:57:13 -07005248NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005249M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005250W: http://netlabel.sf.net
5251L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005252S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005253F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005254F: include/net/netlabel.h
5255F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005256
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005258M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005260W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005262F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005263F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005264F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005266NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005267M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005269F: Documentation/blockdev/nbd.txt
5270F: drivers/block/nbd.c
5271F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005272F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273
Neil Horman6e436502009-10-05 03:56:55 +00005274NETWORK DROP MONITOR
5275M: Neil Horman <nhorman@tuxdriver.com>
5276L: netdev@vger.kernel.org
5277S: Maintained
5278W: https://fedorahosted.org/dropwatch/
5279F: net/core/drop_monitor.c
5280
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005282M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005283L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005284W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005285Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005286T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5287T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005289F: net/
5290F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005291F: include/linux/in.h
5292F: include/linux/net.h
5293F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005294F: include/uapi/linux/in.h
5295F: include/uapi/linux/net.h
5296F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297
5298NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005299M: "David S. Miller" <davem@davemloft.net>
5300M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005301M: James Morris <jmorris@namei.org>
5302M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5303M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005304L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005305T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005307F: net/ipv4/
5308F: net/ipv6/
5309F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005310F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311
David S. Miller73b76562012-10-16 14:08:40 -04005312NETWORKING [IPSEC]
5313M: Steffen Klassert <steffen.klassert@secunet.com>
5314M: Herbert Xu <herbert@gondor.apana.org.au>
5315M: "David S. Miller" <davem@davemloft.net>
5316L: netdev@vger.kernel.org
5317T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5318S: Maintained
5319F: net/xfrm/
5320F: net/key/
5321F: net/ipv4/xfrm*
5322F: net/ipv6/xfrm*
5323F: include/uapi/linux/xfrm.h
5324F: include/net/xfrm.h
5325
James Morris10e2ff12007-08-25 14:41:28 -07005326NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005327M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005328L: netdev@vger.kernel.org
5329S: Maintained
5330
John W. Linville29f8f632006-01-18 14:52:48 -08005331NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005332M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005333L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005334Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005335T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005336S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005337F: net/mac80211/
5338F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005339F: net/wireless/
5340F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005341F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005342F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005343F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005344F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005345
Joe Perches788873a2009-04-16 09:38:45 +00005346NETWORKING DRIVERS
5347L: netdev@vger.kernel.org
5348W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005349Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005350T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5351T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005352S: Odd Fixes
5353F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005354F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005355F: include/linux/netdevice.h
5356F: include/linux/arcdevice.h
5357F: include/linux/etherdevice.h
5358F: include/linux/fcdevice.h
5359F: include/linux/fddidevice.h
5360F: include/linux/hippidevice.h
5361F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005362F: include/uapi/linux/if_*
5363F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005364
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005365NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005366M: Sony Chacko <sony.chacko@qlogic.com>
5367M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005368L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005369W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005370S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005371F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005372
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005373NFC SUBSYSTEM
5374M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5375M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5376M: Samuel Ortiz <sameo@linux.intel.com>
5377L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005378L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005379S: Maintained
5380F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005381F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005382F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005383F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005384F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005386NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005387M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005388L: linux-nfs@vger.kernel.org
5389W: http://client.linux-nfs.org
5390T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005392F: fs/lockd/
5393F: fs/nfs/
5394F: fs/nfs_common/
5395F: net/sunrpc/
5396F: include/linux/lockd/
5397F: include/linux/nfs*
5398F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005399F: include/uapi/linux/nfs*
5400F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005402NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005403M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005404L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005405W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005406T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005407S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005408F: Documentation/filesystems/nilfs2.txt
5409F: fs/nilfs2/
5410F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005411
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005413M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005416F: Documentation/scsi/NinjaSCSI.txt
5417F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418
5419NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005420M: GOTO Masanori <gotom@debian.or.jp>
5421M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005424F: Documentation/scsi/NinjaSCSI.txt
5425F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426
Jon Masonfce8a7b2012-11-16 19:27:12 -07005427NTB DRIVER
5428M: Jon Mason <jon.mason@intel.com>
5429S: Supported
5430F: drivers/ntb/
Jon Mason548c2372012-11-16 19:27:13 -07005431F: drivers/net/ntb_netdev.c
Jon Masonfce8a7b2012-11-16 19:27:12 -07005432F: include/linux/ntb.h
5433
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005435M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005437W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005438T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005439S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005440F: Documentation/filesystems/ntfs.txt
5441F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005443NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005444M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005445L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005447F: drivers/video/riva/
5448F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449
Tony Lindgrenf5525782009-05-28 13:23:53 -07005450OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005451M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005452L: linux-omap@vger.kernel.org
5453W: http://www.muru.com/linux/omap/
5454W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005455Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005456T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005457S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005458F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005459F: drivers/i2c/busses/i2c-omap.c
5460F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005461
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005462OMAP DEVICE TREE SUPPORT
5463M: Benoît Cousson <b-cousson@ti.com>
5464M: Tony Lindgren <tony@atomide.com>
5465L: linux-omap@vger.kernel.org
5466L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5467S: Maintained
5468F: arch/arm/boot/dts/*omap*
5469F: arch/arm/boot/dts/*am3*
5470
Tony Lindgrenf5525782009-05-28 13:23:53 -07005471OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005472M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005473L: linux-omap@vger.kernel.org
5474S: Maintained
5475F: arch/arm/*omap*/*clock*
5476
5477OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005478M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005479L: linux-omap@vger.kernel.org
5480S: Maintained
5481F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005482F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005483
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005484OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5485M: Rajendra Nayak <rnayak@ti.com>
5486M: Paul Walmsley <paul@pwsan.com>
5487L: linux-omap@vger.kernel.org
5488S: Maintained
5489F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5490F: arch/arm/mach-omap2/powerdomain44xx.c
5491F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5492F: arch/arm/mach-omap2/clockdomain44xx.c
5493
Tony Lindgrenf5525782009-05-28 13:23:53 -07005494OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005495M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005496M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005497L: alsa-devel@alsa-project.org (subscribers-only)
5498L: linux-omap@vger.kernel.org
5499S: Maintained
5500F: sound/soc/omap/
5501
5502OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005503M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005504L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005505L: linux-omap@vger.kernel.org
5506S: Maintained
5507F: drivers/video/omap/
5508
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005509OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005510M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005511L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005512L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005513S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005514F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005515F: Documentation/arm/OMAP/DSS
5516
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005517OMAP HARDWARE SPINLOCK SUPPORT
5518M: Ohad Ben-Cohen <ohad@wizery.com>
5519L: linux-omap@vger.kernel.org
5520S: Maintained
5521F: drivers/hwspinlock/omap_hwspinlock.c
5522F: arch/arm/mach-omap2/hwspinlock.c
5523
Tony Lindgrenf5525782009-05-28 13:23:53 -07005524OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005525M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005526L: linux-omap@vger.kernel.org
5527S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005528F: drivers/mmc/host/omap.c
5529
5530OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305531M: Venkatraman S <svenkatr@ti.com>
5532L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005533L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305534S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005535F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005536
5537OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005538M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005539S: Maintained
5540F: drivers/char/hw_random/omap-rng.c
5541
Paul Walmsleyf400c822010-12-06 19:08:54 -07005542OMAP HWMOD SUPPORT
5543M: Benoît Cousson <b-cousson@ti.com>
5544M: Paul Walmsley <paul@pwsan.com>
5545L: linux-omap@vger.kernel.org
5546S: Maintained
Zhang Yanfei8fc8b122013-01-11 14:32:03 -08005547F: arch/arm/mach-omap2/omap_hwmod.*
Paul Walmsleyf400c822010-12-06 19:08:54 -07005548
5549OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5550M: Benoît Cousson <b-cousson@ti.com>
5551L: linux-omap@vger.kernel.org
5552S: Maintained
5553F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5554
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005555OMAP IMAGE SIGNAL PROCESSOR (ISP)
5556M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5557L: linux-media@vger.kernel.org
5558S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005559F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005560
Tony Lindgrenf5525782009-05-28 13:23:53 -07005561OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005562M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005563L: linux-usb@vger.kernel.org
5564L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005565T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005566S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005567F: drivers/usb/*/*omap*
5568F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005569
Kevin Hilman6d994712012-07-16 10:05:07 -07005570OMAP GPIO DRIVER
5571M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5572M: Kevin Hilman <khilman@ti.com>
5573L: linux-omap@vger.kernel.org
5574S: Maintained
5575F: drivers/gpio/gpio-omap.c
5576
Bob Copeland0ad122d2008-07-25 19:45:18 -07005577OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005578M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005579L: linux-karma-devel@lists.sourceforge.net
5580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005581F: Documentation/filesystems/omfs.txt
5582F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005583
Harald Weltec1986ee2005-11-13 16:06:29 -08005584OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005585M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005587F: drivers/char/pcmcia/cm4000_cs.c
5588F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005589F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005590
Harald Welte77c44ab2005-11-13 16:06:26 -08005591OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005592M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005594F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005595
Jonathan Corbet77d51402007-03-22 19:44:17 -03005596OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005597M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005598L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005599T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005600S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005601F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005602
Thomas Gleixner431bca72007-05-02 09:31:35 +02005603ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005604M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005605L: linux-mtd@lists.infradead.org
5606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005607F: drivers/mtd/onenand/
5608F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005609
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005611M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612L: osst-users@lists.sourceforge.net
5613L: linux-scsi@vger.kernel.org
5614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005615F: drivers/scsi/osst*
5616F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005618OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005619M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005620L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005622F: Documentation/i2c/busses/i2c-ocores
5623F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005624
Grant Likely860c44c2009-10-26 16:49:49 -07005625OPEN FIRMWARE AND FLATTENED DEVICE TREE
5626M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005627M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005628L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005629W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005630T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005631S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005632F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005633F: drivers/of
5634F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005635F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005636K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005637K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005638
Jonas Bonn19f9d392011-06-04 22:00:38 +03005639OPENRISC ARCHITECTURE
5640M: Jonas Bonn <jonas@southpole.se>
5641W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005642L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005643S: Maintained
5644T: git git://openrisc.net/~jonas/linux
5645F: arch/openrisc
5646
Jesse Grossccb13522011-10-25 19:26:31 -07005647OPENVSWITCH
5648M: Jesse Gross <jesse@nicira.com>
5649L: dev@openvswitch.org
5650W: http://openvswitch.org
5651T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5652S: Maintained
5653F: net/openvswitch/
5654
Clemens Ladischaf399172011-01-10 16:32:54 +01005655OPL4 DRIVER
5656M: Clemens Ladisch <clemens@ladisch.de>
5657L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5658T: git git://git.alsa-project.org/alsa-kernel.git
5659S: Maintained
5660F: sound/drivers/opl4/
5661
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005663M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664L: oprofile-list@lists.sf.net
5665S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005666F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005667F: arch/*/oprofile/
5668F: drivers/oprofile/
5669F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005671ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005672M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005673M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005674L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5675W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005676T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005677S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005678F: Documentation/filesystems/ocfs2.txt
5679F: Documentation/filesystems/dlmfs.txt
5680F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005681
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005683L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005684W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005685W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005686S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005687F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005689OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005690M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005691M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005692L: osd-dev@open-osd.org
5693W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005694T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005695S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005696F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005697F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005698F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005699
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005700P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005701M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005702L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005703W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005705F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005706
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005707PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005708M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005709L: netdev@vger.kernel.org
5710S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005711F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005712
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005713PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005714M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005715L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005717F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005718
Steffen Klassert48fc2672010-08-13 10:10:46 -04005719PADATA PARALLEL EXECUTION MECHANISM
5720M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005721L: linux-crypto@vger.kernel.org
5722S: Maintained
5723F: kernel/padata.c
5724F: include/linux/padata.h
5725F: Documentation/padata.txt
5726
Harald Welte709ee532008-09-23 17:46:57 +02005727PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005728M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005729L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005731F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005732
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005733PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005734M: David Howells <dhowells@redhat.com>
5735M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005736L: linux-am33-list@redhat.com (moderated for non-subscribers)
5737W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005739F: Documentation/mn10300/
5740F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005741
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005743L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005744S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005745F: drivers/parport/
5746F: include/linux/parport*.h
5747F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005748F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005750PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005751M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005752M: Chris Wright <chrisw@sous-sol.org>
5753M: Alok Kataria <akataria@vmware.com>
5754M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005755L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005756S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005757F: Documentation/ia64/paravirt_ops.txt
5758F: arch/*/kernel/paravirt*
5759F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005760
Linus Torvalds1da177e2005-04-16 15:20:36 -07005761PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005762M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005763L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764W: http://www.torque.net/linux-pp.html
5765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005766F: Documentation/blockdev/paride.txt
5767F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768
5769PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005770M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005771M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005772L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005774Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005775T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005777F: arch/parisc/
5778F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779
Jim Cromie1662d322006-10-06 00:43:59 -07005780PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005781M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005782L: lm-sensors@lm-sensors.org
5783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005784F: Documentation/hwmon/pc87360
5785F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005786
5787PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005788M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005790F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005791
Jean Delvare1ad107f2010-08-14 21:09:00 +02005792PC87427 HARDWARE MONITORING DRIVER
5793M: Jean Delvare <khali@linux-fr.org>
5794L: lm-sensors@lm-sensors.org
5795S: Maintained
5796F: Documentation/hwmon/pc87427
5797F: drivers/hwmon/pc87427.c
5798
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005799PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005800M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005801S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005802F: drivers/leds/leds-pca9532.c
5803F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005804
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005805PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005806M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005807L: linux-i2c@vger.kernel.org
5808S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005809F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005810
Khalid Aziz3971dae2012-04-12 12:49:13 -07005811PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005812M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005813S: Maintained
5814F: drivers/firmware/pcdp.*
5815
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005816PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005817M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005818L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005819S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005820F: Documentation/PCI/pci-error-recovery.txt
5821F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005822
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005824M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005825L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005826Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005827T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005828S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005829F: Documentation/PCI/
5830F: drivers/pci/
5831F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005834P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005835L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005836W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005837T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005839F: Documentation/pcmcia/
5840F: drivers/pcmcia/
5841F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842
5843PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005844M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005845L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005847F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848
Steffen Klassert48fc2672010-08-13 10:10:46 -04005849PCRYPT PARALLEL CRYPTO ENGINE
5850M: Steffen Klassert <steffen.klassert@secunet.com>
5851L: linux-crypto@vger.kernel.org
5852S: Maintained
5853F: crypto/pcrypt.c
5854F: include/crypto/pcrypt.h
5855
Tejun Heoe72df0b2010-12-10 17:02:49 +01005856PER-CPU MEMORY ALLOCATOR
5857M: Tejun Heo <tj@kernel.org>
5858M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005859T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5860S: Maintained
5861F: include/linux/percpu*.h
5862F: mm/percpu*.c
5863F: arch/*/include/asm/percpu.h
5864
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005865PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005866M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005868F: include/linux/delayacct.h
5869F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005870
Ingo Molnar57c0c152009-09-21 12:20:38 +02005871PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005872M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5873M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005874M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005875M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005876T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005877S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005878F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005879F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005880F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005881F: arch/*/kernel/perf_event*.c
5882F: arch/*/kernel/*/perf_event*.c
5883F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005884F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02005885F: arch/*/kernel/perf_callchain.c
5886F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005887
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005888PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005889M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005890L: linux-abi-devel@lists.sourceforge.net
5891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005892F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005893F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005894
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005895PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005896M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005897S: Supported
5898F: Documentation/networking/phonet.txt
5899F: include/linux/phonet.h
5900F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005901F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005902F: net/phonet/
5903
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005905M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906L: linux-mtd@lists.infradead.org
5907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005908F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909
Bruno Prémontefdbb102012-07-30 21:39:03 +02005910PICOLCD HID DRIVER
5911M: Bruno Prémont <bonbons@linux-vserver.org>
5912L: linux-input@vger.kernel.org
5913S: Maintained
5914F: drivers/hid/hid-picolcd*
5915
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005916PICOXCELL SUPPORT
5917M: Jamie Iles <jamie@jamieiles.com>
5918L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5919T: git git://github.com/jamieiles/linux-2.6-ji.git
5920S: Supported
5921F: arch/arm/mach-picoxcell
5922F: drivers/*/picoxcell*
5923F: drivers/*/*/picoxcell*
5924
Linus Walleij2744e8a2011-05-02 20:50:54 +02005925PIN CONTROL SUBSYSTEM
5926M: Linus Walleij <linus.walleij@linaro.org>
5927S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005928F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005929F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005930
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02005931PIN CONTROLLER - ATMEL AT91
5932M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
5933L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5934S: Maintained
5935F: drivers/pinctrl/pinctrl-at91.c
5936
Viresh Kumardeda8282012-03-28 22:27:07 +05305937PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005938M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305939L: spear-devel@list.st.com
5940L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5941W: http://www.st.com/spear
5942S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005943F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305944
Peter Osterlund249a6772005-09-27 21:45:30 -07005945PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005946M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005948F: drivers/block/pktcdvd.c
5949F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005950F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005951
GuanXuetaob31d8272011-01-16 00:35:49 +08005952PKUNITY SOC DRIVERS
5953M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5954W: http://mprc.pku.edu.cn/~guanxuetao/linux
5955S: Maintained
5956T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5957F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005958F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005959F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005960F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005961
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005962PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005963M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005964L: lm-sensors@lm-sensors.org
5965W: http://www.lm-sensors.org/
5966W: http://www.roeck-us.net/linux/drivers/
5967T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5968S: Maintained
5969F: Documentation/hwmon/pmbus
5970F: drivers/hwmon/pmbus/
5971F: include/linux/i2c/pmbus.h
5972
Anil Ravindranath89a36812009-08-25 17:35:18 -07005973PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005974M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005975L: linux-scsi@vger.kernel.org
5976W: http://www.pmc-sierra.com/
5977S: Supported
5978F: drivers/scsi/pmcraid.*
5979
jack wangdbf9bfe2009-10-14 16:19:21 +08005980PMC SIERRA PM8001 DRIVER
5981M: jack_wang@usish.com
5982M: lindar_liu@usish.com
5983L: linux-scsi@vger.kernel.org
5984S: Supported
5985F: drivers/scsi/pm8001/
5986
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005988M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005989T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005991F: fs/timerfd.c
5992F: include/linux/timer*
5993F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994
Anton Vorontsov3be86142007-07-15 04:43:36 +04005995POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005996M: Anton Vorontsov <cbou@mail.ru>
5997M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005998T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006000F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006001F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006002
Linus Torvalds1da177e2005-04-16 15:20:36 -07006003PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006004M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006005M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006007F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008
Vitaly Wool999445d2007-01-04 13:07:03 +01006009PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006010M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006011L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006013F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006014
Linus Torvalds1da177e2005-04-16 15:20:36 -07006015PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006016M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017L: linux-ppp@vger.kernel.org
6018S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006019F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020
6021PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006022M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006024F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006025F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026
6027PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006028M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006030F: drivers/net/ppp/pppoe.c
6031F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006032
James Chapmana6d23702007-06-27 15:53:17 -07006033PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006034M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006035S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006036F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006037F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006038F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006039
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006040PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006041M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006042W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6043L: linuxpps@ml.enneenne.com (subscribers-only)
6044S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006045F: Documentation/pps/
6046F: drivers/pps/
6047F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006048
Harry Wei71a6d0a2011-05-11 15:13:33 -07006049PPTP DRIVER
6050M: Dmitry Kozlov <xeb@mail.ru>
6051L: netdev@vger.kernel.org
6052S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006053F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006054W: http://sourceforge.net/projects/accel-pptp
6055
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006057M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058L: kpreempt-tech@lists.sourceforge.net
6059W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6060S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006061F: Documentation/preempt-locking.txt
6062F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006063
6064PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006065M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006066L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006067W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006068S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006069F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006071PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006072M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006073L: linux-ide@vger.kernel.org
6074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006075F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006076
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006077PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006078M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006079L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006080L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006081S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006082F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006083
Geoff Levandf58a9d12006-11-23 00:46:51 +01006084PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006085M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006086L: linuxppc-dev@lists.ozlabs.org
6087L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006089F: arch/powerpc/boot/ps3*
6090F: arch/powerpc/include/asm/lv1call.h
6091F: arch/powerpc/include/asm/ps3*.h
6092F: arch/powerpc/platforms/ps3/
6093F: drivers/*/ps3*
6094F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006095F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006096F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006097F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006098
Jim Pariscffb4add2009-01-06 11:32:10 +00006099PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006100M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006101L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006102S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006103F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006104
Anton Vorontsov8defe592012-08-03 18:07:20 -07006105PSTORE FILESYSTEM
6106M: Anton Vorontsov <cbouatmailru@gmail.com>
6107M: Colin Cross <ccross@android.com>
6108M: Kees Cook <keescook@chromium.org>
6109M: Tony Luck <tony.luck@intel.com>
6110S: Maintained
6111T: git git://git.infradead.org/users/cbou/linux-pstore.git
6112F: fs/pstore/
6113F: include/linux/pstore*
6114F: drivers/firmware/efivars.c
6115F: drivers/acpi/apei/erst.c
6116
Richard Cochran7fbc4152012-03-10 01:55:53 +00006117PTP HARDWARE CLOCK SUPPORT
6118M: Richard Cochran <richardcochran@gmail.com>
6119S: Maintained
6120W: http://linuxptp.sourceforge.net/
6121F: Documentation/ABI/testing/sysfs-ptp
6122F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006123F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006124F: drivers/net/phy/dp83640*
6125F: drivers/ptp/*
6126F: include/linux/ptp_cl*
6127
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006128PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006129M: Roland McGrath <roland@redhat.com>
6130M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006131S: Maintained
6132F: include/asm-generic/syscall.h
6133F: include/linux/ptrace.h
6134F: include/linux/regset.h
6135F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006136F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006137F: kernel/ptrace.c
6138
Michael Krufky83202042006-07-03 00:24:18 -07006139PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006140M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006141L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006142L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006143W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006144T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006146F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006147F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006148
Hans de Goede39532e62012-11-04 17:05:59 -03006149PWC WEBCAM DRIVER
6150M: Hans de Goede <hdegoede@redhat.com>
6151L: linux-media@vger.kernel.org
6152T: git git://linuxtv.org/media_tree.git
6153S: Maintained
6154F: drivers/media/usb/pwc/*
6155
Thierry Reding200efed2012-03-27 13:16:18 +02006156PWM SUBSYSTEM
6157M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006158L: linux-kernel@vger.kernel.org
6159S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006160W: http://gitorious.org/linux-pwm
6161T: git git://gitorious.org/linux-pwm/linux-pwm.git
6162F: Documentation/pwm.txt
6163F: Documentation/devicetree/bindings/pwm/
6164F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006165F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006166F: drivers/video/backlight/pwm_bl.c
6167F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006168
Eric Miao30ec2612008-06-12 15:21:41 -07006169PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006170M: Eric Miao <eric.y.miao@gmail.com>
6171M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006172M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006173L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006174T: git git://github.com/hzhuang1/linux.git
6175T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006177F: arch/arm/mach-pxa/
6178F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006179F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006180F: drivers/usb/gadget/pxa2*
6181F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006182F: sound/arm/pxa*
6183F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006185MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006186M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006187M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006188L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006189T: git git://github.com/hzhuang1/linux.git
6190T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006191S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006192F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006193
Pierre Ossman272f1332007-05-14 21:25:26 +02006194PXA MMCI DRIVER
6195S: Orphan
6196
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006197PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006198M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006199L: rtc-linux@googlegroups.com
6200S: Maintained
6201
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006202QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006203M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006204L: linux-rdma@vger.kernel.org
6205S: Supported
6206F: drivers/infiniband/hw/qib/
6207
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006208QLOGIC QLA1280 SCSI DRIVER
6209M: Michael Reed <mdr@sgi.com>
6210L: linux-scsi@vger.kernel.org
6211S: Maintained
6212F: drivers/scsi/qla1280.[ch]
6213
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006215M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006216M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217L: linux-scsi@vger.kernel.org
6218S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006219F: Documentation/scsi/LICENSE.qla2xxx
6220F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221
Ravi Anand883c98f2010-04-28 11:45:49 +05306222QLOGIC QLA4XXX iSCSI DRIVER
6223M: Ravi Anand <ravi.anand@qlogic.com>
6224M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6225M: iscsi-driver@qlogic.com
6226L: linux-scsi@vger.kernel.org
6227S: Supported
6228F: drivers/scsi/qla4xxx/
6229
Ron Mercer5a4faa872006-07-25 00:40:21 -07006230QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006231M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006232M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006233M: linux-driver@qlogic.com
6234L: netdev@vger.kernel.org
6235S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006236F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006237F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006238
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006239QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006240M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006241M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006242M: linux-driver@qlogic.com
6243L: netdev@vger.kernel.org
6244S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006245F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006246
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006247QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006248M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006249M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006250M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006251L: netdev@vger.kernel.org
6252S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006253F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006254
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006256M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257W: http://www.alarsen.net/linux/qnx4fs/
6258S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006259F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006260F: include/uapi/linux/qnx4_fs.h
6261F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006262
Antti Palosaari91952bc2012-10-01 12:28:46 -03006263QT1010 MEDIA DRIVER
6264M: Antti Palosaari <crope@iki.fi>
6265L: linux-media@vger.kernel.org
6266W: http://linuxtv.org/
6267W: http://palosaari.fi/linux/
6268Q: http://patchwork.linuxtv.org/project/linux-media/list/
6269T: git git://linuxtv.org/anttip/media_tree.git
6270S: Maintained
6271F: drivers/media/tuners/qt1010*
6272
Richard Kuo4f4567c2011-10-31 18:56:38 -05006273QUALCOMM HEXAGON ARCHITECTURE
6274M: Richard Kuo <rkuo@codeaurora.org>
6275L: linux-hexagon@vger.kernel.org
6276S: Supported
6277F: arch/hexagon/
6278
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006279RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006280M: Yehuda Sadeh <yehuda@inktank.com>
6281M: Sage Weil <sage@inktank.com>
6282M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006283M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006284W: http://ceph.com/
6285T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006286S: Supported
6287F: drivers/block/rbd.c
6288F: drivers/block/rbd_types.h
6289
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006291M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006292L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006294F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006295F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296
Hans de Goedec6c9b342012-11-04 17:03:58 -03006297RADIOSHARK RADIO DRIVER
6298M: Hans de Goede <hdegoede@redhat.com>
6299L: linux-media@vger.kernel.org
6300T: git git://linuxtv.org/media_tree.git
6301S: Maintained
6302F: drivers/media/radio/radio-shark.c
6303
6304RADIOSHARK2 RADIO DRIVER
6305M: Hans de Goede <hdegoede@redhat.com>
6306L: linux-media@vger.kernel.org
6307T: git git://linuxtv.org/media_tree.git
6308S: Maintained
6309F: drivers/media/radio/radio-shark2.c
6310F: drivers/media/radio/radio-tea5777.c
6311
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006313M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006314L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006316F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317
Randy Dunlape7839f22008-10-12 16:11:45 -07006318RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006319P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006320M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006321M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006322M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006323L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006324L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006325W: http://rt2x00.serialmonkey.com/
6326S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006327T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006328F: drivers/net/wireless/rt2x00/
6329
Nick Piggin9db55792008-02-08 04:19:49 -08006330RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006331M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006333F: Documentation/blockdev/ramdisk.txt
6334F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006335
Matt Mackall9e95ce22005-04-16 15:25:56 -07006336RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006337M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006339F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006340
Matt Porter394b7012005-11-07 01:00:15 -08006341RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006342M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006343M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006345F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006346
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006347RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006348L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006349S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006350F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006351
6352RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006353M: Josh Triplett <josh@freedesktop.org>
6354M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006355S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006356T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006357F: Documentation/RCU/torture.txt
6358F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006359
Florian Fainellic1f766b2008-02-06 22:39:44 +01006360RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006361M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006362S: Maintained
6363
Florian Fainellidb17f392007-12-19 11:30:30 +01006364RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006365M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006366L: netdev@vger.kernel.org
6367S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006368F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006369
Andy Grovera09ed662009-02-24 15:30:41 +00006370RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006371M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006372L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006373S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006374F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006375
Josh Triplett595182b2006-10-04 02:17:21 -07006376READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006377M: Dipankar Sarma <dipankar@in.ibm.com>
6378M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006379W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006380S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006381T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006382F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006383X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006384F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006385F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006386X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006387
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006388REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006389M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006390L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006391Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006393F: Documentation/rtc.txt
6394F: drivers/rtc/
6395F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006396F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006397
Linus Torvalds1da177e2005-04-16 15:20:36 -07006398REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006399L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006401F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006402
Mark Brownb83a3132011-05-11 19:59:58 +02006403REGISTER MAP ABSTRACTION
6404M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6405T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6406S: Supported
6407F: drivers/base/regmap/
6408F: include/linux/regmap.h
6409
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006410REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6411M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006412T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006413S: Maintained
6414F: drivers/remoteproc/
6415F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006416F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006417
Ivo van Doorne08976452008-04-12 19:23:55 +02006418RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006419M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006420L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006421W: http://wireless.kernel.org/
6422T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6423T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006424S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006425F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006426F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006427
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006428RICOH SMARTMEDIA/XD DRIVER
6429M: Maxim Levitsky <maximlevitsky@gmail.com>
6430S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006431F: drivers/mtd/nand/r852.c
6432F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006433
Maxim Levitsky92634122011-03-25 01:56:59 -07006434RICOH R5C592 MEMORYSTICK DRIVER
6435M: Maxim Levitsky <maximlevitsky@gmail.com>
6436S: Maintained
6437F: drivers/memstick/host/r592.*
6438
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439ROCKETPORT DRIVER
6440P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441W: http://www.comtrol.com
6442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006443F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006444F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445
6446ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006447M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006449W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006451F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006452F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006453F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006454
Antti Palosaari91952bc2012-10-01 12:28:46 -03006455RTL2830 MEDIA DRIVER
6456M: Antti Palosaari <crope@iki.fi>
6457L: linux-media@vger.kernel.org
6458W: http://linuxtv.org/
6459W: http://palosaari.fi/linux/
6460Q: http://patchwork.linuxtv.org/project/linux-media/list/
6461T: git git://linuxtv.org/anttip/media_tree.git
6462S: Maintained
6463F: drivers/media/dvb-frontends/rtl2830*
6464
Larry Finger59840482008-11-12 17:13:09 -06006465RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006466M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006467L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006468W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006469T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006470S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006471F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006472
Larry Finger59840482008-11-12 17:13:09 -06006473RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006474M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006475M: Hin-Tak Leung <htl10@users.sourceforge.net>
6476M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006477L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006478W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006479T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006480S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006481F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006482
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006483RTL8192CE WIRELESS DRIVER
6484M: Larry Finger <Larry.Finger@lwfinger.net>
6485M: Chaoming Li <chaoming_li@realsil.com.cn>
6486L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006487W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006488T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6489S: Maintained
6490F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006491F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006492
6493S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006494M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006495L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006497F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006498
Linus Torvalds1da177e2005-04-16 15:20:36 -07006499S390
Joe Perches8b58be82009-07-29 15:04:30 -07006500M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6501M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006503L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006504W: http://www.ibm.com/developerworks/linux/linux390/
6505S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006506F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006507F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006508F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006509F: Documentation/s390/
6510F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006511
6512S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006513M: Ursula Braun <ursula.braun@de.ibm.com>
6514M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006515M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006516L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006517W: http://www.ibm.com/developerworks/linux/linux390/
6518S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006519F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006520
Felix Beckfeed9b62009-03-26 15:24:23 +01006521S390 ZCRYPT DRIVER
Ingo Tuchscherer5c8d0982013-01-14 10:07:05 +01006522M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006523M: linux390@de.ibm.com
6524L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006525W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006526S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006527F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006528
Heiko Carstens5238da42006-02-11 17:56:01 -08006529S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006530M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006531M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006532L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006533W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006535F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536
Ursula Braundd96df22007-09-19 13:09:02 +02006537S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006538M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006539M: linux390@de.ibm.com
6540L: linux-s390@vger.kernel.org
6541W: http://www.ibm.com/developerworks/linux/linux390/
6542S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006543F: drivers/s390/net/*iucv*
6544F: include/net/iucv/
6545F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006546
Ben Dooks4dde7f72008-06-30 22:40:38 +01006547S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006548M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006549L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006550S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006551F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006552
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006553SAA7134 VIDEO4LINUX DRIVER
6554M: Mauro Carvalho Chehab <mchehab@redhat.com>
6555L: linux-media@vger.kernel.org
6556W: http://linuxtv.org
6557T: git git://linuxtv.org/media_tree.git
6558S: Odd fixes
6559F: Documentation/video4linux/saa7134/
6560F: drivers/media/pci/saa7134/
6561
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006563M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006564L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006565T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566W: http://www.mihu.de/linux/saa7146
6567S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006568F: drivers/media/common/saa7146/
6569F: drivers/media/pci/saa7146/
6570F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006571
Corentin Chary92304a42011-12-05 12:38:35 -05006572SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006573M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006574L: platform-driver-x86@vger.kernel.org
6575S: Maintained
6576F: drivers/platform/x86/samsung-laptop.c
6577
Mark Brown4a109cc2010-09-24 10:50:46 +01006578SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006579M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006580L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6581S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006582F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006583
Jingoo Han0d89a282011-12-19 11:09:35 +09006584SAMSUNG FRAMEBUFFER DRIVER
6585M: Jingoo Han <jg1.han@samsung.com>
6586L: linux-fbdev@vger.kernel.org
6587S: Maintained
6588F: drivers/video/s3c-fb.c
6589
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006590SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6591M: Sangbeom Kim <sbkim73@samsung.com>
6592L: linux-kernel@vger.kernel.org
6593S: Supported
6594F: drivers/mfd/sec*.c
6595F: drivers/regulator/s2m*.c
6596F: drivers/regulator/s5m*.c
6597F: drivers/rtc/rtc-sec.c
6598F: include/linux/mfd/samsung/
6599
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006600SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6601M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6602L: linux-media@vger.kernel.org
6603L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6604S: Maintained
6605F: drivers/media/platform/s3c-camif/
6606F: include/media/s3c_camif.h
6607
Alan Coxca749e22011-03-18 13:56:14 +00006608SERIAL DRIVERS
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006609M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Alan Coxca749e22011-03-18 13:56:14 +00006610L: linux-serial@vger.kernel.org
Greg Kroah-Hartman5e30bbb2013-01-23 15:45:23 -08006611S: Maintained
Alan Coxca749e22011-03-18 13:56:14 +00006612F: drivers/tty/serial
6613
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306614SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006615M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306616S: Maintained
6617F: include/linux/dw_dmac.h
6618F: drivers/dma/dw_dmac_regs.h
6619F: drivers/dma/dw_dmac.c
6620
Thomas Gleixner88606e82010-12-14 21:37:13 +01006621TIMEKEEPING, NTP
John Stultz50363732012-12-13 13:08:47 -05006622M: John Stultz <john.stultz@linaro.org>
Thomas Gleixner88606e82010-12-14 21:37:13 +01006623M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006624T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006625S: Supported
6626F: include/linux/clocksource.h
6627F: include/linux/time.h
6628F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006629F: include/uapi/linux/time.h
6630F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006631F: kernel/time/clocksource.c
6632F: kernel/time/time*.c
6633F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006634F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006635
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006636TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006637M: Huang Shijie <shijie8@gmail.com>
6638M: Kang Yong <kangyong@telegent.com>
6639M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006640S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006641F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006642
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006644M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006646F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006647
6648SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006649M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006650M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006651T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006652S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006653F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006654F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006655F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006656
Chen Liqin6bcf6732009-06-13 15:24:33 +08006657SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006658M: Chen Liqin <liqin.chen@sunplusct.com>
6659M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006660W: http://www.sunplusct.com
6661S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006662F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006663
Linus Torvalds1da177e2005-04-16 15:20:36 -07006664SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006665M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666L: linux-scsi@vger.kernel.org
6667W: http://www.kernel.dk
6668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006669F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670
Roland Dreierfb50a832010-10-07 09:54:53 -07006671SCSI RDMA PROTOCOL (SRP) INITIATOR
6672M: David Dillow <dillowda@ornl.gov>
6673L: linux-rdma@vger.kernel.org
6674S: Supported
6675W: http://www.openfabrics.org
6676Q: http://patchwork.kernel.org/project/linux-rdma/list/
6677T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6678F: drivers/infiniband/ulp/srp/
6679F: include/scsi/srp.h
6680
Linus Torvalds1da177e2005-04-16 15:20:36 -07006681SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006682M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006683L: linux-scsi@vger.kernel.org
6684W: http://www.torque.net/sg
6685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006686F: drivers/scsi/sg.c
6687F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006688
6689SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006690M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006691L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006692T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6693T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6694T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006696F: drivers/scsi/
6697F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006698
6699SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006700M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701L: linux-scsi@vger.kernel.org
6702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006703F: Documentation/scsi/st.txt
6704F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006705
6706SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006707M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006708M: Sridhar Samudrala <sri@us.ibm.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006709M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006710L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006711W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006713F: Documentation/networking/sctp.txt
6714F: include/linux/sctp.h
6715F: include/net/sctp/
6716F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717
6718SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006719M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006720S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006721F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006722F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006723F: drivers/watchdog/scx200_wdt.c
6724F: drivers/i2c/busses/scx200*
6725F: drivers/mtd/maps/scx200_docflash.c
6726F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006727
6728SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006729M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006731F: drivers/char/scx200_gpio.c
6732F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006733
6734SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006735M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006737F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006738
Sascha Sommer6a369132008-07-15 14:21:29 +02006739SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006740M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006741L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006743F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006744
Randy Dunlape7839f22008-10-12 16:11:45 -07006745SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006746M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006747L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006748T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6749S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006750F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006751F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006752
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006753SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006754M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006755L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006756L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006757S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006758F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006759
Ben Dooks0d1bb412009-06-14 13:52:37 +01006760SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006761M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006762L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006763S: Maintained
6764F: drivers/mmc/host/sdhci-s3c.c
6765
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006766SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006767M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006768L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006769L: linux-mmc@vger.kernel.org
6770S: Maintained
6771F: drivers/mmc/host/sdhci-spear.c
6772
James Morris8711cca2008-12-04 03:19:45 +11006773SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006774M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006775L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006776T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006777W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006778S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006779F: security/
James Morris8711cca2008-12-04 03:19:45 +11006780
Linus Torvalds1da177e2005-04-16 15:20:36 -07006781SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006782M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006783S: Supported
6784
6785SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006786M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006787M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006788M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006789L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006790W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006791T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006792S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006793F: include/linux/selinux*
6794F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006795F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006796
John Johansenc1c124e2010-07-29 14:48:09 -07006797APPARMOR SECURITY MODULE
6798M: John Johansen <john.johansen@canonical.com>
6799L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6800W: apparmor.wiki.kernel.org
6801T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6802S: Supported
6803F: security/apparmor/
6804
Jiri Slabycef2cf02007-05-08 00:31:45 -07006805SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006806M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006808F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006809F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006810
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006811SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006812M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006813L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006814T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006815S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006816F: drivers/ata/
6817F: include/linux/ata.h
6818F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006819
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306820SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006821M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006822L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006823W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006824S: Supported
6825F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306826
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006827SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006828M: Sathya Perla <sathya.perla@emulex.com>
6829M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6830M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006831L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006832W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006833S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006834F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006835
Ben Hutchings8ceee662008-04-27 12:55:59 +01006836SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006837M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006838M: Ben Hutchings <bhutchings@solarflare.com>
6839L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006840S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006841F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006842
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006843SGI GRU DRIVER
Bjorn Helgaascc883af2013-01-29 15:48:37 -07006844M: Dimitri Sivanich <sivanich@sgi.com>
6845M: Robin Holt <holt@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006847F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006848
6849SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006850M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006851L: linux-ia64@vger.kernel.org
6852S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006853F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006854F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006855F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006856
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006858M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859L: linux-visws-devel@lists.sf.net
6860W: http://linux-visws.sf.net
6861S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006862F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863
Jack Steiner75312612008-08-15 00:40:42 -07006864SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006865M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006867F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006868
Len Brown6349d992009-08-14 15:07:14 -04006869SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006870M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006871L: sfi-devel@simplefirmware.org
6872W: http://simplefirmware.org/
6873T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006874S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006875F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006876F: drivers/sfi/
6877F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006878
Linus Torvalds1da177e2005-04-16 15:20:36 -07006879SIMTEC EB110ATX (Chalice CATS)
6880P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006881P: Vincent Sanders <vince@simtec.co.uk>
6882M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006883W: http://www.simtec.co.uk/products/EB110ATX/
6884S: Supported
6885
6886SIMTEC EB2410ITX (BAST)
6887P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006888P: Vincent Sanders <vince@simtec.co.uk>
6889M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006890W: http://www.simtec.co.uk/products/EB2410ITX/
6891S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006892F: arch/arm/mach-s3c2410/mach-bast.c
6893F: arch/arm/mach-s3c2410/bast-ide.c
6894F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006895
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006896TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006897M: Sekhar Nori <nsekhar@ti.com>
6898M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306899L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306900T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006901Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006902S: Supported
6903F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006904F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006905
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03006906TI DAVINCI SERIES MEDIA DRIVER
6907M: Manjunath Hadli <manjunath.hadli@ti.com>
6908M: Prabhakar Lad <prabhakar.lad@ti.com>
6909L: linux-media@vger.kernel.org
6910L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
6911W: http://linuxtv.org/
6912Q: http://patchwork.linuxtv.org/project/linux-media/list/
6913T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
6914S: Supported
6915F: drivers/media/platform/davinci/
6916F: include/media/davinci/
6917
Francois Romieu92aab3c2005-07-30 13:11:18 +02006918SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006919M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006920L: netdev@vger.kernel.org
6921S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006922F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006923
Linus Torvalds1da177e2005-04-16 15:20:36 -07006924SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006925M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006926W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006927L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006929F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006931SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006932M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006933L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006935F: Documentation/i2c/busses/i2c-sis96x
6936F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006937
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006939M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006940W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006942F: Documentation/fb/sisfb.txt
6943F: drivers/video/sis/
6944F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006945
6946SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006947M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006948W: http://www.winischhofer.at/linuxsisusbvga.shtml
6949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006950F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006951
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006952SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006953M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006954M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006955M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006956L: linux-mm@kvack.org
6957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006958F: include/linux/sl?b*.h
6959F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006960
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006961SLEEPABLE READ-COPY UPDATE (SRCU)
6962M: Lai Jiangshan <laijs@cn.fujitsu.com>
6963M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6964W: http://www.rdrop.com/users/paulmck/RCU/
6965S: Supported
6966T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6967F: include/linux/srcu*
6968F: kernel/srcu*
6969
Casey Schaufler66372842012-05-23 18:34:52 -07006970SMACK SECURITY MODULE
6971M: Casey Schaufler <casey@schaufler-ca.com>
6972L: linux-security-module@vger.kernel.org
6973W: http://schaufler-ca.com
6974T: git git://git.gitorious.org/smack-next/kernel.git
6975S: Maintained
6976F: Documentation/security/Smack.txt
6977F: security/smack/
6978
Linus Torvalds1da177e2005-04-16 15:20:36 -07006979SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006980M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006981S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006982F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006983
Sakari Ailuse8e31622012-11-12 18:14:39 -03006984SMIA AND SMIA++ IMAGE SENSOR DRIVER
6985M: Sakari Ailus <sakari.ailus@iki.fi>
6986L: linux-media@vger.kernel.org
6987S: Maintained
6988F: drivers/media/i2c/smiapp
6989F: include/media/smiapp.h
6990F: drivers/media/i2c/smiapp-pll.c
6991F: drivers/media/i2c/smiapp-pll.h
6992
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006993SMM665 HARDWARE MONITOR DRIVER
6994M: Guenter Roeck <linux@roeck-us.net>
6995L: lm-sensors@lm-sensors.org
6996S: Maintained
6997F: Documentation/hwmon/smm665
6998F: drivers/hwmon/smm665.c
6999
Steve Glendinning9df73052010-08-14 21:08:54 +02007000SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007001M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007002L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007003S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007004F: Documentation/hwmon/emc2103
7005F: drivers/hwmon/emc2103.c
7006
Hans de Goedea98d5062011-03-21 17:59:36 +01007007SMSC SCH5627 HARDWARE MONITOR DRIVER
7008M: Hans de Goede <hdegoede@redhat.com>
7009L: lm-sensors@lm-sensors.org
7010S: Supported
7011F: Documentation/hwmon/sch5627
7012F: drivers/hwmon/sch5627.c
7013
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007014SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007015M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007016L: lm-sensors@lm-sensors.org
7017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007018F: Documentation/hwmon/smsc47b397
7019F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007020
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007021SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007022M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007023L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007025F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007026F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007027
Steve Glendinning2cb37722008-12-11 20:54:30 -08007028SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007029M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007030L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007031S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007032F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007033
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007034SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007035M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007036L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007037S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007038F: drivers/video/smscufx.c
7039
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007040SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007041M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007042L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007043T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007044S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007045F: include/media/soc*
7046F: drivers/media/i2c/soc_camera/
7047F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007048
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007049SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007050M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007052F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007053
Linus Torvalds1da177e2005-04-16 15:20:36 -07007054SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007055M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007056L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007057S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007058F: drivers/md/
7059F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007060F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007061
Linus Torvalds1da177e2005-04-16 15:20:36 -07007062SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007063M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007064L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007065S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007066F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067
Michael Buesch61e115a2007-09-18 15:12:50 -04007068SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007069M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007070L: netdev@vger.kernel.org
7071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007072F: drivers/ssb/
7073F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007074
Linus Torvalds1da177e2005-04-16 15:20:36 -07007075SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007076M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007077L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007078W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007080F: Documentation/laptops/sony-laptop.txt
7081F: drivers/char/sonypi.c
7082F: drivers/platform/x86/sony-laptop.c
7083F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007084
Alex Dubovbaf85322008-02-09 10:20:54 -08007085SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007086M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007087W: http://tifmxx.berlios.de/
7088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007089F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007090
Linus Torvalds1da177e2005-04-16 15:20:36 -07007091SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007092M: Jaroslav Kysela <perex@perex.cz>
7093M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007094L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007095W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007096T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007097T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007098S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007099F: Documentation/sound/
7100F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007101F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007102F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103
Mark Brownbd903bd2008-11-19 19:16:05 +00007104SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood6b9cf5c2013-01-15 15:13:27 +00007105M: Liam Girdwood <lgirdwood@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007106M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007107T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007108L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007109W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007110S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007111F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007112F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007113
Sam Ravnborg473321f2009-01-04 15:47:49 -08007114SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007115M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007116L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007117Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007118T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7119T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007121F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007122F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007123
David S. Miller6404fcc2010-03-16 01:00:17 -07007124SPARC SERIAL DRIVERS
7125M: "David S. Miller" <davem@davemloft.net>
7126L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007127T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7128T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007129S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007130F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007131F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007132F: drivers/tty/serial/sunhv.c
7133F: drivers/tty/serial/sunsab.c
7134F: drivers/tty/serial/sunsab.h
7135F: drivers/tty/serial/sunsu.c
7136F: drivers/tty/serial/sunzilog.c
7137F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007138
Christopher Li389325b2012-04-05 14:25:14 -07007139SPARSE CHECKER
7140M: "Christopher Li" <sparse@chrisli.org>
7141L: linux-sparse@vger.kernel.org
7142W: https://sparse.wiki.kernel.org/
7143T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7144T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7145S: Maintained
7146F: include/linux/compiler.h
7147
viresh kumarfc0c1952010-04-01 12:31:21 +01007148SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007149M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307150M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007151L: spear-devel@list.st.com
7152L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007153W: http://www.st.com/spear
7154S: Maintained
7155F: arch/arm/plat-spear/
7156
Viresh Kumar71e09a92012-04-20 22:39:48 +05307157SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007158M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307159M: Shiraz Hashim <shiraz.hashim@st.com>
7160L: spear-devel@list.st.com
7161L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7162W: http://www.st.com/spear
7163S: Maintained
7164F: arch/arm/mach-spear13xx/
7165
viresh kumarfc0c1952010-04-01 12:31:21 +01007166SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007167M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307168M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007169L: spear-devel@list.st.com
7170L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007171W: http://www.st.com/spear
7172S: Maintained
7173F: arch/arm/mach-spear3xx/
7174
7175SPEAR6XX MACHINE SUPPORT
7176M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307177M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007178M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007179L: spear-devel@list.st.com
7180L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007181W: http://www.st.com/spear
7182S: Maintained
7183F: arch/arm/mach-spear6xx/
7184
7185SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007186M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007187L: spear-devel@list.st.com
7188L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007189W: http://www.st.com/spear
7190S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307191F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007192
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007193SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007194M: Grant Likely <grant.likely@secretlab.ca>
Mark Brownf28037d2013-01-14 11:17:19 +09007195M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007196L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007197Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007198T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007200F: Documentation/spi/
7201F: drivers/spi/
7202F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007203F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007204
Jim Lewis2752e402006-09-29 02:01:19 -07007205SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007206M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7207M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007208L: netdev@vger.kernel.org
7209S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007210F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007211F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007212
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007213SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007214M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007215L: linuxppc-dev@lists.ozlabs.org
7216L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007217W: http://www.ibm.com/developerworks/power/cell/
7218S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007219F: Documentation/filesystems/spufs.txt
7220F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007221
Phillip Lougherfc555842009-01-05 08:46:29 +00007222SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007223M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007224L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7225W: http://squashfs.org.uk
7226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007227F: Documentation/filesystems/squashfs.txt
7228F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007229
Linus Torvalds1da177e2005-04-16 15:20:36 -07007230SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007231M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007233F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007234
Linus Torvalds26e9a392008-10-17 09:50:12 -07007235STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007236M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007237L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007238S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007239
Linus Torvalds26e9a392008-10-17 09:50:12 -07007240STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007241M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007242T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007243L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007244S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007245F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007246
Joe Perchesc8c8b102011-07-05 09:42:12 -07007247STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7248M: Henk de Groot <pe1dnn@amsat.org>
7249S: Odd Fixes
7250F: drivers/staging/wlags49_h2/
7251F: drivers/staging/wlags49_h25/
7252
Joe Perchesc9555152011-07-05 09:42:01 -07007253STAGING - ASUS OLED
7254M: Jakub Schmidtke <sjakub@gmail.com>
7255S: Odd Fixes
7256F: drivers/staging/asus_oled/
7257
Joe Perchesebd3d012011-07-05 09:42:02 -07007258STAGING - COMEDI
7259M: Ian Abbott <abbotti@mev.co.uk>
7260M: Mori Hess <fmhess@users.sourceforge.net>
7261S: Odd Fixes
7262F: drivers/staging/comedi/
7263
Joe Perches8ca572c2011-07-05 09:42:03 -07007264STAGING - CRYSTAL HD VIDEO DECODER
7265M: Naren Sankar <nsankar@broadcom.com>
7266M: Jarod Wilson <jarod@wilsonet.com>
7267M: Scott Davilla <davilla@4pi.com>
7268M: Manu Abraham <abraham.manu@gmail.com>
7269S: Odd Fixes
7270F: drivers/staging/crystalhd/
7271
Joe Perches0f16ffc2011-07-05 09:42:04 -07007272STAGING - ECHO CANCELLER
7273M: Steve Underwood <steveu@coppice.org>
7274M: David Rowe <david@rowetel.com>
7275S: Odd Fixes
7276F: drivers/staging/echo/
7277
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007278STAGING - ET131X NETWORK DRIVER
7279M: Mark Einon <mark.einon@gmail.com>
7280S: Odd Fixes
7281F: drivers/staging/et131x/
7282
Joe Perchesa0138162011-07-05 15:21:34 -07007283STAGING - FLARION FT1000 DRIVERS
7284M: Marek Belisko <marek.belisko@gmail.com>
7285S: Odd Fixes
7286F: drivers/staging/ft1000/
7287
Joe Perchesec3fab92011-07-05 09:42:05 -07007288STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7289M: David Täht <d@teklibre.com>
7290S: Odd Fixes
7291F: drivers/staging/frontier/
7292
Joe Perches6c1bb422011-07-05 09:42:07 -07007293STAGING - INDUSTRIAL IO
7294M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007295L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007296S: Odd Fixes
7297F: drivers/staging/iio/
7298
Joe Perchesa0138162011-07-05 15:21:34 -07007299STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7300M: Jarod Wilson <jarod@wilsonet.com>
7301W: http://www.lirc.org/
7302S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007303F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007304
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007305STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007306M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007307M: Marc Dietrich <marvin24@gmx.de>
7308L: ac100@lists.launchpad.net (moderated for non-subscribers)
7309S: Maintained
7310F: drivers/staging/nvec/
7311
Joe Perchesa0138162011-07-05 15:21:34 -07007312STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7313M: Andres Salomon <dilinger@queued.net>
7314M: Chris Ball <cjb@laptop.org>
7315M: Jon Nettleton <jon.nettleton@gmail.com>
7316W: http://wiki.laptop.org/go/DCON
7317S: Odd Fixes
7318F: drivers/staging/olpc_dcon/
7319
Chris Kelly94cfdd12012-03-14 10:55:42 +00007320STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Rupesh Gujarec4048c62013-01-24 18:14:51 +00007321M: Rupesh Gujare <rupesh.gujare@atmel.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007322S: Maintained
7323F: drivers/staging/ozwpan/
7324
Joe Perchesa0138162011-07-05 15:21:34 -07007325STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007326M: Willy Tarreau <willy@meta-x.org>
7327S: Odd Fixes
7328F: drivers/staging/panel/
7329
Joe Perchesa0138162011-07-05 15:21:34 -07007330STAGING - REALTEK RTL8712U DRIVERS
7331M: Larry Finger <Larry.Finger@lwfinger.net>
7332M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7333S: Odd Fixes
7334F: drivers/staging/rtl8712/
7335
Joe Perches9629fa82011-07-05 09:42:09 -07007336STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7337M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7338S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007339F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007340
Joe Perchesa0138162011-07-05 15:21:34 -07007341STAGING - SOFTLOGIC 6x10 MPEG CODEC
7342M: Ben Collins <bcollins@bluecherry.net>
7343S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007344F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007345
7346STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7347M: William Hubbs <w.d.hubbs@gmail.com>
7348M: Chris Brannon <chris@the-brannons.com>
7349M: Kirk Reiser <kirk@braille.uwo.ca>
7350M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7351L: speakup@braille.uwo.ca
7352W: http://www.linux-speakup.org/
7353S: Odd Fixes
7354F: drivers/staging/speakup/
7355
7356STAGING - TI DSP BRIDGE DRIVERS
Chen Ganga8906b02013-01-11 14:32:17 -08007357M: Omar Ramirez Luna <omar.ramirez@copitl.com>
Joe Perchesa0138162011-07-05 15:21:34 -07007358S: Odd Fixes
7359F: drivers/staging/tidspbridge/
7360
Joe Perchesa0138162011-07-05 15:21:34 -07007361STAGING - USB ENE SM/MS CARD READER DRIVER
7362M: Al Cho <acho@novell.com>
7363S: Odd Fixes
7364F: drivers/staging/keucr/
7365
Joe Perchesb3e871c2011-07-05 09:42:10 -07007366STAGING - VIA VT665X DRIVERS
7367M: Forest Bond <forest@alittletooquiet.net>
7368S: Odd Fixes
7369F: drivers/staging/vt665?/
7370
Joe Perches81a9a522011-07-05 09:42:11 -07007371STAGING - WINBOND IS89C35 WLAN USB DRIVER
7372M: Pavel Machek <pavel@ucw.cz>
7373S: Odd Fixes
7374F: drivers/staging/winbond/
7375
Joe Perches709bcb02011-07-05 09:42:13 -07007376STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007377M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007378S: Odd Fixes
7379F: drivers/staging/xgifb/
7380
Linus Torvalds1da177e2005-04-16 15:20:36 -07007381STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007382M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007383S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007384F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007386SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007387M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007388W: http://sammy.net/sun3/
7389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007390F: arch/m68k/kernel/*sun3*
7391F: arch/m68k/sun3*/
7392F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007393F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007394
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007395SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007396M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007397L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007398W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007399Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007400T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007401S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007402F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007403F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007404F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007405
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007406SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007407M: Len Brown <len.brown@intel.com>
7408M: Pavel Machek <pavel@ucw.cz>
7409M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007410L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007411S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007412F: Documentation/power/
7413F: arch/x86/kernel/acpi/
7414F: drivers/base/power/
7415F: kernel/power/
7416F: include/linux/suspend.h
7417F: include/linux/freezer.h
7418F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007419
7420SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007421M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007422L: linux-video@atrey.karlin.mff.cuni.cz
7423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007424F: Documentation/svga.txt
7425F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007426
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007427SWIOTLB SUBSYSTEM
7428M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7429L: linux-kernel@vger.kernel.org
7430S: Supported
7431F: lib/swiotlb.c
7432F: arch/*/kernel/pci-swiotlb.c
7433F: include/linux/swiotlb.h
7434
Linus Torvalds1da177e2005-04-16 15:20:36 -07007435SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007436M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007438F: Documentation/filesystems/sysv-fs.txt
7439F: fs/sysv/
7440F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007441
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007442TARGET SUBSYSTEM
7443M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7444L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007445L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007446L: http://groups.google.com/group/linux-iscsi-target-dev
7447W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007448T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007449S: Supported
7450F: drivers/target/
7451F: include/target/
7452F: Documentation/target/
7453
Alan Cox4e688522008-04-30 00:52:11 -07007454TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007455M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007457F: Documentation/accounting/taskstats*
7458F: include/linux/taskstats*
7459F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007460
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007461TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007462M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007463L: netdev@vger.kernel.org
7464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007465F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007466F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007467F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007468
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007469TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007470M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7471M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007472W: http://tcp-lp-mod.sourceforge.net/
7473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007474F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007475
Antti Palosaari91952bc2012-10-01 12:28:46 -03007476TDA10071 MEDIA DRIVER
7477M: Antti Palosaari <crope@iki.fi>
7478L: linux-media@vger.kernel.org
7479W: http://linuxtv.org/
7480W: http://palosaari.fi/linux/
7481Q: http://patchwork.linuxtv.org/project/linux-media/list/
7482T: git git://linuxtv.org/anttip/media_tree.git
7483S: Maintained
7484F: drivers/media/dvb-frontends/tda10071*
7485
7486TDA18212 MEDIA DRIVER
7487M: Antti Palosaari <crope@iki.fi>
7488L: linux-media@vger.kernel.org
7489W: http://linuxtv.org/
7490W: http://palosaari.fi/linux/
7491Q: http://patchwork.linuxtv.org/project/linux-media/list/
7492T: git git://linuxtv.org/anttip/media_tree.git
7493S: Maintained
7494F: drivers/media/tuners/tda18212*
7495
7496TDA18218 MEDIA DRIVER
7497M: Antti Palosaari <crope@iki.fi>
7498L: linux-media@vger.kernel.org
7499W: http://linuxtv.org/
7500W: http://palosaari.fi/linux/
7501Q: http://patchwork.linuxtv.org/project/linux-media/list/
7502T: git git://linuxtv.org/anttip/media_tree.git
7503S: Maintained
7504F: drivers/media/tuners/tda18218*
7505
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007506TDA18271 MEDIA DRIVER
7507M: Michael Krufky <mkrufky@linuxtv.org>
7508L: linux-media@vger.kernel.org
7509W: http://linuxtv.org/
7510W: http://github.com/mkrufky
7511Q: http://patchwork.linuxtv.org/project/linux-media/list/
7512T: git git://linuxtv.org/mkrufky/tuners.git
7513S: Maintained
7514F: drivers/media/tuners/tda18271*
7515
Michael Krufkye48307a2012-10-02 00:56:33 -03007516TDA827x MEDIA DRIVER
7517M: Michael Krufky <mkrufky@linuxtv.org>
7518L: linux-media@vger.kernel.org
7519W: http://linuxtv.org/
7520W: http://github.com/mkrufky
7521Q: http://patchwork.linuxtv.org/project/linux-media/list/
7522T: git git://linuxtv.org/mkrufky/tuners.git
7523S: Maintained
7524F: drivers/media/tuners/tda8290.*
7525
Michael Krufky66cf9212012-10-02 00:56:28 -03007526TDA8290 MEDIA DRIVER
7527M: Michael Krufky <mkrufky@linuxtv.org>
7528L: linux-media@vger.kernel.org
7529W: http://linuxtv.org/
7530W: http://github.com/mkrufky
7531Q: http://patchwork.linuxtv.org/project/linux-media/list/
7532T: git git://linuxtv.org/mkrufky/tuners.git
7533S: Maintained
7534F: drivers/media/tuners/tda8290.*
7535
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007536TEA5761 TUNER DRIVER
7537M: Mauro Carvalho Chehab <mchehab@redhat.com>
7538L: linux-media@vger.kernel.org
7539W: http://linuxtv.org
7540T: git git://linuxtv.org/media_tree.git
7541S: Odd fixes
7542F: drivers/media/tuners/tea5761.*
7543
7544TEA5767 TUNER DRIVER
7545M: Mauro Carvalho Chehab <mchehab@redhat.com>
7546L: linux-media@vger.kernel.org
7547W: http://linuxtv.org
7548T: git git://linuxtv.org/media_tree.git
7549S: Maintained
7550F: drivers/media/tuners/tea5767.*
7551
Jiri Pirko3d249d42011-11-11 22:16:48 +00007552TEAM DRIVER
Jiri Pirkodca9ab92013-02-15 23:55:05 +00007553M: Jiri Pirko <jiri@resnulli.us>
Jiri Pirko3d249d42011-11-11 22:16:48 +00007554L: netdev@vger.kernel.org
7555S: Supported
7556F: drivers/net/team/
7557F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007558F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007559
Vivien Didelot7d029122013-01-04 16:18:14 -05007560TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
7561M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
7562S: Maintained
7563F: arch/x86/platform/ts5500/
7564
Sean Young40ad4a32012-11-19 10:32:53 -03007565TECHNOTREND USB IR RECEIVER
7566M: Sean Young <sean@mess.org>
7567L: linux-media@vger.kernel.org
7568S: Maintained
7569F: drivers/media/rc/ttusbir.c
7570
Erik Gilling84b94142010-06-09 15:35:53 -07007571TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007572M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007573L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007574Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7575T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007576S: Supported
7577F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007578F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007579F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007580
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007581TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007582M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007583L: netdev@vger.kernel.org
7584S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007585F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007586
Alan Cox4e688522008-04-30 00:52:11 -07007587Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007588M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007589S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007590F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007591
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007592TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007593M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007594M: Max Filippov <jcmvbkbc@gmail.com>
7595L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007597F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007598
Zhang Ruid3fb6952012-11-15 08:58:27 +08007599THERMAL
7600M: Zhang Rui <rui.zhang@intel.com>
7601L: linux-pm@vger.kernel.org
7602T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7603S: Supported
7604F: drivers/thermal/
7605F: include/linux/thermal.h
7606
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05007607THINGM BLINK(1) USB RGB LED DRIVER
7608M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
7609S: Maintained
7610F: drivers/hid/hid-thingm.c
7611
Alan Cox4e688522008-04-30 00:52:11 -07007612THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007613M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007614L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007615L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007616W: http://ibm-acpi.sourceforge.net
7617W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007618T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007620F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007621
Alex Dubov4020f2d2006-10-04 02:15:37 -07007622TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007623M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007625F: drivers/misc/tifm*
7626F: drivers/mmc/host/tifm_sd.c
7627F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007628
M R Swami Reddy152ad442012-04-02 20:02:31 +05307629TI LM49xxx FAMILY ASoC CODEC DRIVERS
7630M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307631M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307632L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7633S: Maintained
7634F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307635F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307636
Kim, Milo0edd8072012-12-17 16:01:17 -08007637TI LP855x BACKLIGHT DRIVER
7638M: Milo Kim <milo.kim@ti.com>
7639S: Maintained
7640F: Documentation/backlight/lp855x-driver.txt
7641F: drivers/video/backlight/lp855x_bl.c
7642F: include/linux/platform_data/lp855x.h
7643
Kim, Milofaf13f62012-12-10 05:27:03 +00007644TI LP8727 CHARGER DRIVER
7645M: Milo Kim <milo.kim@ti.com>
7646S: Maintained
7647F: drivers/power/lp8727_charger.c
7648F: include/linux/platform_data/lp8727.h
7649
Kim, Milo22f12292012-12-10 05:27:55 +00007650TI LP8788 MFD DRIVER
7651M: Milo Kim <milo.kim@ti.com>
7652S: Maintained
7653F: drivers/iio/adc/lp8788_adc.c
7654F: drivers/leds/leds-lp8788.c
7655F: drivers/mfd/lp8788*.c
7656F: drivers/power/lp8788-charger.c
7657F: drivers/regulator/lp8788-*.c
7658F: include/linux/mfd/lp8788*.h
7659
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007660TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007661M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007662L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7663S: Maintained
7664F: sound/soc/codecs/twl4030*
7665
Luciano Coelho90921012011-11-20 21:40:41 +02007666TI WILINK WIRELESS DRIVERS
7667M: Luciano Coelho <coelho@ti.com>
7668L: linux-wireless@vger.kernel.org
7669W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7670W: http://wireless.kernel.org/en/users/Drivers/wl1251
7671T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7672S: Maintained
7673F: drivers/net/wireless/ti/
7674F: include/linux/wl12xx.h
7675
Per Lidene86eaa32006-01-12 16:45:18 +01007676TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007677M: Jon Maloy <jon.maloy@ericsson.com>
7678M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007679L: netdev@vger.kernel.org (core kernel code)
7680L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007681W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007682S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007683F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007684F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007685
Chris Metcalf867e3592010-05-28 23:09:12 -04007686TILE ARCHITECTURE
7687M: Chris Metcalf <cmetcalf@tilera.com>
7688W: http://www.tilera.com/scm/
7689S: Supported
7690F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007691F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007692F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007693F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007694
Linus Torvalds1da177e2005-04-16 15:20:36 -07007695TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007696M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007697L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007698W: http://sourceforge.net/projects/tlan/
7699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007700F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007701F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007702
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007703TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007704M: Kentaro Takeda <takedakn@nttdata.co.jp>
7705M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007706L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7707L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007708L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7709L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7710W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007711T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007713F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007714
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007715TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007716M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007717L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007718S: Maintained
7719F: drivers/platform/x86/topstar-laptop.c
7720
Linus Torvalds1da177e2005-04-16 15:20:36 -07007721TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007722L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007723S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007724F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007725
7726TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007727M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007728L: tlinux-users@tce.toshiba-dme.co.jp
7729W: http://www.buzzard.org.uk/toshiba/
7730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007731F: drivers/char/toshiba.c
7732F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007733F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007734
Pierre Ossmand719f902009-03-24 21:06:09 +01007735TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007736M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007737M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007738L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007739S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007740F: drivers/mmc/host/tmio_mmc*
7741F: drivers/mmc/host/sh_mobile_sdhi.c
7742F: include/linux/mmc/tmio.h
7743F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007744
Hugh Dickins98f32602009-05-21 20:33:58 +01007745TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007746M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007747L: linux-mm@kvack.org
7748S: Maintained
7749F: include/linux/shmem_fs.h
7750F: mm/shmem.c
7751
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02007752TM6000 VIDEO4LINUX DRIVER
7753M: Mauro Carvalho Chehab <mchehab@redhat.com>
7754L: linux-media@vger.kernel.org
7755W: http://linuxtv.org
7756T: git git://linuxtv.org/media_tree.git
7757S: Odd fixes
7758F: drivers/media/usb/tm6000/
7759
Alan Cox4e688522008-04-30 00:52:11 -07007760TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007761M: Kent Yoder <key@linux.vnet.ibm.com>
7762M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007763W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007764M: Marcel Selhorst <tpmdd@selhorst.net>
7765M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007766W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007767L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007769F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007770
Joe Perchesd6f005a2009-10-26 16:49:40 -07007771TRACING
7772M: Steven Rostedt <rostedt@goodmis.org>
7773M: Frederic Weisbecker <fweisbec@gmail.com>
7774M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007775T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007776S: Maintained
7777F: Documentation/trace/ftrace.txt
7778F: arch/*/*/*/ftrace.h
7779F: arch/*/kernel/ftrace.c
7780F: include/*/ftrace.h
7781F: include/linux/trace*.h
7782F: include/trace/
7783F: kernel/trace/
7784
Linus Torvalds1da177e2005-04-16 15:20:36 -07007785TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007786M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007787T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007788S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007789K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007790
Alan Cox4e688522008-04-30 00:52:11 -07007791TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007792M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01007793M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08007794S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007795T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007796F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007797F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007798F: include/linux/serial_core.h
7799F: include/linux/serial.h
7800F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007801F: include/uapi/linux/serial_core.h
7802F: include/uapi/linux/serial.h
7803F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007804
Antti Palosaari91952bc2012-10-01 12:28:46 -03007805TUA9001 MEDIA DRIVER
7806M: Antti Palosaari <crope@iki.fi>
7807L: linux-media@vger.kernel.org
7808W: http://linuxtv.org/
7809W: http://palosaari.fi/linux/
7810Q: http://patchwork.linuxtv.org/project/linux-media/list/
7811T: git git://linuxtv.org/anttip/media_tree.git
7812S: Maintained
7813F: drivers/media/tuners/tua9001*
7814
Grant Grundler740db6d2008-02-17 11:53:49 -07007815TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007816M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007817L: netdev@vger.kernel.org
7818S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007819F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007820
7821TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00007822M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007823W: http://vtun.sourceforge.net/tun
7824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007825F: Documentation/networking/tuntap.txt
7826F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007827
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007828TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007829M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007831F: drivers/tc/
7832F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007833
Linus Torvalds1da177e2005-04-16 15:20:36 -07007834U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007835M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007836L: linux-scsi@vger.kernel.org
7837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007838F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007839
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007840UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007841M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007842M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007843L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007844T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007845W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007847F: Documentation/filesystems/ubifs.txt
7848F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007849
Alan Coxcc2020e2008-05-19 14:21:51 +01007850UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007851M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007852W: http://www.uclinux.org/
7853L: uclinux-dev@uclinux.org (subscribers-only)
7854S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007855F: arch/m68k/*/*_no.*
7856F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007857
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007858UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007859M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007860W: http://uclinux-h8.sourceforge.jp/
7861S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007862F: arch/h8300/
7863F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007864F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007865
Linus Torvalds1da177e2005-04-16 15:20:36 -07007866UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007867M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007869F: Documentation/filesystems/udf.txt
7870F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007871
Alan Coxcc2020e2008-05-19 14:21:51 +01007872UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007873M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007875F: Documentation/filesystems/ufs.txt
7876F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007877
David Herrmann0a09d3a2012-06-10 15:16:28 +02007878UHID USERSPACE HID IO DRIVER:
7879M: David Herrmann <dh.herrmann@googlemail.com>
7880L: linux-input@vger.kernel.org
7881S: Maintained
7882F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007883F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02007884
David Vrabel18332a82008-09-17 16:34:44 +01007885ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007886L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007887S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007888F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007889F: include/linux/uwb.h
7890F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007891
GuanXuetaob31d8272011-01-16 00:35:49 +08007892UNICORE32 ARCHITECTURE:
7893M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7894W: http://mprc.pku.edu.cn/~guanxuetao/linux
7895S: Maintained
7896T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7897F: arch/unicore32/
7898
Tony Finchd8379ab2009-11-27 15:50:30 +00007899UNIFDEF
7900M: Tony Finch <dot@dotat.at>
7901W: http://dotat.at/prog/unifdef
7902S: Maintained
7903F: scripts/unifdef.c
7904
Linus Torvalds1da177e2005-04-16 15:20:36 -07007905UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007906M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007907W: http://www.kernel.dk
7908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007909F: Documentation/cdrom/
7910F: drivers/cdrom/cdrom.c
7911F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007912F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007913
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307914UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7915M: Vinayak Holikatti <vinholikatti@gmail.com>
7916M: Santosh Y <santoshsy@gmail.com>
7917L: linux-scsi@vger.kernel.org
7918S: Supported
7919F: Documentation/scsi/ufs.txt
7920F: drivers/scsi/ufs/
7921
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007922UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007923M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007924W: http://www.linux-mtd.infradead.org/
7925L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007926T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007927S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007928F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007929F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007930F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007931
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007932UNSORTED BLOCK IMAGES (UBI) Fastmap
7933M: Richard Weinberger <richard@nod.at>
7934L: linux-mtd@lists.infradead.org
7935S: Maintained
7936F: drivers/mtd/ubi/fastmap.c
7937
Linus Torvalds1da177e2005-04-16 15:20:36 -07007938USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007939M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007940L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007942F: Documentation/usb/acm.txt
7943F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007944
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02007945USB AR5523 WIRELESS DRIVER
7946M: Pontus Fuchs <pontus.fuchs@gmail.com>
7947L: linux-wireless@vger.kernel.org
7948S: Maintained
7949F: drivers/net/wireless/ath/ar5523/
7950
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007951USB ATTACHED SCSI
7952M: Matthew Wilcox <willy@linux.intel.com>
7953M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01007954M: Gerd Hoffmann <kraxel@redhat.com>
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007955L: linux-usb@vger.kernel.org
7956L: linux-scsi@vger.kernel.org
Gerd Hoffmann8eae0fb2013-01-25 14:52:09 +01007957S: Maintained
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007958F: drivers/usb/storage/uas.c
7959
Linus Torvalds1da177e2005-04-16 15:20:36 -07007960USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007961M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007962L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007964F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007965F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007966
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007967USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007968M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007969L: linux-usb@vger.kernel.org
7970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007971F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007972
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007973USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007974M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007975L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007976W: http://www.linux-usb.org/usbnet
7977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007978F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007979
Alan Coxcc2020e2008-05-19 14:21:51 +01007980USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007981M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007982L: rio500-users@lists.sourceforge.net
7983W: http://rio500.sourceforge.net
7984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007985F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007986
Linus Torvalds1da177e2005-04-16 15:20:36 -07007987USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007988M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007989L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007991F: Documentation/usb/ehci.txt
7992F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007993
David Brownell69ae9e32006-11-14 02:03:31 -08007994USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007995M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007996L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007997W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007998T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008000F: drivers/usb/gadget/
8001F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008002
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008003USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008004M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008005L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008006T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008007S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008008F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008009F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008010
matt mooney857aab32011-06-17 15:50:46 -07008011USB/IP DRIVERS
8012M: Matt Mooney <mfm@muteddisk.com>
8013L: linux-usb@vger.kernel.org
8014S: Maintained
8015F: drivers/staging/usbip/
8016
Olav Kongas959eea22005-11-03 17:38:14 +02008017USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008018M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008019L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008021F: drivers/usb/host/isp116x*
8022F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008023
Linus Torvalds1da177e2005-04-16 15:20:36 -07008024USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008025M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008026L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008028F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008029
8030USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008031M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008032L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008033L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008034S: Maintained
8035W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008036F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008037
Clemens Ladischaf399172011-01-10 16:32:54 +01008038USB MIDI DRIVER
8039M: Clemens Ladisch <clemens@ladisch.de>
8040L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8041T: git git://git.alsa-project.org/alsa-kernel.git
8042S: Maintained
8043F: sound/usb/midi.*
8044
Linus Torvalds1da177e2005-04-16 15:20:36 -07008045USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008046M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008047L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008049F: Documentation/usb/ohci.txt
8050F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008051
Matthias Urlichsba460e42005-07-14 00:33:47 -07008052USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008053M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008054L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008056F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008057
Linus Torvalds1da177e2005-04-16 15:20:36 -07008058USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008059M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008060L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008061L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008062W: http://pegasus2.sourceforge.net/
8063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008064F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008065
Felipe Balbid3ad5582012-05-21 16:24:49 +03008066USB PHY LAYER
8067M: Felipe Balbi <balbi@ti.com>
8068L: linux-usb@vger.kernel.org
8069T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8070S: Maintained
8071F: drivers/usb/phy/
8072F: drivers/usb/otg/
8073
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008074USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008075M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008076L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008077S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008078F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008079
8080USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008081M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008082L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008083L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008084W: http://pegasus2.sourceforge.net/
8085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008086F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087
Alan Cox4e688522008-04-30 00:52:11 -07008088USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008089M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008090L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008092F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008093
8094USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008095M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008096L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008097S: Maintained
8098W: http://geocities.com/i0xox0i
8099W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008100F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008101
Linus Torvalds1da177e2005-04-16 15:20:36 -07008102USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008103M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008104W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008106F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008107
8108USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008109M: Peter Berger <pberger@brimson.com>
8110M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008111L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008113F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008114
8115USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008116M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008117L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008118S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008119F: Documentation/usb/usb-serial.txt
8120F: drivers/usb/serial/generic.c
8121F: drivers/usb/serial/usb-serial.c
8122F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008123
Linus Torvalds1da177e2005-04-16 15:20:36 -07008124USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008125M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008126L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008128F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008129
8130USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008131M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008132L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008134F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008135
8136USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008137M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008138L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008139W: http://www.connecttech.com
8140S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008141F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008142
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008143USB SMSC75XX ETHERNET DRIVER
8144M: Steve Glendinning <steve.glendinning@shawell.net>
8145L: netdev@vger.kernel.org
8146S: Maintained
8147F: drivers/net/usb/smsc75xx.*
8148
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008149USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008150M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008151L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008153F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008154
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008155USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008156M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008157L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008158L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008159T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008160W: http://www.linux-projects.org
8161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008162F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008163F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008164
8165USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008166M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008167L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008168W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008169T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008170S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008171F: Documentation/usb/
8172F: drivers/net/usb/
8173F: drivers/usb/
8174F: include/linux/usb.h
8175F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008176
8177USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008178M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008179L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008181F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008182
David Brownell69ae9e32006-11-14 02:03:31 -08008183USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008184M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008185L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008186W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008188F: drivers/net/usb/usbnet.c
8189F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008190
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008191USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008192M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008193L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008194L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008195T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008196W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008197S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008198F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008199F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008200
Laurent Pinchart8282da42012-10-04 02:32:42 +02008201USB WEBCAM GADGET
8202M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8203L: linux-usb@vger.kernel.org
8204S: Maintained
8205F: drivers/usb/gadget/*uvc*.c
8206F: drivers/usb/gadget/webcam.c
8207
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008208USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008209M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008210L: linux-wireless@vger.kernel.org
8211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008212F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008213
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008214USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008215M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008216L: linux-usb@vger.kernel.org
8217S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008218F: drivers/usb/host/xhci*
8219F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008220
Linus Torvalds1da177e2005-04-16 15:20:36 -07008221USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008222L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008223W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008224S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008225F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008226
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008227USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008228M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008229L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008230L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008231T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008232W: http://royale.zerezo.com/zr364xx/
8233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008234F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008235F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008236
Randy Dunlape7839f22008-10-12 16:11:45 -07008237USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008238M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008239M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008240L: user-mode-linux-devel@lists.sourceforge.net
8241L: user-mode-linux-user@lists.sourceforge.net
8242W: http://user-mode-linux.sourceforge.net
8243S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008244F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008245F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008246F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008247F: fs/hostfs/
8248F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008249
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008250USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008251M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008252M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008254F: Documentation/DocBook/uio-howto.tmpl
8255F: drivers/uio/
8256F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008257
Karel Zak256cccb2012-06-01 10:13:09 +02008258UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008259M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008260L: util-linux@vger.kernel.org
8261W: http://en.wikipedia.org/wiki/Util-linux
8262T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008263S: Maintained
8264
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008265UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008266M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008267L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008268W: http://dev.gentoo.org/~spock/projects/uvesafb/
8269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008270F: Documentation/fb/uvesafb.txt
8271F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008272
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008273VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008274M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008276F: Documentation/filesystems/vfat.txt
8277F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008278
Alex Williamsoncba33452012-07-31 08:16:22 -06008279VFIO DRIVER
8280M: Alex Williamson <alex.williamson@redhat.com>
8281L: kvm@vger.kernel.org
8282S: Maintained
8283F: Documentation/vfio.txt
8284F: drivers/vfio/
8285F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008286F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008287
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008288VIDEOBUF2 FRAMEWORK
8289M: Pawel Osciak <pawel@osciak.com>
8290M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008291M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008292L: linux-media@vger.kernel.org
8293S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008294F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008295F: include/media/videobuf2-*
8296
Amit Shah9a824462010-03-23 18:23:09 +05308297VIRTIO CONSOLE DRIVER
8298M: Amit Shah <amit.shah@redhat.com>
8299L: virtualization@lists.linux-foundation.org
8300S: Maintained
8301F: drivers/char/virtio_console.c
8302F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008303F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308304
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308305VIRTIO CORE, NET AND BLOCK DRIVERS
8306M: Rusty Russell <rusty@rustcorp.com.au>
8307M: "Michael S. Tsirkin" <mst@redhat.com>
8308L: virtualization@lists.linux-foundation.org
8309S: Maintained
8310F: drivers/virtio/
8311F: drivers/net/virtio_net.c
8312F: drivers/block/virtio_blk.c
8313F: include/linux/virtio_*.h
8314
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008315VIRTIO HOST (VHOST)
8316M: "Michael S. Tsirkin" <mst@redhat.com>
8317L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008318L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008319L: netdev@vger.kernel.org
8320S: Maintained
8321F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008322F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008323
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008325M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008326S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008327F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008328
Harald Weltef0bf7f62009-06-17 20:22:39 +02008329VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008330M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008331M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008332S: Maintained
8333F: drivers/mmc/host/via-sdmmc.c
8334
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008335VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008336M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008337L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008338S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008339F: include/linux/via-core.h
8340F: include/linux/via-gpio.h
8341F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008342F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008343
Francois Romieu01f20732007-01-26 00:57:17 -08008344VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008345M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008346L: netdev@vger.kernel.org
8347S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008348F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008349
Patrick McHardybe7f8272007-10-23 20:26:36 -07008350VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008351M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008352L: netdev@vger.kernel.org
8353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008354F: drivers/net/macvlan.c
8355F: include/linux/if_*vlan.h
8356F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008357
Florian Fainelli55e331c2009-06-16 15:33:53 -07008358VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008359M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008360L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008361S: Maintained
8362F: drivers/vlynq/vlynq.c
8363F: include/linux/vlynq.h
8364
Martyn Welch390beae2012-05-03 17:52:36 +01008365VME SUBSYSTEM
8366M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008367M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008368M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8369L: devel@driverdev.osuosl.org
8370S: Maintained
8371T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8372F: Documentation/vme_api.txt
8373F: drivers/staging/vme/
8374F: drivers/vme/
8375F: include/linux/vme*
8376
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008377VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008378M: Shreyas Bhatewara <sbhatewara@vmware.com>
8379M: "VMware, Inc." <pv-drivers@vmware.com>
8380L: netdev@vger.kernel.org
8381S: Maintained
8382F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008383
Alok Kataria851b1642009-10-13 14:51:05 -07008384VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008385M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008386M: VMware PV-Drivers <pv-drivers@vmware.com>
8387L: linux-scsi@vger.kernel.org
8388S: Maintained
8389F: drivers/scsi/vmw_pvscsi.c
8390F: drivers/scsi/vmw_pvscsi.h
8391
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008392VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008393M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008394M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008395W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008396W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008397T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008398S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008399F: drivers/regulator/
8400F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008401
Juerg Haefligerab413192006-09-24 20:54:04 +02008402VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008403M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008404L: lm-sensors@lm-sensors.org
8405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008406F: Documentation/hwmon/vt1211
8407F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008408
Roger Lucas1de9e372005-11-26 20:20:05 +01008409VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008410M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008411L: lm-sensors@lm-sensors.org
8412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008413F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008414
Tony Olech88095e72011-05-14 16:48:13 -04008415VUB300 USB to SDIO/SD/MMC bridge chip
8416M: Tony Olech <tony.olech@elandigitalsystems.com>
8417L: linux-mmc@vger.kernel.org
8418L: linux-usb@vger.kernel.org
8419S: Supported
8420F: drivers/mmc/host/vub300.c
8421
Linus Torvalds1da177e2005-04-16 15:20:36 -07008422W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008423M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008425F: Documentation/w1/
8426F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008427
Charles Spirakis13927072006-07-05 18:05:15 +02008428W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008429M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008430L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008432F: Documentation/hwmon/w83791d
8433F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008434
Rudolf Marek61db0112006-12-12 18:18:30 +01008435W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008436M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008437L: lm-sensors@lm-sensors.org
8438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008439F: Documentation/hwmon/w83793
8440F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008441
Jean Delvaree3760b42010-10-28 20:31:49 +02008442W83795 HARDWARE MONITORING DRIVER
8443M: Jean Delvare <khali@linux-fr.org>
8444L: lm-sensors@lm-sensors.org
8445S: Maintained
8446F: drivers/hwmon/w83795.c
8447
Linus Torvalds1da177e2005-04-16 15:20:36 -07008448W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008449M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008451F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008452
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008453WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008454M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008455L: linux-watchdog@vger.kernel.org
8456W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008457T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008459F: Documentation/watchdog/
8460F: drivers/watchdog/
8461F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008462F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008463
Linus Torvalds1da177e2005-04-16 15:20:36 -07008464WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008465M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008466L: linux-scsi@vger.kernel.org
8467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008468F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008469
David Herrmannb22e00f2011-09-06 13:50:40 +02008470WIIMOTE HID DRIVER
8471M: David Herrmann <dh.herrmann@googlemail.com>
8472L: linux-input@vger.kernel.org
8473S: Maintained
8474F: drivers/hid/hid-wiimote*
8475
David Härdemane258b802009-09-21 17:04:53 -07008476WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008477M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008478S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008479F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008480
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008481WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008482M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008483M: linux-wimax@intel.com
8484L: wimax@linuxwimax.org
8485S: Supported
8486W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008487F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008488F: include/linux/wimax/debug.h
8489F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008490F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008491F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008492
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008493WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008494M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008496F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008497
Linus Torvalds1da177e2005-04-16 15:20:36 -07008498WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008499M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008500L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008501W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008503F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008504
Mark Brownfebf1df2008-04-02 00:51:09 -04008505WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008506M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8507M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008508L: linux-input@vger.kernel.org
8509T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8510W: http://opensource.wolfsonmicro.com/node/7
8511S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008512F: drivers/input/touchscreen/*wm97*
8513F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008514
Mark Brown055bcbc2010-08-13 14:18:12 +01008515WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008516M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008517L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008518T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008519T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008520W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008521S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008522F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008523F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008524F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008525F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008526F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008527F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008528F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008529F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008530F: drivers/input/misc/wm831x-on.c
8531F: drivers/input/touchscreen/wm831x-ts.c
8532F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008533F: drivers/mfd/arizona*
8534F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008535F: drivers/power/wm83*.c
8536F: drivers/rtc/rtc-wm83*.c
8537F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008538F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008539F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008540F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008541F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008542F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008543F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008544F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008545F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008546F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008547F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008548
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008549WORKQUEUE
8550M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008551T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8552S: Maintained
8553F: include/linux/workqueue.h
8554F: kernel/workqueue.c
8555F: Documentation/workqueue.txt
8556
Linus Torvalds1da177e2005-04-16 15:20:36 -07008557X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008558M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008559L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008560S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008561F: Documentation/networking/x25*
8562F: include/net/x25*
8563F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008564
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008565X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008566M: Thomas Gleixner <tglx@linutronix.de>
8567M: Ingo Molnar <mingo@redhat.com>
8568M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008569M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008570T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008572F: Documentation/x86/
8573F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008574
Matthew Garrettd0944852010-02-11 10:40:13 -05008575X86 PLATFORM DRIVERS
Matthew Garrettf7cb13b2012-12-26 12:22:25 -05008576M: Matthew Garrett <matthew.garrett@nebula.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05008577L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008578T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008579S: Maintained
8580F: drivers/platform/x86
8581
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008582X86 MCE INFRASTRUCTURE
8583M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008584M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008585L: linux-edac@vger.kernel.org
8586S: Maintained
8587F: arch/x86/kernel/cpu/mcheck/*
8588
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008589XC2028/3028 TUNER DRIVER
8590M: Mauro Carvalho Chehab <mchehab@redhat.com>
8591L: linux-media@vger.kernel.org
8592W: http://linuxtv.org
8593T: git git://linuxtv.org/media_tree.git
8594S: Maintained
8595F: drivers/media/tuners/tuner-xc2028.*
8596
Ian Campbellc4468082011-04-27 15:26:46 -07008597XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008598M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008599M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008600L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8601L: virtualization@lists.linux-foundation.org
8602S: Supported
8603F: arch/x86/xen/
8604F: drivers/*/xen-*front.c
8605F: drivers/xen/
8606F: arch/x86/include/asm/xen/
8607F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008608F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07008609
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008610XEN HYPERVISOR ARM
8611M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8612L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8613S: Supported
8614F: arch/arm/xen/
8615F: arch/arm/include/asm/xen/
8616
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008617XEN NETWORK BACKEND DRIVER
8618M: Ian Campbell <ian.campbell@citrix.com>
8619L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8620L: netdev@vger.kernel.org
8621S: Supported
8622F: drivers/net/xen-netback/*
8623
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008624XEN PCI SUBSYSTEM
8625M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008626L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008627S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008628F: arch/x86/pci/*xen*
8629F: drivers/pci/*xen*
8630
8631XEN SWIOTLB SUBSYSTEM
8632M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008633L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008634S: Supported
8635F: arch/x86/xen/*swiotlb*
8636F: drivers/xen/*swiotlb*
8637
Linus Torvalds1da177e2005-04-16 15:20:36 -07008638XFS FILESYSTEM
8639P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008640M: Ben Myers <bpm@sgi.com>
8641M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008642M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008643L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008644W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008645T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008646S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008647F: Documentation/filesystems/xfs.txt
8648F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008649
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008650XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008651M: Anirudha Sarangi <anirudh@xilinx.com>
8652M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008653S: Maintained
8654F: drivers/net/ethernet/xilinx/xilinx_axienet*
8655
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008656XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008657M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008658W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008660F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008661
Peter Korsgaard238b8722006-12-06 20:35:17 -08008662XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008663M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008664L: linux-serial@vger.kernel.org
8665S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008666F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008667
Linus Torvalds1da177e2005-04-16 15:20:36 -07008668YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008669M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008670L: linux-hams@vger.kernel.org
8671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008672F: drivers/net/hamradio/yam*
8673F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008674
Henkaf64a5e2005-10-12 15:02:56 +02008675YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008676M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008677L: usbb2k-api-dev@nongnu.org
8678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008679F: Documentation/input/yealink.txt
8680F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008681
Linus Torvalds1da177e2005-04-16 15:20:36 -07008682Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008683M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008684W: http://yaina.de/jreuter/
8685W: http://www.qsl.net/dl1bke/
8686L: linux-hams@vger.kernel.org
8687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008688F: Documentation/networking/z8530drv.txt
8689F: drivers/net/hamradio/*scc.c
8690F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008691
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008692ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008693M: Daniel Drake <dsd@gentoo.org>
8694M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008695W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008696L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008697L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008699F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008700
Linus Torvalds1da177e2005-04-16 15:20:36 -07008701ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008702L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008703L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008704W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008705T: Mercurial http://linuxtv.org/hg/v4l-dvb
8706S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008707F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008708
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008709ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008710M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008711S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008712F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008713
Linus Torvalds1da177e2005-04-16 15:20:36 -07008714THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008715M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008716L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008717Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008718T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008719S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008720F: *
8721F: */