blob: 9f4925932a20faff0ba65deebc09520b0327ee62 [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
Carlos Corbachod9269a72011-05-02 09:57:18 +0100231M: Joey Lee <jlee@novell.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*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455L: linux-scsi@vger.kernel.org
456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/scsi/aha152x*
458F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Hannes Reinecke64624d42007-10-19 10:32:29 +0200460AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700461M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200462L: linux-scsi@vger.kernel.org
463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700464F: drivers/scsi/aic7xxx/
465F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200466
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700467AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700468M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700469L: linux-aio@kvack.org
470S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700471F: fs/aio.c
472F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700475M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700476L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477W: http://www.linux-usb.org/SpeedTouch/
478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700479F: drivers/usb/atm/speedtch.c
480F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Pierre Ossman272f1332007-05-14 21:25:26 +0200482ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700483M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700485F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200486
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000487ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700488M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100489L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700491F: Documentation/i2c/busses/i2c-ali1563
492F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700495M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700496M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500497M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700498S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700499L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700500F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Tobias Klauseradf92512011-02-09 10:58:29 +0100502ALTERA UART/JTAG UART SERIAL DRIVERS
503M: Tobias Klauser <tklauser@distanz.ch>
504L: linux-serial@vger.kernel.org
505L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
506S: Maintained
507F: drivers/tty/serial/altera_uart.c
508F: drivers/tty/serial/altera_jtaguart.c
509F: include/linux/altera_uart.h
510F: include/linux/altera_jtaguart.h
511
Andreas Herrmann512d1022011-05-25 20:43:31 +0200512AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100513M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200514L: lm-sensors@lm-sensors.org
515S: Maintained
516F: Documentation/hwmon/fam15h_power
517F: drivers/hwmon/fam15h_power.c
518
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700519AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700520M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700521L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700524
Jordan Crousef90b8112006-01-06 00:12:14 -0800525AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800526P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700527L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800528W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
529S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700530F: drivers/char/hw_random/geode-rng.c
531F: drivers/crypto/geode*
532F: drivers/video/geode/
533F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800534
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200535AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200536M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200537L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100538T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200539S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800540F: drivers/iommu/amd_iommu*.[ch]
541F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200542
Peter Orubae7f5b302008-07-28 18:44:11 +0200543AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100544M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700545L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700547F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200548
Stelian Pop284f42b2006-12-12 18:18:31 +0100549AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700550M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100551S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200552F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100553
Tom Tuckerf94b5332006-09-22 15:22:48 -0700554AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700555M: Tom Tucker <tom@opengridcomputing.com>
556M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700557L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700559F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700560
Michael Hennerich527a1a82010-10-28 11:31:28 +0000561ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200562M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100563L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000564L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700565W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000566S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100567F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200568F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000569F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000570F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100571F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000572
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400573ANALOG DEVICES INC ASOC DRIVERS
574L: uclinux-dist-devel@blackfin.uclinux.org
575L: alsa-devel@alsa-project.org (moderated for non-subscribers)
576W: http://blackfin.uclinux.org/
577S: Supported
578F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400579
Johannes Berg42269062006-07-25 16:15:50 +0200580AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700581M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000582L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700583L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700585F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200588M: Jiri Kosina <jkosina@suse.cz>
589S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700590F: arch/x86/kernel/apm_32.c
591F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200592F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700594APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700595M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700596L: linux-input@vger.kernel.org
597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700598F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700599
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700600APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200601M: Henrik Rydberg <rydberg@euromail.se>
602L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700604F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700607M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700609F: drivers/net/appletalk/
610F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Viresh Kumara4801672011-02-22 15:46:07 +0530612ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700613M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530614L: linux-ide@vger.kernel.org
615S: Maintained
616F: include/linux/pata_arasan_cf_data.h
617F: drivers/ata/pata_arasan_cf.c
618
Jaya Kumar1154ea72005-06-21 17:17:04 -0700619ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700620M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700622F: drivers/video/arcfb.c
623F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700626M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700628F: arch/arm/lib/floppydma.S
629F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Will Deacon6f965212011-07-01 14:38:53 +0100631ARM PMU PROFILING AND DEBUGGING
632M: Will Deacon <will.deacon@arm.com>
633S: Maintained
634F: arch/arm/kernel/perf_event*
635F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100636F: arch/arm/include/asm/pmu.h
637F: arch/arm/kernel/hw_breakpoint.c
638F: arch/arm/include/asm/hw_breakpoint.h
639
Russell Kingd4275352009-04-16 14:05:27 +0100640ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700641M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700642L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100643W: http://www.arm.linux.org.uk/
644S: Maintained
645F: arch/arm/
646
Stephen Boydd323c2432012-10-24 11:00:29 -0700647ARM SUB-ARCHITECTURES
648L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
649S: MAINTAINED
650F: arch/arm/mach-*/
651F: arch/arm/plat-*/
652T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
653
Russell Kingcefbf4e2009-11-22 17:40:28 +0000654ARM PRIMECELL AACI PL041 DRIVER
655M: Russell King <linux@arm.linux.org.uk>
656S: Maintained
657F: sound/arm/aaci.*
658
659ARM PRIMECELL CLCD PL110 DRIVER
660M: Russell King <linux@arm.linux.org.uk>
661S: Maintained
662F: drivers/video/amba-clcd.*
663
664ARM PRIMECELL KMI PL050 DRIVER
665M: Russell King <linux@arm.linux.org.uk>
666S: Maintained
667F: drivers/input/serio/ambakmi.*
668F: include/linux/amba/kmi.h
669
Russell King2761f5c2007-05-24 06:56:08 +0200670ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200671S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700672F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200673
Russell Kingcefbf4e2009-11-22 17:40:28 +0000674ARM PRIMECELL BUS SUPPORT
675M: Russell King <linux@arm.linux.org.uk>
676S: Maintained
677F: drivers/amba/
678F: include/linux/amba/bus.h
679
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800680ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700681M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700682L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683S: Maintained
684
Sergey Lapin9c784f92008-08-03 02:29:48 +0100685ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700686M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700687L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100688S: Maintained
689
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800690ARM/AJECO 1ARM 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
Maxime Ripard1b106692012-11-15 21:51:26 +0100695ARM/Allwinner A1X SoC support
696M: Maxime Ripard <maxime.ripard@free-electrons.com>
697L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
698S: Maintained
699F: arch/arm/mach-sunxi/
700
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800701ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700702M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800703M: Nicolas Ferre <nicolas.ferre@atmel.com>
704M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700705L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200706W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800707W: http://www.linux4sam.org
708S: Supported
709F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100710
Rob Herring986cf2e2011-06-22 11:28:53 -0500711ARM/CALXEDA HIGHBANK ARCHITECTURE
712M: Rob Herring <rob.herring@calxeda.com>
713L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
714S: Maintained
715F: arch/arm/mach-highbank/
716
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300717ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
718M: Anton Vorontsov <avorontsov@mvista.com>
719S: Maintained
720F: arch/arm/mach-cns3xxx/
721T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
722
Alexander Shiyan386ab512012-11-17 17:57:24 +0400723ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
724M: Alexander Shiyan <shc_work@mail.ru>
725L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
726S: Odd Fixes
727F: arch/arm/mach-clps711x/
728
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800729ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100730M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000731M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800733S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100734F: arch/arm/mach-ep93xx/
735F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800736
737ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700738M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700739L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800740S: Maintained
741
Russell Kingd4275352009-04-16 14:05:27 +0100742ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700743M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700744L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700745S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100746F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700747F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100748
Mike Rapoportd48134e2008-08-20 09:03:26 +0100749ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700750M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700751L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100752S: Maintained
753
Hubert Feurstein94150092009-10-07 08:36:07 +0100754ARM/CONTEC MICRO9 MACHINE SUPPORT
755M: Hubert Feurstein <hubert.feurstein@contec.at>
756S: Maintained
757F: arch/arm/mach-ep93xx/micro9.c
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700760M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761S: Maintained
762
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200763ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100764M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700765L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100766T: git git://git.berlios.de/gemini-board
767S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300768F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200769
Barry Songa990cbd2011-07-12 21:44:10 +0800770ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
771M: Barry Song <baohua.song@csr.com>
772L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
773S: Maintained
774F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800775F: drivers/dma/sirf-dma.c
776F: drivers/i2c/busses/i2c-sirf.c
777F: drivers/pinctrl/pinctrl-sirf.c
778F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800779
Russell Kingd4275352009-04-16 14:05:27 +0100780ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700781M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700782L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100783W: http://www.arm.linux.org.uk/
784S: Maintained
785F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700786F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100787
Russell Kinga9da4f72008-07-12 21:42:04 +0100788ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700789M: Daniel Ribeiro <drwyrm@gmail.com>
790M: Stefan Schmidt <stefan@openezx.org>
791M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200792L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100793W: http://www.openezx.org/
794S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200795T: topgit git://git.openezx.org/openezx.git
796F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100797
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200798ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100799M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700800L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100801S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700802T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300803F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200804
Russell Kingd4275352009-04-16 14:05:27 +0100805ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700806M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700807L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100808W: http://www.arm.linux.org.uk/
809S: Maintained
810F: arch/arm/include/asm/hardware/dec21285.h
811F: arch/arm/mach-footbridge/
812
Sascha Hauer86183a52008-07-24 23:50:35 +0200813ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700814M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700815L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200816S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700817T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100818F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700819F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200820
Shawn Guo8bcb9762011-10-07 22:24:18 +0800821ARM/FREESCALE IMX6
822M: Shawn Guo <shawn.guo@linaro.org>
823L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
824S: Maintained
825T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
826F: arch/arm/mach-imx/*imx6*
827
Shawn Guoa9866a092011-10-21 11:53:34 +0800828ARM/FREESCALE MXS ARM ARCHITECTURE
829M: Shawn Guo <shawn.guo@linaro.org>
830L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
831S: Maintained
832T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
833F: arch/arm/mach-mxs/
834
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800835ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700836M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700837L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800838S: Maintained
839
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100840ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700841M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700842L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100843S: Maintained
844
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200845ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700846M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100847M: Paul Parsons <lost.distance@yahoo.com>
848L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200849S: Maintained
850F: arch/arm/mach-pxa/hx4700.c
851F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100852F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200853
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100854ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700855M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200856W: www.jlime.com
857S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700858T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
859F: arch/arm/mach-sa1100/jornada720.c
860F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100861
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200862ARM/IGEP MACHINE SUPPORT
863M: Enric Balletbo i Serra <eballetbo@gmail.com>
864M: Javier Martinez Canillas <javier@dowhile0.org>
865L: linux-omap@vger.kernel.org
866L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
867S: Maintained
868F: arch/arm/mach-omap2/board-igep0020.c
869
Marek Vasut403d2972010-05-22 00:29:39 +0200870ARM/INCOME PXA270 SUPPORT
871M: Marek Vasut <marek.vasut@gmail.com>
872L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
873S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700874F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200875
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800876ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700877M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700878M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700879L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700880S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100881
882ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700883M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700884L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700885S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800886
887ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700888M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700889M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700890L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700891S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800892
893ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700894M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700895M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700896L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700897S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800898
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800899ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700900M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700901L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800902S: Maintained
903
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200904ARM/INTEL IXP4XX ARM ARCHITECTURE
905M: Imre Kaloz <kaloz@openwrt.org>
906M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100907L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200908S: Maintained
909F: arch/arm/mach-ixp4xx/
910
Joe Perches838553c2010-10-26 14:22:59 -0700911ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100912M: Jonathan Cameron <jic23@cam.ac.uk>
913L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
914S: Maintained
915F: arch/arm/mach-pxa/stargate2.c
916F: drivers/pcmcia/pxa2xx_stargate2.c
917
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800918ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700919M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700920M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700921L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700922S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800923
924ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700925M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700926L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800927S: Maintained
928
929ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700930M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700931L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800932S: Maintained
933
Philipp Zabel3b8861712008-07-09 21:27:15 +0100934ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700935M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100936S: Maintained
937
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200938ARM/Marvell Armada 370 and Armada XP SOC support
939M: Jason Cooper <jason@lakedaemon.net>
940M: Andrew Lunn <andrew@lunn.ch>
941M: Gregory Clement <gregory.clement@free-electrons.com>
942L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
943S: Maintained
944F: arch/arm/mach-mvebu/
945
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400946ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
947M: Jason Cooper <jason@lakedaemon.net>
948M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700949L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400950S: Maintained
951F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400952F: arch/arm/mach-kirkwood/
953F: arch/arm/mach-mv78xx0/
954F: arch/arm/mach-orion5x/
955F: arch/arm/plat-orion/
956
Alexander Clouterd69ac132011-04-14 15:22:02 -0700957ARM/Orion SoC/Technologic Systems TS-78xx platform support
958M: Alexander Clouter <alex@digriz.org.uk>
959L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
960W: http://www.digriz.org.uk/ts78xx/kernel
961S: Maintained
962F: arch/arm/mach-orion5x/ts78xx-*
963
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000964ARM/MICREL KS8695 ARCHITECTURE
965M: Greg Ungerer <gerg@uclinux.org>
966L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
967F: arch/arm/mach-ks8695
968S: Odd Fixes
969
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200970ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700971M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700972L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200973F: arch/arm/mach-pxa/mioa701.c
974S: Maintained
975
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100976ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700977M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100978S: Maintained
979
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100980ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700981M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200982M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700983M: STEricsson <STEricsson_nomadik_linux@list.st.com>
984L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
985S: Maintained
986F: arch/arm/mach-nomadik/
987F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100988F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200989T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100990
Andy Green9d762952009-05-19 06:41:42 -0300991ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700992M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300993L: openmoko-kernel@lists.openmoko.org (subscribers-only)
994W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
995S: Supported
996
Daniel Walker0c19d212009-12-07 16:53:51 -0800997ARM/QUALCOMM MSM MACHINE SUPPORT
998M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800999M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001000M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001001L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001002F: arch/arm/mach-msm/
1003F: drivers/video/msm/
1004F: drivers/mmc/host/msm_sdcc.c
1005F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001006F: drivers/tty/serial/msm_serial.h
1007F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001008F: drivers/*/pm8???-*
1009F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001010T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001011S: Maintained
1012
Dirk Opfer8459c152005-11-06 14:27:52 +00001013ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001014M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1015M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001016S: Maintained
1017
Marek Vasut5d783a22009-07-16 13:26:48 +02001018ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001019M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001020L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001021W: http://hackndev.com
1022S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001023F: arch/arm/mach-pxa/include/mach/palmtx.h
1024F: arch/arm/mach-pxa/palmtx.c
1025F: arch/arm/mach-pxa/include/mach/palmt5.h
1026F: arch/arm/mach-pxa/palmt5.c
1027F: arch/arm/mach-pxa/include/mach/palmld.h
1028F: arch/arm/mach-pxa/palmld.c
1029F: arch/arm/mach-pxa/include/mach/palmte2.h
1030F: arch/arm/mach-pxa/palmte2.c
1031F: arch/arm/mach-pxa/include/mach/palmtc.h
1032F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001033
Joe Perchesb57fe922009-12-14 18:00:52 -08001034ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001035M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001036L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001037W: http://hackndev.com
1038S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001039F: arch/arm/mach-pxa/include/mach/palmtreo.h
1040F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001041
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001042ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001043M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001044L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001045W: http://hackndev.com
1046S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001047F: arch/arm/mach-pxa/include/mach/palmz72.h
1048F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001051M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1053S: Maintained
1054
1055ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001056M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001057L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058W: http://www.arm.linux.org.uk/
1059S: Maintained
1060
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001061ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001062M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001063L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001064S: Maintained
1065
Russell Kingd4275352009-04-16 14:05:27 +01001066ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001067M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001068L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001069W: http://www.arm.linux.org.uk/
1070S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001071F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1072F: arch/arm/include/asm/hardware/ioc.h
1073F: arch/arm/include/asm/hardware/iomd.h
1074F: arch/arm/include/asm/hardware/memc.h
1075F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001076F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001077F: drivers/net/ethernet/i825xx/ether1*
1078F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001079F: drivers/scsi/arm/
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001082M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083W: http://www.shark-linux.de/shark.html
1084S: Maintained
1085
Ben Dooksb21477f2009-06-13 10:46:34 +01001086ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001087M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001088M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001089L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001090L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001091W: http://www.fluff.org/ben/linux/
1092S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001093F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001094F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001095F: arch/arm/mach-s3c24*/
1096F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001097F: drivers/*/*s3c2410*
1098F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001099F: drivers/spi/spi-s3c*
1100F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001102ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001103M: Kukjin Kim <kgene.kim@samsung.com>
1104L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1105L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1106S: Maintained
1107F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001108F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001109
Kyungmin Park10ffa962011-03-04 17:36:26 -08001110ARM/SAMSUNG MOBILE MACHINE SUPPORT
1111M: Kyungmin Park <kyungmin.park@samsung.com>
1112L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1113S: Maintained
1114F: arch/arm/mach-s5pv210/mach-aquila.c
1115F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001116F: arch/arm/mach-exynos/mach-universal_c210.c
1117F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001118
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001119ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1120M: Kyungmin Park <kyungmin.park@samsung.com>
1121M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1122L: linux-arm-kernel@lists.infradead.org
1123L: linux-media@vger.kernel.org
1124S: Maintained
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001125F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001126F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001127
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001128ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1129M: Kyungmin Park <kyungmin.park@samsung.com>
1130M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001131M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001132L: linux-arm-kernel@lists.infradead.org
1133L: linux-media@vger.kernel.org
1134S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001135F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001136F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001137
1138ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1139M: Kyungmin Park <kyungmin.park@samsung.com>
1140M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1141L: linux-arm-kernel@lists.infradead.org
1142L: linux-media@vger.kernel.org
1143S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001144F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001145
Paul Mundtd48d38e2010-02-08 12:50:24 +09001146ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001147M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001148M: Magnus Damm <magnus.damm@gmail.com>
1149L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001150W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001151Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001152T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001153S: Supported
1154F: arch/arm/mach-shmobile/
1155F: drivers/sh/
1156
Dinh Nguyen66314222012-07-18 16:07:18 -06001157ARM/SOCFPGA ARCHITECTURE
1158M: Dinh Nguyen <dinguyen@altera.com>
1159S: Maintained
1160F: arch/arm/mach-socfpga/
1161
1162ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1163M: Dinh Nguyen <dinguyen@altera.com>
1164S: Maintained
1165F: drivers/clk/socfpga/
1166
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001167ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001168M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001169L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001170S: Maintained
1171
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001172ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001173M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001174L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1175S: Maintained
1176
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001177ARM/THECUS N2100 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
wanzongshun98ad6e32009-02-13 06:04:32 +01001182ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001183M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001184L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001185W: http://www.mcuos.com
1186S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001187F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001188F: drivers/input/keyboard/w90p910_keypad.c
1189F: drivers/input/touchscreen/w90p910_ts.c
1190F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001191F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001192F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001193F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001194F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001195F: drivers/usb/host/ehci-w90x900.c
1196F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001197
Linus Walleij54274d72010-04-04 10:58:03 +01001198ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001199M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001200L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1201S: Supported
1202F: arch/arm/mach-u300/
1203F: drivers/i2c/busses/i2c-stu300.c
1204F: drivers/rtc/rtc-coh901331.c
1205F: drivers/watchdog/coh901327_wdt.c
1206F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001207F: drivers/mfd/ab3100*
1208F: drivers/rtc/rtc-ab3100.c
1209F: drivers/rtc/rtc-coh901331.c
1210T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001211
Linus Walleij87572882010-12-22 09:18:29 +01001212ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001213M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001214M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001215L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1216S: Maintained
1217F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001218F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001219F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001220F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001221F: drivers/mfd/abx500*
1222F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001223F: drivers/mfd/dbx500*
1224F: drivers/mfd/db8500*
1225F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001226F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001227F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001228T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001229
Russell Kingd4275352009-04-16 14:05:27 +01001230ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001231M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001232L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001233W: http://www.arm.linux.org.uk/
1234S: Maintained
1235F: arch/arm/vfp/
1236
Marek Vasute66b6d82010-03-26 06:51:32 +01001237ARM/VOIPAC PXA270 SUPPORT
1238M: Marek Vasut <marek.vasut@gmail.com>
1239L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1240S: Maintained
1241F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001242F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001243
Tony Prisk04529fe2012-07-24 04:19:37 +12001244ARM/VT8500 ARM ARCHITECTURE
1245M: Tony Prisk <linux@prisktech.co.nz>
1246L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1247S: Maintained
1248F: arch/arm/mach-vt8500/
1249F: drivers/video/vt8500lcdfb.*
1250F: drivers/video/wm8505fb*
1251F: drivers/video/wmt_ge_rops.*
1252F: drivers/tty/serial/vt8500_serial.c
1253F: drivers/rtc/rtc-vt8500-c
Tony Prisk3a96dff2012-11-18 15:33:06 +13001254F: drivers/mmc/host/wmt-sdmmc.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001255
Marek Vasute66b6d82010-03-26 06:51:32 +01001256ARM/ZIPIT Z2 SUPPORT
1257M: Marek Vasut <marek.vasut@gmail.com>
1258L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1259S: Maintained
1260F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001261F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001262
Catalin Marinas38074222012-03-05 11:49:34 +00001263ARM64 PORT (AARCH64 ARCHITECTURE)
1264M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001265M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001266L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1267S: Maintained
1268F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001269F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001270
George Josephd58de032010-03-05 22:17:25 +01001271ASC7621 HARDWARE MONITOR DRIVER
1272M: George Joseph <george.joseph@fairview5.com>
1273L: lm-sensors@lm-sensors.org
1274S: Maintained
1275F: Documentation/hwmon/asc7621
1276F: drivers/hwmon/asc7621.c
1277
Corentin Charyb229ece2011-02-26 10:20:40 +01001278ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001279M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001281L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001282W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001284F: drivers/platform/x86/asus*.c
1285F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001287ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001288M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001289L: lm-sensors@lm-sensors.org
1290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001291F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001292
Andrew Morton953a6472008-11-06 12:53:28 -08001293ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001294M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001295W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001297F: Documentation/crypto/async-tx-api.txt
1298F: crypto/async_tx/
1299F: drivers/dma/
1300F: include/linux/dmaengine.h
1301F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001302
Wolfram Sanga1867d32009-09-18 22:45:51 +02001303AT24 EEPROM DRIVER
1304M: Wolfram Sang <w.sang@pengutronix.de>
1305L: linux-i2c@vger.kernel.org
1306S: Maintained
1307F: drivers/misc/eeprom/at24.c
1308F: include/linux/i2c/at24.h
1309
Randy Dunlape7839f22008-10-12 16:11:45 -07001310ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001311M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001312W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001314F: Documentation/aoe/
1315F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Joe Perches9a10a872010-12-01 09:37:55 -08001317ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001318M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001319L: linux-wireless@vger.kernel.org
1320S: Supported
1321F: drivers/net/wireless/ath/*
1322
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001323ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001324M: Jiri Slaby <jirislaby@gmail.com>
1325M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001326M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001327L: linux-wireless@vger.kernel.org
1328L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001329W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001330S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001331F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001332
Kalle Valo12e62d62011-09-13 10:21:25 +03001333ATHEROS ATH6KL WIRELESS DRIVER
1334M: Kalle Valo <kvalo@qca.qualcomm.com>
1335L: linux-wireless@vger.kernel.org
1336W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1337T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1338S: Supported
1339F: drivers/net/wireless/ath/ath6kl/
1340
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001341ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001342M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1343M: Jouni Malinen <jouni@qca.qualcomm.com>
1344M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1345M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001346L: linux-wireless@vger.kernel.org
1347L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001348W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001349S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001350F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001351
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001352CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1353M: Christian Lamparter <chunkeey@googlemail.com>
1354L: linux-wireless@vger.kernel.org
1355W: http://wireless.kernel.org/en/users/Drivers/carl9170
1356S: Maintained
1357F: drivers/net/wireless/ath/carl9170/
1358
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001359ATK0110 HWMON DRIVER
1360M: Luca Tettamanti <kronos.it@gmail.com>
1361L: lm-sensors@lm-sensors.org
1362S: Maintained
1363F: drivers/hwmon/asus_atk0110.c
1364
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001365ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001366M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001368F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001369
Chris Snook7ae115b2008-09-09 03:26:57 -04001370ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001371M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001372M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001373L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001374W: http://sourceforge.net/projects/atl1
1375W: http://atl1.sourceforge.net
1376S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001377F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001380M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001381L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001382L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383W: http://linux-atm.sourceforge.net
1384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001385F: drivers/atm/
1386F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001388ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001389M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001390S: Maintained
1391F: drivers/mmc/host/atmel-mci.c
1392F: drivers/mmc/host/atmel-mci-regs.h
1393
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001394ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001395M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001396S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001397F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001398
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001399ATMEL DMA DRIVER
1400M: Nicolas Ferre <nicolas.ferre@atmel.com>
1401L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1402S: Supported
1403F: drivers/dma/at_hdmac.c
1404F: drivers/dma/at_hdmac_regs.h
1405F: arch/arm/mach-at91/include/mach/at_hdmac.h
1406
Josh Wu15515542012-03-23 17:56:29 +08001407ATMEL ISI DRIVER
1408M: Josh Wu <josh.wu@atmel.com>
1409L: linux-media@vger.kernel.org
1410S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001411F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001412F: include/media/atmel-isi.h
1413
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001414ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001415M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001416L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001418F: drivers/video/atmel_lcdfb.c
1419F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001420
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001421ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001422M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001423S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001424F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001425
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001426ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001427M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001428S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001429F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001430
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001431ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1432M: Nicolas Ferre <nicolas.ferre@atmel.com>
1433L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1434S: Supported
1435F: drivers/misc/atmel_tclib.c
1436F: drivers/clocksource/tcb_clksrc.c
1437
Josh Wuff2675d2012-03-23 17:56:55 +08001438ATMEL TSADCC DRIVER
1439M: Josh Wu <josh.wu@atmel.com>
1440L: linux-input@vger.kernel.org
1441S: Supported
1442F: drivers/input/touchscreen/atmel_tsadcc.c
1443
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001444ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001445M: Nicolas Ferre <nicolas.ferre@atmel.com>
1446L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001447S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001448F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001451M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001452L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453W: http://www.thekelleys.org.uk/atmel
1454W: http://atmelwlandriver.sourceforge.net/
1455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001456F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Chris Wrighta92b7b82005-07-07 18:12:23 -07001458AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001459M: Al Viro <viro@zeniv.linux.org.uk>
1460M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001461L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001462W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001463T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001465F: include/linux/audit.h
1466F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001467
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001468AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001469M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001470W: http://miguelojeda.es/auxdisplay.htm
1471W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001473F: drivers/auxdisplay/
1474F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001475
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001476AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001477M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1478M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001479W: http://www.atmel.com/products/AVR32/
1480W: http://avr32linux.org/
1481W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001483F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001484
1485AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001486M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1487M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001489F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001492M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001494W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001496F: include/linux/ax25.h
1497F: include/net/ax25.h
1498F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001500AZ6007 DVB DRIVER
1501M: Mauro Carvalho Chehab <mchehab@redhat.com>
1502L: linux-media@vger.kernel.org
1503W: http://linuxtv.org
1504T: git git://linuxtv.org/media_tree.git
1505S: Maintained
1506F: drivers/media/usb/dvb-usb-v2/az6007.c
1507
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001508B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001509M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001510L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001511L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001512W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001514F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001515
1516B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001517M: Larry Finger <Larry.Finger@lwfinger.net>
1518M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001519L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001520L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001521W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001523F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001524
Richard Purdie300abeb2007-02-07 22:21:07 +00001525BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001526M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001528F: drivers/video/backlight/
1529F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001530
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001531BATMAN ADVANCED
1532M: Marek Lindner <lindner_marek@yahoo.de>
1533M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001534M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001535L: b.a.t.m.a.n@lists.open-mesh.org
1536W: http://www.open-mesh.org/
1537S: Maintained
1538F: net/batman-adv/
1539
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001540BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001541M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001542L: linux-hams@vger.kernel.org
1543W: http://www.baycom.org/~tom/ham/ham.html
1544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001545F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001546
1547BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001548S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001549F: Documentation/filesystems/befs.txt
1550F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001551
1552BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001553M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001555F: Documentation/filesystems/bfs.txt
1556F: fs/bfs/
1557F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001558
Bryan Wu1394f032007-05-06 14:50:22 -07001559BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001560M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001561L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001562W: http://blackfin.uclinux.org
1563S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001564F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001565
Bryan Wue190d6b2007-07-17 14:43:44 +08001566BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001567L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001568W: http://blackfin.uclinux.org
1569S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001570F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001571
Mike Frysinger566da5b2007-06-11 15:31:30 +08001572BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001573M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001574L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001575W: http://blackfin.uclinux.org
1576S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001577F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001578
Mike Frysinger936ed492010-03-10 15:20:38 -08001579BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001580M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001581L: uclinux-dist-devel@blackfin.uclinux.org
1582W: http://blackfin.uclinux.org
1583S: Supported
1584F: drivers/mmc/host/bfin_sdh.c
1585
Bryan Wu1394f032007-05-06 14:50:22 -07001586BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001587M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001588L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001589W: http://blackfin.uclinux.org
1590S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001591F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001592
Bryan Wu1e6d3202007-07-15 02:50:02 +08001593BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001594M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001595L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001596W: http://blackfin.uclinux.org
1597S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001598F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001599
Bryan Wud24ecfc2007-05-01 23:26:32 +02001600BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001601M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001602L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001603W: http://blackfin.uclinux.org/
1604S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001605F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001606
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001607BLINKM RGB LED DRIVER
1608M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1609S: Maintained
1610F: drivers/leds/leds-blinkm.c
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001613M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001614T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001616F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Joern Engel2b54aae2008-02-06 01:38:02 -08001618BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001619M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001620L: linux-mtd@lists.infradead.org
1621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001622F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001623
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001624BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001625M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001626M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001627M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001628L: linux-bluetooth@vger.kernel.org
1629W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001630T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1631T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001633F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001636M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001637M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001638M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001639L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001640W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001641T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1642T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001644F: net/bluetooth/
1645F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001648M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001649M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001650L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001651W: http://sourceforge.net/projects/bonding/
1652S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001653F: drivers/net/bonding/
1654F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Gary Zambrano39105892006-06-22 17:26:20 -07001656BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001657M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001658L: netdev@vger.kernel.org
1659S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001660F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001661
Michael Chan948c51e2006-06-04 02:51:39 -07001662BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001663M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001664L: netdev@vger.kernel.org
1665S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001666F: drivers/net/ethernet/broadcom/bnx2.*
1667F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001668
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001669BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001670M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001671L: netdev@vger.kernel.org
1672S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001673F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001674
Stephen Warrenf680f252012-09-15 00:18:54 -06001675BROADCOM BCM2835 ARM ARCHICTURE
1676M: Stephen Warren <swarren@wwwdotorg.org>
1677L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1678T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1679S: Maintained
1680F: arch/arm/mach-bcm2835/
1681F: arch/arm/boot/dts/bcm2835*
1682F: arch/arm/configs/bcm2835_defconfig
1683F: drivers/*/*bcm2835*
1684
Michael Chan948c51e2006-06-04 02:51:39 -07001685BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001686M: Matt Carlson <mcarlson@broadcom.com>
1687M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001688L: netdev@vger.kernel.org
1689S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001690F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001691
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001692BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1693M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001694M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001695M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001696M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001697L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001698L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001699S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001700F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001701
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001702BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1703M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1704L: linux-scsi@vger.kernel.org
1705S: Supported
1706F: drivers/scsi/bnx2fc/
1707
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001708BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1709M: Rafał Miłecki <zajec5@gmail.com>
1710L: linux-wireless@vger.kernel.org
1711S: Maintained
1712F: drivers/bcma/
1713F: include/linux/bcma/
1714
Jing Huang7725ccf2009-09-23 17:46:15 -07001715BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001716M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001717L: linux-scsi@vger.kernel.org
1718S: Supported
1719F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001720
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001721BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1722M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001723L: netdev@vger.kernel.org
1724S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001725F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001726
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001727BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001728M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001729L: linux-scsi@vger.kernel.org
1730S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001731F: block/bsg.c
1732F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001733
Clemens Ladischaf399172011-01-10 16:32:54 +01001734BT87X AUDIO DRIVER
1735M: Clemens Ladisch <clemens@ladisch.de>
1736L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1737T: git git://git.alsa-project.org/alsa-kernel.git
1738S: Maintained
1739F: Documentation/sound/alsa/Bt87x.txt
1740F: sound/pci/bt87x.c
1741
Michael Bueschff1d5c22008-07-25 01:46:10 -07001742BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001743M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001744W: http://bu3sch.de/btgpio.php
1745S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001746F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001747
Joe Percheseb1eb042009-01-21 10:49:16 -05001748BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001749M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001750L: linux-btrfs@vger.kernel.org
1751W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001752Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001753T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001755F: Documentation/filesystems/btrfs.txt
1756F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001759M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001760L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001761W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001762T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001763S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001764F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001765F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Clemens Ladischaf399172011-01-10 16:32:54 +01001767C-MEDIA CMI8788 DRIVER
1768M: Clemens Ladisch <clemens@ladisch.de>
1769L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1770T: git git://git.alsa-project.org/alsa-kernel.git
1771S: Maintained
1772F: sound/pci/oxygen/
1773
Mark Salter21413552011-10-04 11:21:42 -04001774C6X ARCHITECTURE
1775M: Mark Salter <msalter@redhat.com>
1776M: Aurelien Jacquiot <a-jacquiot@ti.com>
1777L: linux-c6x-dev@linux-c6x.org
1778W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1779S: Maintained
1780F: arch/c6x/
1781
David Howellsa5432f52009-04-20 15:46:45 +01001782CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001783M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001784L: linux-cachefs@redhat.com
1785S: Supported
1786F: Documentation/filesystems/caching/cachefiles.txt
1787F: fs/cachefiles/
1788
Jonathan Corbet77d51402007-03-22 19:44:17 -03001789CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001790M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001791L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001792T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001794F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001795F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001796
Joe Perches201b6ba2010-09-07 20:33:24 +00001797CAIF NETWORK LAYER
1798M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1799L: netdev@vger.kernel.org
1800S: Supported
1801F: Documentation/networking/caif/
1802F: drivers/net/caif/
1803F: include/linux/caif/
1804F: include/net/caif/
1805F: net/caif/
1806
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001807CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001808M: Muli Ben-Yehuda <muli@il.ibm.com>
1809M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001810L: discuss@x86-64.org
1811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001812F: arch/x86/kernel/pci-calgary_64.c
1813F: arch/x86/kernel/tce_64.c
1814F: arch/x86/include/asm/calgary.h
1815F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001816
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001817CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001818M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001819L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001820W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001821T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001822S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001823F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001824F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001825F: include/linux/can/core.h
1826F: include/linux/can/bcm.h
1827F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001828F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001829
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001830CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001831M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001832M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001833L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001834W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001835T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001836S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001837F: drivers/net/can/
1838F: include/linux/can/dev.h
1839F: include/linux/can/error.h
1840F: include/linux/can/netlink.h
1841F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001842
James Morris95d16c72012-03-16 12:05:48 +11001843CAPABILITIES
1844M: Serge Hallyn <serge.hallyn@canonical.com>
1845L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001846S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001847F: include/linux/capability.h
1848F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001849F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001850F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001851
Arnd Bergmannb8154542008-05-16 11:10:59 +02001852CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001853M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001854L: linuxppc-dev@lists.ozlabs.org
1855L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001856W: http://www.ibm.com/developerworks/power/cell/
1857S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001858F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001859F: arch/powerpc/include/asm/spu*.h
1860F: arch/powerpc/oprofile/*cell*
1861F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001862
Sage Weil9030aaf2009-10-06 11:31:15 -07001863CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001864M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001865L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001866W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001867T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001868S: Supported
1869F: Documentation/filesystems/ceph.txt
1870F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001871F: net/ceph
1872F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001873F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001874
David Vrabel18332a82008-09-17 16:34:44 +01001875CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001876L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001877S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001878F: Documentation/usb/WUSB-Design-overview.txt
1879F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001880F: drivers/usb/host/hwa-hc.c
1881F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001882F: drivers/usb/wusbcore/
1883F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001884
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001885CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001886M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001887W: http://miguelojeda.es/auxdisplay.htm
1888W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001890F: drivers/auxdisplay/cfag12864b.c
1891F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001892
1893CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001894M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001895W: http://miguelojeda.es/auxdisplay.htm
1896W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001898F: drivers/auxdisplay/cfag12864bfb.c
1899F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001900
Johannes Berg704232c2007-04-23 12:20:05 -07001901CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001902M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001903L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001904W: http://wireless.kernel.org/
1905T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1906T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001908F: include/linux/nl80211.h
1909F: include/net/cfg80211.h
1910F: net/wireless/*
1911X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001912
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001913CHAR and MISC DRIVERS
1914M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001915M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001916T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001917S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001918F: drivers/char/*
1919F: drivers/misc/*
1920
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001921CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001922M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001923S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001924F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001925
Harry Weif8407f262011-02-25 14:44:15 -08001926CHINESE DOCUMENTATION
1927M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08001928L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08001929L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1930S: Maintained
1931F: Documentation/zh_CN/
1932
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001933CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1934M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1935L: linux-usb@vger.kernel.org
1936S: Maintained
1937F: drivers/usb/chipidea/
1938
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001939CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001940M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001941M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001942M: Neel Patel <neepatel@cisco.com>
1943M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001944S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001945F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001946
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001947CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001948M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001949L: netdev@vger.kernel.org
1950S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001951F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001952
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001953CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001954M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001955L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001957F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001958
Timur Tabid9e9d822008-04-24 08:45:26 +10001959CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001960M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001961L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001962S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001963F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001964
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001965CLEANCACHE API
1966M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1967L: linux-kernel@vger.kernel.org
1968S: Maintained
1969F: mm/cleancache.c
1970F: include/linux/cleancache.h
1971
Russell Kingd4275352009-04-16 14:05:27 +01001972CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001973M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001974S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001975F: include/linux/clk.h
1976
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001977CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001978M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001979M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1980M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001981L: linux-scsi@vger.kernel.org
1982S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001983F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001984
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001985CMPC ACPI DRIVER
1986M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1987M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001988L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001989S: Supported
1990F: drivers/platform/x86/classmate-laptop.c
1991
Nicolas Palix74425ee2010-06-06 17:15:01 +02001992COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02001993M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001994M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02001995M: Nicolas Palix <nicolas.palix@imag.fr>
1996L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02001997W: http://coccinelle.lip6.fr/
1998S: Supported
1999F: scripts/coccinelle/
2000F: scripts/coccicheck
2001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002003M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004M: coda@cs.cmu.edu
2005L: codalist@coda.cs.cmu.edu
2006W: http://www.coda.cs.cmu.edu/
2007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002008F: Documentation/filesystems/coda.txt
2009F: fs/coda/
2010F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Mike Turquette7704add2012-05-02 18:37:45 -07002012COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002013M: Mike Turquette <mturquette@linaro.org>
2014L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2015T: git git://git.linaro.org/people/mturquette/linux.git
2016S: Maintained
2017F: drivers/clk/clk.c
2018F: drivers/clk/clk-*
2019F: include/linux/clk-pr*
2020
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002021COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002022M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002023L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002024L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002025W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002026Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002027T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002028S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002029F: Documentation/filesystems/cifs.txt
2030F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002033M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002034L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002036F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
2038COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002039M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002040L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002042F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
2044COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002045M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002046L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002048F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002050COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002051M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002052L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002054F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002055
Simon Arlott949be0f2007-03-06 02:47:46 -08002056CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002057M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002058L: accessrunner-general@lists.sourceforge.net
2059W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002061F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002062
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002063CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002064M: Joel Becker <jlbec@evilplan.org>
2065T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002066S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002067F: fs/configfs/
2068F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002069
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002070CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002071M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002072L: netdev@vger.kernel.org
2073S: Maintained
2074F: drivers/connector/
2075
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002076CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002077M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002078M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002079L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002080L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002081T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002083F: include/linux/cgroup*
2084F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002085F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002086
Rudolf Marekbebe4672007-05-08 17:22:02 +02002087CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002088M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002089L: lm-sensors@lm-sensors.org
2090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002091F: Documentation/hwmon/coretemp
2092F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002095M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096W: http://www.fi.muni.cz/~kas/cosa/
2097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002098F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Florian Fainelli4371ee32009-06-01 02:43:17 -07002100CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002101M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002102L: netdev@vger.kernel.org
2103S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002104F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002107M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002108L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002109L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002111F: drivers/cpufreq/
2112F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002115M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002117F: arch/x86/kernel/cpuid.c
2118F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002120CPU POWER MONITORING SUBSYSTEM
2121M: Dominik Brodowski <linux@dominikbrodowski.net>
2122M: Thomas Renninger <trenn@suse.de>
2123S: Maintained
2124F: tools/power/cpupower
2125
Paul Jacksoned90fb42005-09-27 21:45:37 -07002126CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002127M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002128W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002129W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002130S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002131F: Documentation/cgroups/cpusets.txt
2132F: include/linux/cpuset.h
2133F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002136W: http://sourceforge.net/projects/cramfs/
2137S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002138F: Documentation/filesystems/cramfs.txt
2139F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
2141CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002142M: Mikael Starvik <starvik@axis.com>
2143M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002144L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145W: http://developer.axis.com
2146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002147F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002148F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002151M: Herbert Xu <herbert@gondor.apana.org.au>
2152M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002154T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002156F: Documentation/crypto/
2157F: arch/*/crypto/
2158F: crypto/
2159F: drivers/crypto/
2160F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
Neil Horman5b07bd52009-02-05 16:03:04 +11002162CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002163M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002164L: linux-crypto@vger.kernel.org
2165S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002166F: crypto/ansi_cprng.c
2167F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002168
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002169CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002170M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002172F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002173
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002174CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002175M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002176L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002177L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002178T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002179W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002180W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002182F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002183F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002184F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002185
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002186CX88 VIDEO4LINUX DRIVER
2187M: Mauro Carvalho Chehab <mchehab@redhat.com>
2188L: linux-media@vger.kernel.org
2189W: http://linuxtv.org
2190T: git git://linuxtv.org/media_tree.git
2191S: Odd fixes
2192F: Documentation/video4linux/cx88/
2193F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002194
Antti Palosaari91952bc2012-10-01 12:28:46 -03002195CXD2820R MEDIA DRIVER
2196M: Antti Palosaari <crope@iki.fi>
2197L: linux-media@vger.kernel.org
2198W: http://linuxtv.org/
2199W: http://palosaari.fi/linux/
2200Q: http://patchwork.linuxtv.org/project/linux-media/list/
2201T: git git://linuxtv.org/anttip/media_tree.git
2202S: Maintained
2203F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002204
Steve Wisee5ec3782008-05-20 14:06:33 -07002205CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002206M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002207L: netdev@vger.kernel.org
2208W: http://www.chelsio.com
2209S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002210F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002211
2212CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002213M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002214L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002215W: http://www.openfabrics.org
2216S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002217F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002218
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002219CXGB4 ETHERNET DRIVER (CXGB4)
2220M: Dimitris Michailidis <dm@chelsio.com>
2221L: netdev@vger.kernel.org
2222W: http://www.chelsio.com
2223S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002224F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002225
2226CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2227M: Steve Wise <swise@chelsio.com>
2228L: linux-rdma@vger.kernel.org
2229W: http://www.openfabrics.org
2230S: Supported
2231F: drivers/infiniband/hw/cxgb4/
2232
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002233CXGB4VF ETHERNET DRIVER (CXGB4VF)
2234M: Casey Leedom <leedom@chelsio.com>
2235L: netdev@vger.kernel.org
2236W: http://www.chelsio.com
2237S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002238F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002239
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002240STMMAC ETHERNET DRIVER
2241M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2242L: netdev@vger.kernel.org
2243W: http://www.stlinux.com
2244S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002245F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002246
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002248M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002249L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250W: http://www.arm.linux.org.uk/
2251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002252F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002253
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002255M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002256W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002258F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
2260CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002262S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002263F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002264F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
2266CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002268S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002269F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002271CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002272M: Javier Martinez Canillas <javier@dowhile0.org>
2273L: linux-input@vger.kernel.org
2274S: Maintained
2275F: drivers/input/touchscreen/cyttsp*
2276F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002277
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002279M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280W: http://yaina.de/jreuter/
2281W: http://www.qsl.net/dl1bke/
2282L: linux-hams@vger.kernel.org
2283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002284F: net/ax25/af_ax25.c
2285F: net/ax25/ax25_dev.c
2286F: net/ax25/ax25_ds_*
2287F: net/ax25/ax25_in.c
2288F: net/ax25/ax25_out.c
2289F: net/ax25/ax25_timer.c
2290F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002292DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002293L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002294S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002295F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002296F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002297
2298DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002299M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002300W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002301M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002303F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002304
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002306M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002307M: Ali Akcaagac <aliakc@web.de>
2308M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002310L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311L: http://lists.twibble.org/mailman/listinfo/dc395x/
2312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002313F: Documentation/scsi/dc395x.txt
2314F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002316DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002317M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002318L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002319W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002321F: include/linux/dccp.h
2322F: include/linux/tfrc.h
2323F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002324
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326W: http://linux-decnet.sourceforge.net
2327L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002328S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002329F: Documentation/networking/decnet.txt
2330F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
2332DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002333M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002335F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002337DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002338M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002339L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002341F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002344M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345W: http://www.debian.org/~dz/i8k/
2346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002347F: drivers/char/i8k.c
2348F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
Doug Warzecha90563ec2005-09-06 15:17:15 -07002350DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002351M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002353F: Documentation/dcdbas.txt
2354F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002355
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002356DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002357M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002358S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002359F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002360
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002361DESIGNWARE USB3 DRD IP DRIVER
2362M: Felipe Balbi <balbi@ti.com>
2363L: linux-usb@vger.kernel.org
2364L: linux-omap@vger.kernel.org
2365T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2366S: Maintained
2367F: drivers/usb/dwc3/
2368
Kyungmin Park89d07762012-01-10 15:09:09 -08002369DEVICE FREQUENCY (DEVFREQ)
2370M: MyungJoo Ham <myungjoo.ham@samsung.com>
2371M: Kyungmin Park <kyungmin.park@samsung.com>
2372L: linux-kernel@vger.kernel.org
2373S: Maintained
2374F: drivers/devfreq/
2375
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002377M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379S: Maintained
2380
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002381DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002382M: Alasdair Kergon <agk@redhat.com>
2383M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002384L: dm-devel@redhat.com
2385W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002386Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002387T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002389F: Documentation/device-mapper/
2390F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002391F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002392F: include/linux/device-mapper.h
2393F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002394
Guenter Roeck335d7c52011-01-26 11:45:49 -08002395DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002396M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002397L: linux-i2c@vger.kernel.org
2398S: Maintained
2399F: drivers/i2c/busses/i2c-diolan-u2c.c
2400
Randy Dunlape7839f22008-10-12 16:11:45 -07002401DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002402M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002404F: Documentation/filesystems/dnotify.txt
2405F: fs/notify/dnotify/
2406F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
2408DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002409M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2411W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2412W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2413S: Maintained
2414
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002415DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002416M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002418F: Documentation/filesystems/quota.txt
2419F: fs/quota/
2420F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
Bernie Thompson702686a2012-03-01 13:52:13 -08002422DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2423M: Bernie Thompson <bernie@plugable.com>
2424L: linux-fbdev@vger.kernel.org
2425S: Maintained
2426W: http://plugable.com/category/projects/udlfb/
2427F: drivers/video/udlfb.c
2428F: include/video/udlfb.h
2429F: Documentation/fb/udlfb.txt
2430
Randy Dunlape7839f22008-10-12 16:11:45 -07002431DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002432M: Christine Caulfield <ccaulfie@redhat.com>
2433M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002434L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002435W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002436T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002437S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002438F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002439
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302440DMA BUFFER SHARING FRAMEWORK
2441M: Sumit Semwal <sumit.semwal@linaro.org>
2442S: Maintained
2443L: linux-media@vger.kernel.org
2444L: dri-devel@lists.freedesktop.org
2445L: linaro-mm-sig@lists.linaro.org
2446F: drivers/base/dma-buf*
2447F: include/linux/dma-buf*
2448F: Documentation/dma-buf-sharing.txt
2449T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2450
Dan Williamsb3e5f262007-08-07 10:26:35 -07002451DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002452M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002453M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002454S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002455F: drivers/dma/
2456F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302457T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2458T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002459
Juerg Haefligerb8250372007-06-09 10:11:16 -04002460DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002461M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002462L: lm-sensors@lm-sensors.org
2463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002464F: Documentation/hwmon/dme1737
2465F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002466
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002467DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002468M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002469L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002470S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002471F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002472
Joe Perches7d2c86b2009-04-07 20:59:01 -07002473DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002474M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002475L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002476T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002478F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002479
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002481M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482L: blinux-list@redhat.com
2483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002484F: drivers/char/dtlk.c
2485F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002487DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002488M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002489L: linux-scsi@vger.kernel.org
2490W: http://www.adaptec.com/
2491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002492F: drivers/scsi/dpt*
2493F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002494
Philipp Reisnerb411b362009-09-25 16:07:19 -07002495DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002496P: Philipp Reisner
2497P: Lars Ellenberg
2498M: drbd-dev@lists.linbit.com
2499L: drbd-user@lists.linbit.com
2500W: http://www.drbd.org
2501T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2502T: git git://git.drbd.org/drbd-8.3.git
2503S: Supported
2504F: drivers/block/drbd/
2505F: lib/lru_cache.c
2506F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002507
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002508DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002509M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002510T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002512F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002513F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002514F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002515F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002516F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002517F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002518F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
2520DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002521M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002522L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002523T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002525F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002526F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Chris Wilson8daf7472010-09-28 14:07:26 +01002528INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002529M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002530L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002531L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002532T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002533S: Supported
2534F: drivers/gpu/drm/i915
2535F: include/drm/i915*
2536
Kyungmin Park398a6d42011-11-02 11:33:16 +09002537DRM DRIVERS FOR EXYNOS
2538M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002539M: Joonyoung Shim <jy0922.shim@samsung.com>
2540M: Seung-Woo Kim <sw0312.kim@samsung.com>
2541M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002542L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002543T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002544S: Supported
2545F: drivers/gpu/drm/exynos
2546F: include/drm/exynos*
2547
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002548DRM DRIVERS FOR NVIDIA TEGRA
2549M: Thierry Reding <thierry.reding@avionic-design.de>
2550L: dri-devel@lists.freedesktop.org
2551L: linux-tegra@vger.kernel.org
2552T: git git://gitorious.org/thierryreding/linux.git
2553S: Maintained
2554F: drivers/gpu/drm/tegra/
2555F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002558M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002559L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002561F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
Antti Palosaari91952bc2012-10-01 12:28:46 -03002563DVB_USB_AF9015 MEDIA DRIVER
2564M: Antti Palosaari <crope@iki.fi>
2565L: linux-media@vger.kernel.org
2566W: http://linuxtv.org/
2567W: http://palosaari.fi/linux/
2568Q: http://patchwork.linuxtv.org/project/linux-media/list/
2569T: git git://linuxtv.org/anttip/media_tree.git
2570S: Maintained
2571F: drivers/media/usb/dvb-usb-v2/af9015*
2572
2573DVB_USB_AF9035 MEDIA DRIVER
2574M: Antti Palosaari <crope@iki.fi>
2575L: linux-media@vger.kernel.org
2576W: http://linuxtv.org/
2577W: http://palosaari.fi/linux/
2578Q: http://patchwork.linuxtv.org/project/linux-media/list/
2579T: git git://linuxtv.org/anttip/media_tree.git
2580S: Maintained
2581F: drivers/media/usb/dvb-usb-v2/af9035*
2582
2583DVB_USB_ANYSEE MEDIA DRIVER
2584M: Antti Palosaari <crope@iki.fi>
2585L: linux-media@vger.kernel.org
2586W: http://linuxtv.org/
2587W: http://palosaari.fi/linux/
2588Q: http://patchwork.linuxtv.org/project/linux-media/list/
2589T: git git://linuxtv.org/anttip/media_tree.git
2590S: Maintained
2591F: drivers/media/usb/dvb-usb-v2/anysee*
2592
2593DVB_USB_AU6610 MEDIA DRIVER
2594M: Antti Palosaari <crope@iki.fi>
2595L: linux-media@vger.kernel.org
2596W: http://linuxtv.org/
2597W: http://palosaari.fi/linux/
2598Q: http://patchwork.linuxtv.org/project/linux-media/list/
2599T: git git://linuxtv.org/anttip/media_tree.git
2600S: Maintained
2601F: drivers/media/usb/dvb-usb-v2/au6610*
2602
2603DVB_USB_CE6230 MEDIA DRIVER
2604M: Antti Palosaari <crope@iki.fi>
2605L: linux-media@vger.kernel.org
2606W: http://linuxtv.org/
2607W: http://palosaari.fi/linux/
2608Q: http://patchwork.linuxtv.org/project/linux-media/list/
2609T: git git://linuxtv.org/anttip/media_tree.git
2610S: Maintained
2611F: drivers/media/usb/dvb-usb-v2/ce6230*
2612
Michael Krufkyd099dea2012-10-02 00:56:20 -03002613DVB_USB_CXUSB MEDIA DRIVER
2614M: Michael Krufky <mkrufky@linuxtv.org>
2615L: linux-media@vger.kernel.org
2616W: http://linuxtv.org/
2617W: http://github.com/mkrufky
2618Q: http://patchwork.linuxtv.org/project/linux-media/list/
2619T: git git://linuxtv.org/media_tree.git
2620S: Maintained
2621F: drivers/media/usb/dvb-usb-v2/cxusb*
2622
Antti Palosaari91952bc2012-10-01 12:28:46 -03002623DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2624M: Antti Palosaari <crope@iki.fi>
2625L: linux-media@vger.kernel.org
2626W: http://linuxtv.org/
2627W: http://palosaari.fi/linux/
2628Q: http://patchwork.linuxtv.org/project/linux-media/list/
2629T: git git://linuxtv.org/anttip/media_tree.git
2630S: Maintained
2631F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2632
2633DVB_USB_EC168 MEDIA DRIVER
2634M: Antti Palosaari <crope@iki.fi>
2635L: linux-media@vger.kernel.org
2636W: http://linuxtv.org/
2637W: http://palosaari.fi/linux/
2638Q: http://patchwork.linuxtv.org/project/linux-media/list/
2639T: git git://linuxtv.org/anttip/media_tree.git
2640S: Maintained
2641F: drivers/media/usb/dvb-usb-v2/ec168*
2642
Michael Krufky8856f5f2012-10-02 00:55:50 -03002643DVB_USB_MXL111SF MEDIA DRIVER
2644M: Michael Krufky <mkrufky@linuxtv.org>
2645L: linux-media@vger.kernel.org
2646W: http://linuxtv.org/
2647W: http://github.com/mkrufky
2648Q: http://patchwork.linuxtv.org/project/linux-media/list/
2649T: git git://linuxtv.org/mkrufky/mxl111sf.git
2650S: Maintained
2651F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2652
Antti Palosaari91952bc2012-10-01 12:28:46 -03002653DVB_USB_RTL28XXU MEDIA DRIVER
2654M: Antti Palosaari <crope@iki.fi>
2655L: linux-media@vger.kernel.org
2656W: http://linuxtv.org/
2657W: http://palosaari.fi/linux/
2658Q: http://patchwork.linuxtv.org/project/linux-media/list/
2659T: git git://linuxtv.org/anttip/media_tree.git
2660S: Maintained
2661F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2662
2663DVB_USB_V2 MEDIA DRIVER
2664M: Antti Palosaari <crope@iki.fi>
2665L: linux-media@vger.kernel.org
2666W: http://linuxtv.org/
2667W: http://palosaari.fi/linux/
2668Q: http://patchwork.linuxtv.org/project/linux-media/list/
2669T: git git://linuxtv.org/anttip/media_tree.git
2670S: Maintained
2671F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2672F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2673
Jason Baronac0ac382011-08-11 14:36:43 -04002674DYNAMIC DEBUG
2675M: Jason Baron <jbaron@redhat.com>
2676S: Maintained
2677F: lib/dynamic_debug.c
2678F: include/linux/dynamic_debug.h
2679
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002680DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002681M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002682S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002683F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002684
Antti Palosaari91952bc2012-10-01 12:28:46 -03002685E4000 MEDIA DRIVER
2686M: Antti Palosaari <crope@iki.fi>
2687L: linux-media@vger.kernel.org
2688W: http://linuxtv.org/
2689W: http://palosaari.fi/linux/
2690Q: http://patchwork.linuxtv.org/project/linux-media/list/
2691T: git git://linuxtv.org/anttip/media_tree.git
2692S: Maintained
2693F: drivers/media/tuners/e4000*
2694
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002696M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002697L: linux-eata@i-connect.net
2698L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002700F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
2702EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002703M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704L: linux-scsi@vger.kernel.org
2705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002706F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
2708EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002709M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002710L: linux-eata@i-connect.net
2711L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002713F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
2715EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002716M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002717L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718W: http://ebtables.sourceforge.net/
2719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002720F: include/linux/netfilter_bridge/ebt_*.h
2721F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
Antti Palosaari91952bc2012-10-01 12:28:46 -03002723EC100 MEDIA DRIVER
2724M: Antti Palosaari <crope@iki.fi>
2725L: linux-media@vger.kernel.org
2726W: http://linuxtv.org/
2727W: http://palosaari.fi/linux/
2728Q: http://patchwork.linuxtv.org/project/linux-media/list/
2729T: git git://linuxtv.org/anttip/media_tree.git
2730S: Maintained
2731F: drivers/media/dvb-frontends/ec100*
2732
Michael Halcrow237fead2006-10-04 02:16:22 -07002733ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002734M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002735M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002736L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002737W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002738S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002739F: Documentation/filesystems/ecryptfs.txt
2740F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002741
Alan Coxda9bb1d2006-01-18 17:44:13 -08002742EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002743M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002744L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002745W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002746S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002747F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002748F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002749F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002750
Borislav Petkovc476c232009-05-20 20:31:58 +02002751EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002752M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002753M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002754L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002755W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002756S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002757F: drivers/edac/amd64_edac*
2758
Ralf Baechlef65aad42012-10-17 00:39:09 +02002759EDAC-CAVIUM
2760M: Ralf Baechle <ralf@linux-mips.org>
2761M: David Daney <david.daney@cavium.com>
2762L: linux-edac@vger.kernel.org
2763L: linux-mips@linux-mips.org
2764W: bluesmoke.sourceforge.net
2765S: Supported
2766F: drivers/edac/octeon_edac*
2767
Dave Peterson0e438e32006-03-26 01:38:55 -08002768EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002769M: Mark Gross <mark.gross@intel.com>
2770M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002771L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002772W: bluesmoke.sourceforge.net
2773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002774F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002775
2776EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002777M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002778L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002779W: bluesmoke.sourceforge.net
2780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002781F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002782
Douglas Thompson6bc78402007-07-19 01:50:12 -07002783EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002784M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002785L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002786W: bluesmoke.sourceforge.net
2787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002788F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002789
2790EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002791M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002792L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002793W: bluesmoke.sourceforge.net
2794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002795F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002796
2797EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002798M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002799L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002800W: bluesmoke.sourceforge.net
2801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002802F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002803
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002804EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002805M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002806L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002807W: bluesmoke.sourceforge.net
2808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002809F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002810
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002811EDAC-I7300
2812M: Mauro Carvalho Chehab <mchehab@redhat.com>
2813L: linux-edac@vger.kernel.org
2814W: bluesmoke.sourceforge.net
2815S: Maintained
2816F: drivers/edac/i7300_edac.c
2817
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002818EDAC-I7CORE
2819M: Mauro Carvalho Chehab <mchehab@redhat.com>
2820L: linux-edac@vger.kernel.org
2821W: bluesmoke.sourceforge.net
2822S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002823F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002824
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002825EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002826M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302827M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002828L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002829W: bluesmoke.sourceforge.net
2830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002831F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002832
2833EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002834M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002835L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002836W: bluesmoke.sourceforge.net
2837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002838F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002839
Dave Peterson0e438e32006-03-26 01:38:55 -08002840EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002841M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002842L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002843W: bluesmoke.sourceforge.net
2844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002845F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002846
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002847EDAC-SBRIDGE
2848M: Mauro Carvalho Chehab <mchehab@redhat.com>
2849L: linux-edac@vger.kernel.org
2850W: bluesmoke.sourceforge.net
2851S: Maintained
2852F: drivers/edac/sb_edac.c
2853
Clemens Ladischaf399172011-01-10 16:32:54 +01002854EDIROL UA-101/UA-1000 DRIVER
2855M: Clemens Ladisch <clemens@ladisch.de>
2856L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2857T: git git://git.alsa-project.org/alsa-kernel.git
2858S: Maintained
2859F: sound/usb/misc/ua101.c
2860
Matt Fleming1f7df952012-10-03 10:04:02 +01002861EXTENSIBLE FIRMWARE INTERFACE (EFI)
2862M: Matt Fleming <matt.fleming@intel.com>
2863L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002864T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002865S: Maintained
2866F: Documentation/x86/efi-stub.txt
2867F: arch/ia64/kernel/efi.c
2868F: arch/x86/boot/compressed/eboot.[ch]
2869F: arch/x86/include/asm/efi.h
2870F: arch/x86/platform/efi/*
2871F: drivers/firmware/efivars.c
2872F: include/linux/efi*.h
2873
Peter Jones85a00d92010-09-22 13:05:04 -07002874EFIFB FRAMEBUFFER DRIVER
2875L: linux-fbdev@vger.kernel.org
2876M: Peter Jones <pjones@redhat.com>
2877S: Maintained
2878F: drivers/video/efifb.c
2879
Josh Triplett0bee8d22006-07-30 03:03:58 -07002880EFS FILESYSTEM
2881W: http://aeschi.ch.eu.org/efs/
2882S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002883F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002884
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002885EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002886M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2887M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002888L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002889S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002890F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002891
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002892EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002893M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002894L: netdev@vger.kernel.org
2895S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002896F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002897
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02002898EM28XX VIDEO4LINUX DRIVER
2899M: Mauro Carvalho Chehab <mchehab@redhat.com>
2900L: linux-media@vger.kernel.org
2901W: http://linuxtv.org
2902T: git git://linuxtv.org/media_tree.git
2903S: Maintained
2904F: drivers/media/usb/em28xx/
2905
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002906EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002907M: Paul Gortmaker <paul.gortmaker@windriver.com>
2908M: Matt Mackall <mpm@selenic.com>
2909M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002910L: linux-embedded@vger.kernel.org
2911S: Maintained
2912
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002913EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002914M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002915L: linux-scsi@vger.kernel.org
2916W: http://sourceforge.net/projects/lpfcxxxx
2917S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002918F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002919
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002920ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002921M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002922S: Maintained
2923F: drivers/misc/cb710/
2924F: drivers/mmc/host/cb710-mmc.*
2925F: include/linux/cb710.h
2926
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002927ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2928M: Maxim Levitsky <maximlevitsky@gmail.com>
2929S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002930F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002933M: Christopher Hoover <ch@murgatroid.com>
2934M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002936F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002938EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002939M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002940S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002941T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002942F: drivers/video/s1d13xxxfb.c
2943F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002944
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002946M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002947L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002949F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
2951ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002952M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002953L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002954L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002955W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002957F: include/linux/netfilter_bridge/
2958F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
2960ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002961M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002963F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
2965EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002966M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002967L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002969F: Documentation/filesystems/ext2.txt
2970F: fs/ext2/
2971F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
2973EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002974M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002975M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002976M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002977L: linux-ext4@vger.kernel.org
2978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002979F: Documentation/filesystems/ext3.txt
2980F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08002981
2982EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002983M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002984M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002985L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002986W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002987Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002989F: Documentation/filesystems/ext4.txt
2990F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
Mimi Zoharc5532b02011-08-17 18:52:24 -04002992Extended Verification Module (EVM)
2993M: Mimi Zohar <zohar@us.ibm.com>
2994S: Supported
2995F: security/integrity/evm/
2996
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002997EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2998M: MyungJoo Ham <myungjoo.ham@samsung.com>
2999M: Chanwoo Choi <cw00.choi@samsung.com>
3000L: linux-kernel@vger.kernel.org
3001S: Maintained
3002F: drivers/extcon/
3003F: Documentation/extcon/
3004
Jingoo Han0a799512012-02-06 11:30:39 +09003005EXYNOS DP DRIVER
3006M: Jingoo Han <jg1.han@samsung.com>
3007L: linux-fbdev@vger.kernel.org
3008S: Maintained
3009F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003010F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003011
Donghwa Lee33ad3912012-03-06 11:44:58 +09003012EXYNOS MIPI DISPLAY DRIVERS
3013M: Inki Dae <inki.dae@samsung.com>
3014M: Donghwa Lee <dh09.lee@samsung.com>
3015M: Kyungmin Park <kyungmin.park@samsung.com>
3016L: linux-fbdev@vger.kernel.org
3017S: Maintained
3018F: drivers/video/exynos/exynos_mipi*
3019F: include/video/exynos_mipi*
3020
Jean Delvaree53004e2006-01-09 23:26:14 +01003021F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003022M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003023L: lm-sensors@lm-sensors.org
3024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003025F: Documentation/hwmon/f71805f
3026F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003027
Michael Büscheea977e2012-04-02 12:14:32 -03003028FC0011 TUNER DRIVER
3029M: Michael Buesch <m@bues.ch>
3030L: linux-media@vger.kernel.org
3031S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003032F: drivers/media/tuners/fc0011.h
3033F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003034
Antti Palosaari91952bc2012-10-01 12:28:46 -03003035FC2580 MEDIA DRIVER
3036M: Antti Palosaari <crope@iki.fi>
3037L: linux-media@vger.kernel.org
3038W: http://linuxtv.org/
3039W: http://palosaari.fi/linux/
3040Q: http://patchwork.linuxtv.org/project/linux-media/list/
3041T: git git://linuxtv.org/anttip/media_tree.git
3042S: Maintained
3043F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044
Eric Paris88b2dbd2010-08-18 12:25:50 -04003045FANOTIFY
3046M: Eric Paris <eparis@redhat.com>
3047S: Maintained
3048F: fs/notify/fanotify/
3049F: include/linux/fanotify.h
3050
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003052M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053W: http://www.farsite.co.uk/
3054S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003055F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Akinobu Mitac5408b82007-04-23 14:41:20 -07003057FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003058M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003059S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003060F: Documentation/fault-injection/
3061F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003062
Robert Lovecae727d2010-02-16 12:16:00 -08003063FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3064M: Robert Love <robert.w.love@intel.com>
3065L: devel@open-fcoe.org
3066W: www.Open-FCoE.org
3067S: Supported
3068F: drivers/scsi/libfc/
3069F: drivers/scsi/fcoe/
3070F: include/scsi/fc/
3071F: include/scsi/libfc.h
3072F: include/scsi/libfcoe.h
3073
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003074FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003075M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003076L: linux-fsdevel@vger.kernel.org
3077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003078F: include/linux/fcntl.h
3079F: include/linux/fs.h
3080F: fs/fcntl.c
3081F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003082
3083FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003084M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003085L: linux-fsdevel@vger.kernel.org
3086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003087F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003088
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003089FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003090M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003091L: lm-sensors@lm-sensors.org
3092S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003093F: drivers/hwmon/f75375s.c
3094F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003095
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003096FIREWIRE AUDIO DRIVERS
3097M: Clemens Ladisch <clemens@ladisch.de>
3098L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3099T: git git://git.alsa-project.org/alsa-kernel.git
3100S: Maintained
3101F: sound/firewire/
3102
Stefan Richtereb86ec52012-11-03 09:25:20 +01003103FIREWIRE MEDIA DRIVERS (firedtv)
3104M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3105L: linux-media@vger.kernel.org
3106L: linux1394-devel@lists.sourceforge.net
3107T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3108S: Maintained
3109F: drivers/media/firewire/
3110
Chris Boota511ce32012-04-14 17:50:35 -07003111FIREWIRE SBP-2 TARGET
3112M: Chris Boot <bootc@bootc.net>
3113L: linux-scsi@vger.kernel.org
3114L: target-devel@vger.kernel.org
3115L: linux1394-devel@lists.sourceforge.net
3116T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3117S: Maintained
3118F: drivers/target/sbp/
3119
Joe Perches7d2c86b2009-04-07 20:59:01 -07003120FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003121M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003122L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003123W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003124T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003126F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003127F: include/linux/firewire.h
3128F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003129F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003130
3131FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003132M: Ming Lei <ming.lei@canonical.com>
3133L: linux-kernel@vger.kernel.org
3134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003135F: Documentation/firmware_class/
3136F: drivers/base/firmware*.c
3137F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003138
Jiri Kosina8206f662012-05-18 13:52:29 +02003139FLOPPY DRIVER
3140M: Jiri Kosina <jkosina@suse.cz>
3141T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3142S: Odd fixes
3143F: drivers/block/floppy.c
3144
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003145FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003146M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003147W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003149F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003150
3151FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003152L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003153S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003154F: drivers/net/wan/dlci.c
3155F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003156
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003158M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003159L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003161Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003162T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003164F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003165F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003166F: drivers/video/
3167F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003168F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169
Timur Tabia57c1882012-10-16 17:33:42 -05003170FREESCALE DIU FRAMEBUFFER DRIVER
3171M: Timur Tabi <timur@freescale.com>
3172L: linux-fbdev@vger.kernel.org
3173S: Supported
3174F: drivers/video/fsl-diu-fb.*
3175
Zhang Wei173acc72008-03-01 07:42:48 -07003176FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003177M: Li Yang <leoli@freescale.com>
3178M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003179L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003181F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003182
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003183FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003184M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003185L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003186L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003188F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003189
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003190FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003191M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003192L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003193L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003195F: arch/arm/plat-mxc/include/mach/imxfb.h
3196F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003197
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003198FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003199M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3200M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003201L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003202L: netdev@vger.kernel.org
3203S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003204F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003205F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003206
Timur Tabid9e9d822008-04-24 08:45:26 +10003207FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003208M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003209L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003210S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003211F: arch/powerpc/sysdev/qe_lib/
3212F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003213
Joe Perchesb55ef9292009-10-26 16:49:46 -07003214FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003215M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003216L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003217L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003218S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003219F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003220
Li Yangbeaf53b2007-05-25 13:54:02 +08003221FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003222M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003223L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003224L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003225S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003226F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003227
Timur Tabid9e9d822008-04-24 08:45:26 +10003228FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003229M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003230L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003231S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003232F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003233
3234FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003235M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003236L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003237L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003238S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003239F: sound/soc/fsl/fsl*
3240F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003241
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003243M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003246F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
Pavel Machek71038f52009-01-15 13:51:02 -08003248FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003249M: Pavel Machek <pavel@ucw.cz>
3250M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003251L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003252S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003253F: Documentation/power/freezing-of-tasks.txt
3254F: include/linux/freezer.h
3255F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003256
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003257FRONTSWAP API
3258M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3259L: linux-kernel@vger.kernel.org
3260S: Maintained
3261F: mm/frontswap.c
3262F: include/linux/frontswap.h
3263
David Howellsa5432f52009-04-20 15:46:45 +01003264FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003265M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003266L: linux-cachefs@redhat.com
3267S: Supported
3268F: Documentation/filesystems/caching/
3269F: fs/fscache/
3270F: include/linux/fscache*.h
3271
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003272F2FS FILE SYSTEM
3273M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3274L: linux-f2fs-devel@lists.sourceforge.net
3275W: http://en.wikipedia.org/wiki/F2FS
3276T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3277S: Maintained
3278F: Documentation/filesystems/f2fs.txt
3279F: fs/f2fs/
3280F: include/linux/f2fs_fs.h
3281
David Howells5ab7ffe2007-04-10 15:10:45 +01003282FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003283M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003285F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286
Jonathan Woithe20b93732008-06-11 10:14:56 +09303287FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303288M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003289L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003291F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303292
Heungjun Kim4da621b2011-11-11 08:05:33 -03003293FUJITSU M-5MO LS CAMERA ISP DRIVER
3294M: Kyungmin Park <kyungmin.park@samsung.com>
3295M: Heungjun Kim <riverful.kim@samsung.com>
3296L: linux-media@vger.kernel.org
3297S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003298F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003299F: include/media/m5mols.h
3300
Robert Gerlach2d24c492012-01-18 14:26:22 +01003301FUJITSU TABLET EXTRAS
3302M: Robert Gerlach <khnz@gmx.de>
3303L: platform-driver-x86@vger.kernel.org
3304S: Maintained
3305F: drivers/platform/x86/fujitsu-tablet.c
3306
Miklos Szeredi04578f12005-09-09 13:10:22 -07003307FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003308M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003309L: fuse-devel@lists.sourceforge.net
3310W: http://fuse.sourceforge.net/
3311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003312F: fs/fuse/
3313F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003314
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003316M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003318S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003319F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320
3321GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003322M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323L: linux-scsi@vger.kernel.org
3324W: http://www.icp-vortex.com/
3325S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003326F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003328GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003329M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003330S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003331F: drivers/i2c/busses/i2c-gpio.c
3332F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003333
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003334GENERIC GPIO I2C MULTIPLEXER DRIVER
3335M: Peter Korsgaard <peter.korsgaard@barco.com>
3336L: linux-i2c@vger.kernel.org
3337S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003338F: drivers/i2c/muxes/i2c-mux-gpio.c
3339F: include/linux/i2c-mux-gpio.h
3340F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003341
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003342GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003343M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003346F: drivers/net/wan/c101.c
3347F: drivers/net/wan/hd6457*
3348F: drivers/net/wan/hdlc*
3349F: drivers/net/wan/n2.c
3350F: drivers/net/wan/pc300too.c
3351F: drivers/net/wan/pci200syn.c
3352F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003354GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003355M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003356L: linux-arch@vger.kernel.org
3357T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3358S: Maintained
3359F: include/asm-generic
3360
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003361GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003362M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003363L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003364S: Supported
3365F: drivers/uio/uio_pci_generic.c
3366
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003367GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003368M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003369L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003370W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003371T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3372T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003373S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003374F: Documentation/filesystems/gfs2*.txt
3375F: fs/gfs2/
3376F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003377
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003378GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003379M: Hansjoerg Lipp <hjlipp@web.de>
3380M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003381L: gigaset307x-common@lists.sourceforge.net
3382W: http://gigaset307x.sourceforge.net/
3383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003384F: Documentation/isdn/README.gigaset
3385F: drivers/isdn/gigaset/
3386F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003387
Grant Likelya0dc00b2011-02-12 01:48:14 -07003388GPIO SUBSYSTEM
3389M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003390M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003391S: Maintained
3392T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003393F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003394F: drivers/gpio/
3395F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003396F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003397
Harry Wei71a6d0a2011-05-11 15:13:33 -07003398GRE DEMULTIPLEXER DRIVER
3399M: Dmitry Kozlov <xeb@mail.ru>
3400L: netdev@vger.kernel.org
3401S: Maintained
3402F: net/ipv4/gre.c
3403F: include/net/gre.h
3404
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003405GRETH 10/100/1G Ethernet MAC device driver
3406M: Kristoffer Glembo <kristoffer@gaisler.com>
3407L: netdev@vger.kernel.org
3408S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003409F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003410
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003411GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003412M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003413L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003414T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003415S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003416F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003417
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003418GSPCA GL860 SUBDRIVER
3419M: Olivier Lorin <o.lorin@laposte.net>
3420L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003421T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003422S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003423F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003424
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003425GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003426M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003427L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003428T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003429S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003430F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003431
3432GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003433M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003434L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003435T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003436S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003437F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003438
Brian Johnson261982f2009-07-19 15:58:56 -03003439GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003440M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003441L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003442T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003443S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003444F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003445
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003446GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003447M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003448L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003449T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003450S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003451F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003452
3453GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003454M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003455L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003456T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003457S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003458F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003459
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003460STK1160 USB VIDEO CAPTURE DRIVER
3461M: Ezequiel Garcia <elezegarcia@gmail.com>
3462L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003463T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003464S: Maintained
3465F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003466
Harry Wei71a6d0a2011-05-11 15:13:33 -07003467HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3468M: Frank Seidel <frank@f-seidel.de>
3469L: platform-driver-x86@vger.kernel.org
3470W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3471S: Maintained
3472F: drivers/platform/x86/hdaps.c
3473
3474HWPOISON MEMORY FAILURE HANDLING
3475M: Andi Kleen <andi@firstfloor.org>
3476L: linux-mm@kvack.org
3477T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3478S: Maintained
3479F: mm/memory-failure.c
3480F: mm/hwpoison-inject.c
3481
3482HYPERVISOR VIRTUAL CONSOLE DRIVER
3483L: linuxppc-dev@lists.ozlabs.org
3484S: Odd Fixes
3485F: drivers/tty/hvc/
3486
Michael Buesch844dd052006-06-26 00:24:59 -07003487HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003488M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003489M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003490L: lm-sensors@lm-sensors.org
3491W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003492T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003493T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003494S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003495F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003496F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003497F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003498
3499HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003500M: Matt Mackall <mpm@selenic.com>
3501M: Herbert Xu <herbert@gondor.apana.org.au>
3502S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003503F: Documentation/hw_random.txt
3504F: drivers/char/hw_random/
3505F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003506
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003507HARDWARE SPINLOCK CORE
3508M: Ohad Ben-Cohen <ohad@wizery.com>
3509S: Maintained
3510F: Documentation/hwspinlock.txt
3511F: drivers/hwspinlock/hwspinlock_*
3512F: include/linux/hwspinlock.h
3513
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003515L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003517F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518
Antti Palosaari91952bc2012-10-01 12:28:46 -03003519HD29L2 MEDIA DRIVER
3520M: Antti Palosaari <crope@iki.fi>
3521L: linux-media@vger.kernel.org
3522W: http://linuxtv.org/
3523W: http://palosaari.fi/linux/
3524Q: http://patchwork.linuxtv.org/project/linux-media/list/
3525T: git git://linuxtv.org/anttip/media_tree.git
3526S: Maintained
3527F: drivers/media/dvb-frontends/hd29l2*
3528
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003529HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003530M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003531L: iss_storagedev@hp.com
3532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003533F: Documentation/blockdev/cpqarray.txt
3534F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003535
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003536HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003537M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003538L: iss_storagedev@hp.com
3539S: Supported
3540F: Documentation/scsi/hpsa.txt
3541F: drivers/scsi/hpsa*.[ch]
3542F: include/linux/cciss*.h
3543
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003544HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003545M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003546L: iss_storagedev@hp.com
3547S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003548F: Documentation/blockdev/cciss.txt
3549F: drivers/block/cciss*
3550F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003551
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003553L: linux-fsdevel@vger.kernel.org
3554S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003555F: Documentation/filesystems/hfs.txt
3556F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
3558HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003559M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560L: linux-nvidia@lists.surfsouth.com
3561W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003563F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003565HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003566M: Pavel Machek <pavel@ucw.cz>
3567M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003568L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003569S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003570F: arch/x86/power/
3571F: drivers/base/power/
3572F: kernel/power/
3573F: include/linux/suspend.h
3574F: include/linux/freezer.h
3575F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003576F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003577
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003578HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003579M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003580L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003581T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003583F: drivers/hid/
3584F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003585
Ingo Molnar38bed542007-02-22 09:09:34 +01003586HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003587M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003588T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003590F: Documentation/timers/
3591F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003592F: kernel/time/clockevents.c
3593F: kernel/time/tick*.*
3594F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003595F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003596F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003597
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003600S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003601F: drivers/net/hamradio/dmascc.c
3602F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003604HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003605M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003606W: http://www.highpoint-tech.com
3607S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003608F: Documentation/scsi/hptiop.txt
3609F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003610
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003612M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613L: linux-hippi@sunsite.dk
3614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003615F: include/linux/hippidevice.h
3616F: include/linux/if_hippi.h
3617F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003618F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619
Jouni Malinenff1d2762005-05-12 22:54:16 -04003620HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003621M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003622L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003623L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003624W: http://hostap.epitest.fi/
3625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003626F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003627
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003628HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003629L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003630S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003631F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003632
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003633HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003634M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003635S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003636F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003637
Joe Perches7d2c86b2009-04-07 20:59:01 -07003638HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003639M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003641F: Documentation/timers/hpet.txt
3642F: drivers/char/hpet.c
3643F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003644
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003645HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003646M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003648F: arch/x86/kernel/hpet.c
3649F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003650
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003652M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003655F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656
Joe Perches7d2c86b2009-04-07 20:59:01 -07003657HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003658M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003659W: http://www.pharscape.org
3660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003661F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003662
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003663HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003664M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003665L: linux-input@vger.kernel.org
3666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003667F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003668
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003670M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003672F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003674Hyper-V CORE AND DRIVERS
3675M: K. Y. Srinivasan <kys@microsoft.com>
3676M: Haiyang Zhang <haiyangz@microsoft.com>
3677L: devel@linuxdriverproject.org
3678S: Maintained
3679F: drivers/hv/
3680F: drivers/hid/hid-hyperv.c
3681F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003682
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003683I2C OVER PARALLEL PORT
3684M: Jean Delvare <khali@linux-fr.org>
3685L: linux-i2c@vger.kernel.org
3686S: Maintained
3687F: Documentation/i2c/busses/i2c-parport
3688F: Documentation/i2c/busses/i2c-parport-light
3689F: drivers/i2c/busses/i2c-parport.c
3690F: drivers/i2c/busses/i2c-parport-light.c
3691
3692I2C/SMBUS CONTROLLER DRIVERS FOR PC
3693M: Jean Delvare <khali@linux-fr.org>
3694L: linux-i2c@vger.kernel.org
3695S: Maintained
3696F: Documentation/i2c/busses/i2c-ali1535
3697F: Documentation/i2c/busses/i2c-ali1563
3698F: Documentation/i2c/busses/i2c-ali15x3
3699F: Documentation/i2c/busses/i2c-amd756
3700F: Documentation/i2c/busses/i2c-amd8111
3701F: Documentation/i2c/busses/i2c-i801
3702F: Documentation/i2c/busses/i2c-nforce2
3703F: Documentation/i2c/busses/i2c-piix4
3704F: Documentation/i2c/busses/i2c-sis5595
3705F: Documentation/i2c/busses/i2c-sis630
3706F: Documentation/i2c/busses/i2c-sis96x
3707F: Documentation/i2c/busses/i2c-via
3708F: Documentation/i2c/busses/i2c-viapro
3709F: drivers/i2c/busses/i2c-ali1535.c
3710F: drivers/i2c/busses/i2c-ali1563.c
3711F: drivers/i2c/busses/i2c-ali15x3.c
3712F: drivers/i2c/busses/i2c-amd756.c
3713F: drivers/i2c/busses/i2c-amd756-s4882.c
3714F: drivers/i2c/busses/i2c-amd8111.c
3715F: drivers/i2c/busses/i2c-i801.c
3716F: drivers/i2c/busses/i2c-isch.c
3717F: drivers/i2c/busses/i2c-nforce2.c
3718F: drivers/i2c/busses/i2c-nforce2-s4985.c
3719F: drivers/i2c/busses/i2c-piix4.c
3720F: drivers/i2c/busses/i2c-sis5595.c
3721F: drivers/i2c/busses/i2c-sis630.c
3722F: drivers/i2c/busses/i2c-sis96x.c
3723F: drivers/i2c/busses/i2c-via.c
3724F: drivers/i2c/busses/i2c-viapro.c
3725
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003726I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003727M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003728L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003729S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003730F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003731
Jean Delvare5b543962005-08-15 19:51:02 +02003732I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003733M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003734M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003735L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003736W: http://i2c.wiki.kernel.org/
3737T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003738T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003740F: Documentation/i2c/
3741F: drivers/i2c/
3742F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003743F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003745I2C-TAOS-EVM DRIVER
3746M: Jean Delvare <khali@linux-fr.org>
3747L: linux-i2c@vger.kernel.org
3748S: Maintained
3749F: Documentation/i2c/busses/i2c-taos-evm
3750F: drivers/i2c/busses/i2c-taos-evm.c
3751
Till Harbaume8c76ee2007-05-01 23:26:35 +02003752I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003753M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003754L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003755W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003757F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003758
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003760M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003762F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763
3764i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003765M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003766T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767S: Maintained
3768
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003770M: Tony Luck <tony.luck@intel.com>
3771M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003773T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003775F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776
Kent Yoder956c2032012-09-07 04:17:01 +08003777IBM Power in-Nest Crypto Acceleration
3778M: Kent Yoder <key@linux.vnet.ibm.com>
3779L: linux-crypto@vger.kernel.org
3780S: Supported
3781F: drivers/crypto/nx/
3782
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003783IBM Power 842 compression accelerator
3784M: Robert Jennings <rcj@linux.vnet.ibm.com>
3785S: Supported
3786F: drivers/crypto/nx/nx-842.c
3787F: include/linux/nx842.h
3788
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003790M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003792F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793
Santiago Leon9d348af2010-09-03 18:29:53 +00003794IBM Power Virtual Ethernet Device Driver
3795M: Santiago Leon <santil@linux.vnet.ibm.com>
3796L: netdev@vger.kernel.org
3797S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003798F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003799
Robert Jennings4b7652c2012-07-31 12:34:36 -05003800IBM Power Virtual SCSI/FC Device Drivers
3801M: Robert Jennings <rcj@linux.vnet.ibm.com>
3802L: linux-scsi@vger.kernel.org
3803S: Supported
3804F: drivers/scsi/ibmvscsi/
3805X: drivers/scsi/ibmvscsi/ibmvstgt.c
3806
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807IBM ServeRAID RAID DRIVER
3808P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003809M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003811S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003812F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003814ICH LPC AND GPIO DRIVER
3815M: Peter Tyser <ptyser@xes-inc.com>
3816S: Maintained
3817F: drivers/mfd/lpc_ich.c
3818F: drivers/gpio/gpio-ich.c
3819
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003820IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003821M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003823Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003824T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003826F: Documentation/ide/
3827F: drivers/ide/
3828F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
Ike Panhc6cb8c132011-08-25 22:28:45 +08003830IDEAPAD LAPTOP EXTRAS DRIVER
3831M: Ike Panhc <ike.pan@canonical.com>
3832L: platform-driver-x86@vger.kernel.org
3833W: http://launchpad.net/ideapad-laptop
3834S: Maintained
3835F: drivers/platform/x86/ideapad-laptop.c
3836
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003837IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003838M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003839L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003841F: Documentation/cdrom/ide-cd
3842F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843
Andy Henroid27471fd2008-10-09 11:45:22 -07003844IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003845M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003846L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003847S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003848F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003849
Sergey Lapin02cf2282009-06-08 12:18:50 +00003850IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003851M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003852M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003853L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003854W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003855T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003856S: Maintained
3857F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003858F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003859F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003860
Sean Young40ad4a32012-11-19 10:32:53 -03003861IGUANAWORKS USB IR TRANSCEIVER
3862M: Sean Young <sean@mess.org>
3863L: linux-media@vger.kernel.org
3864S: Maintained
3865F: drivers/media/rc/iguanair.c
3866
Ameya Palande9545f862012-01-10 09:00:58 -08003867IIO SUBSYSTEM AND DRIVERS
3868M: Jonathan Cameron <jic23@cam.ac.uk>
3869L: linux-iio@vger.kernel.org
3870S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003871F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003872F: drivers/staging/iio/
3873
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003874IKANOS/ADI EAGLE ADSL USB DRIVER
3875M: Matthieu Castet <castet.matthieu@free.fr>
3876M: Stanislaw Gruszka <stf_xl@wp.pl>
3877S: Maintained
3878F: drivers/usb/atm/ueagle-atm.c
3879
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01003880INDUSTRY PACK SUBSYSTEM (IPACK)
3881M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
3882M: Jens Taprogge <jens.taprogge@taprogge.org>
3883M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3884L: industrypack-devel@lists.sourceforge.net
3885W: http://industrypack.sourceforge.net
3886S: Maintained
3887F: drivers/ipack/
3888
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003889INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003890M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003891S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003892F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003893
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003895L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003896S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003897F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
3899INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003900M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003901M: Sean Hefty <sean.hefty@intel.com>
3902M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003903L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003904W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003905Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003906T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003908F: Documentation/infiniband/
3909F: drivers/infiniband/
3910F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911
Robert Lovec9f04f52005-07-15 12:21:07 -04003912INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003913M: John McCutchan <john@johnmccutchan.com>
3914M: Robert Love <rlove@rlove.org>
3915M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003917F: Documentation/filesystems/inotify.txt
3918F: fs/notify/inotify/
3919F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003920
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003921INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003922M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3923M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003924L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003925Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003926T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003928F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003929F: include/linux/input.h
3930F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003931
Henrik Rydberg3267a872010-06-24 19:10:40 -07003932INPUT MULTITOUCH (MT) PROTOCOL
3933M: Henrik Rydberg <rydberg@euromail.se>
3934L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003935T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003936S: Maintained
3937F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003938F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003939K: \b(ABS|SYN)_MT_
3940
Dave Jiang4ac13e12011-07-29 17:16:55 -07003941INTEL C600 SERIES SAS CONTROLLER DRIVER
3942M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003943M: Lukasz Dorau <lukasz.dorau@intel.com>
3944M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003945M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003946L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003947T: git git://git.code.sf.net/p/intel-sas/isci
3948S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003949F: drivers/scsi/isci/
3950F: firmware/isci/
3951
Len Brown26717172010-03-08 14:07:30 -05003952INTEL IDLE DRIVER
3953M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003954L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003955T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003956S: Supported
3957F: drivers/idle/intel_idle.c
3958
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003959INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003960M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003961L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003963F: Documentation/fb/intelfb.txt
3964F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003965
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003967M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003968L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003970F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303972INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003973M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003974L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303975W: http://www.lesswatts.org/projects/acpi/
3976S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003977F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303978
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003980M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003982F: arch/x86/kernel/microcode_core.c
3983F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003985INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003986M: Dan Williams <djbw@fb.com>
3987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003988F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003989
David Woodhouse6c8909b2008-10-18 16:12:17 +01003990INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003991M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003992L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003993T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003994S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003995F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003996F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003997
Dan Williamsb3e5f262007-08-07 10:26:35 -07003998INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003999M: Dan Williams <djbw@fb.com>
4000S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004001F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004002
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004003INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004004M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004006F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4007F: arch/arm/mach-ixp4xx/include/mach/npe.h
4008F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4009F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004010F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004011F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004012
Michael Buesch844dd052006-06-26 00:24:59 -07004013INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004014M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004016F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004017
Jeff Kirsher0d164402010-10-05 01:15:17 +00004018INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004019M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4020M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4021M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004022M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4023M: Don Skidmore <donald.c.skidmore@intel.com>
4024M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004025M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004026M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004027M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004028M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004029L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004030W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004031W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004032T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4033T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004035F: Documentation/networking/e100.txt
4036F: Documentation/networking/e1000.txt
4037F: Documentation/networking/e1000e.txt
4038F: Documentation/networking/igb.txt
4039F: Documentation/networking/igbvf.txt
4040F: Documentation/networking/ixgb.txt
4041F: Documentation/networking/ixgbe.txt
4042F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004043F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044
Len Brown6dccf9c2011-07-12 22:29:32 -04004045INTEL MRST PMU DRIVER
4046M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004047L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04004048S: Supported
4049F: arch/x86/platform/mrst/pmu.*
4050
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004051INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4052M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004053L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004055F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004056F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004057F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004058
Shane Wang4bd96a72010-03-10 14:36:10 +08004059INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004060M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4061M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004062M: Shane Wang <shane.wang@intel.com>
4063L: tboot-devel@lists.sourceforge.net
4064W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004065T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004066S: Supported
4067F: Documentation/intel_txt.txt
4068F: include/linux/tboot.h
4069F: arch/x86/kernel/tboot.c
4070
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004071INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004072M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004073M: linux-wimax@intel.com
4074L: wimax@linuxwimax.org
4075S: Supported
4076W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004077F: Documentation/wimax/README.i2400m
4078F: drivers/net/wimax/i2400m/
4079F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004080
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004081INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4082M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004083L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004084S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004085F: drivers/net/wireless/iwlegacy/
4086
Zhu Yib481de92007-09-25 17:54:57 -07004087INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004088M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004089M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004090M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004091L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004092W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004093T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004094S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004095F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004096
Tomas Winklerde8fe022012-05-09 16:39:02 +03004097INTEL MANAGEMENT ENGINE (mei)
4098M: Tomas Winkler <tomas.winkler@intel.com>
4099L: linux-kernel@vger.kernel.org
4100S: Supported
4101F: include/linux/mei.h
4102F: drivers/misc/mei/*
4103F: Documentation/mei/*
4104
Ralf Baechlecb109a02007-08-30 23:56:30 -07004105IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004106M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107L: linux-mips@linux-mips.org
4108S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004109F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110
Ralf Baechlecb109a02007-08-30 23:56:30 -07004111IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004112M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004113L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004114S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004115F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004116
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004117IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004118M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004120F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121
Francois Romieu1202d6f2007-09-17 17:13:55 -07004122IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004123M: Francois Romieu <romieu@fr.zoreil.com>
4124M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004125L: netdev@vger.kernel.org
4126S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004127F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004128
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004129IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004130M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004131L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004133F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004134
Corey Minyard4409ebe2006-04-20 02:43:12 -07004135IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004136M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004137L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004138W: http://openipmi.sourceforge.net/
4139S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004140F: Documentation/IPMI.txt
4141F: drivers/char/ipmi/
4142F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004143
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004144IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004145M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004146L: linux-scsi@vger.kernel.org
4147W: http://www.adaptec.com/
4148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004149F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004150
4151IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004152M: Wensong Zhang <wensong@linux-vs.org>
4153M: Simon Horman <horms@verge.net.au>
4154M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004155L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004156L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004158F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004159F: include/net/ip_vs.h
4160F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004161F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162
Randy Dunlape7839f22008-10-12 16:11:45 -07004163IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004164M: Jiri Kosina <jkosina@suse.cz>
4165M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004166S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004167F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004168
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004169IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004170M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004171L: netdev@vger.kernel.org
4172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004173F: include/linux/ipx.h
4174F: include/net/ipx.h
4175F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004176
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004178M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004179L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004180L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004182S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004183T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004184F: Documentation/networking/irda.txt
4185F: drivers/net/irda/
4186F: include/net/irda/
4187F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004189IRQ SUBSYSTEM
4190M: Thomas Gleixner <tglx@linutronix.de>
4191S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004192T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004193F: kernel/irq/
4194
Grant Likely7ab3a832012-02-14 14:06:47 -07004195IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4196M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4197M: Grant Likely <grant.likely@secretlab.ca>
4198T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4199S: Maintained
4200F: Documentation/IRQ-domain.txt
4201F: include/linux/irqdomain.h
4202F: kernel/irq/irqdomain.c
4203
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004204ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004205M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004207F: Documentation/isapnp.txt
4208F: drivers/pnp/isapnp/
4209F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004210
Harry Wei71a6d0a2011-05-11 15:13:33 -07004211iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4212M: Peter Jones <pjones@redhat.com>
4213M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4214S: Maintained
4215F: drivers/firmware/iscsi_ibft*
4216
Mike Christie14816b1e2007-11-28 16:22:06 -08004217ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004218M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004219L: open-iscsi@googlegroups.com
4220W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004221T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004223F: drivers/scsi/*iscsi*
4224F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004225
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004227M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004228L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004229L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004231T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004233F: Documentation/isdn/
4234F: drivers/isdn/
4235F: include/linux/isdn.h
4236F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237
4238ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004239M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004240L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241W: http://www.melware.de
4242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004243F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244
Jean Delvared6248702010-03-05 22:17:20 +01004245IT87 HARDWARE MONITORING DRIVER
4246M: Jean Delvare <khali@linux-fr.org>
4247L: lm-sensors@lm-sensors.org
4248S: Maintained
4249F: Documentation/hwmon/it87
4250F: drivers/hwmon/it87.c
4251
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004252IT913X MEDIA DRIVER
4253M: Malcolm Priestley <tvboxspy@gmail.com>
4254L: linux-media@vger.kernel.org
4255W: http://linuxtv.org/
4256Q: http://patchwork.linuxtv.org/project/linux-media/list/
4257S: Maintained
4258F: drivers/media/usb/dvb-usb-v2/it913x*
4259
4260IT913X FE MEDIA DRIVER
4261M: Malcolm Priestley <tvboxspy@gmail.com>
4262L: linux-media@vger.kernel.org
4263W: http://linuxtv.org/
4264Q: http://patchwork.linuxtv.org/project/linux-media/list/
4265S: Maintained
4266F: drivers/media/dvb-frontends/it913x-fe*
4267
Hans Verkuil91821ff2007-12-02 09:35:33 -03004268IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004269M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004270L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004271L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004272T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004273W: http://www.ivtvdriver.org
4274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004275F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004276F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004277F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004278
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004279IX2505V MEDIA DRIVER
4280M: Malcolm Priestley <tvboxspy@gmail.com>
4281L: linux-media@vger.kernel.org
4282W: http://linuxtv.org/
4283Q: http://patchwork.linuxtv.org/project/linux-media/list/
4284S: Maintained
4285F: drivers/media/dvb-frontends/ix2505v*
4286
Guenter Roeck4453d732010-08-09 17:21:08 -07004287JC42.4 TEMPERATURE SENSOR DRIVER
4288M: Guenter Roeck <linux@roeck-us.net>
4289L: lm-sensors@lm-sensors.org
4290S: Maintained
4291F: drivers/hwmon/jc42.c
4292F: Documentation/hwmon/jc42
4293
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004294JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004295M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004296L: jfs-discussion@lists.sourceforge.net
4297W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004298T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004300F: Documentation/filesystems/jfs.txt
4301F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004302
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004303JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004304M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004305L: netdev@vger.kernel.org
4306S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004307F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004308
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004310M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004311L: linux-mtd@lists.infradead.org
4312W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004314F: fs/jffs2/
4315F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316
Josh Triplettde456d32006-07-30 03:04:00 -07004317JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004318M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004319M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004320L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004321S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004322F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004323F: include/linux/jbd.h
4324
4325JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4326M: "Theodore Ts'o" <tytso@mit.edu>
4327L: linux-ext4@vger.kernel.org
4328S: Maintained
4329F: fs/jbd2/
4330F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004331
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004332JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004333M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004334L: linux-serial@vger.kernel.org
4335S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004336F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004337
Clemens Ladischaf399172011-01-10 16:32:54 +01004338K10TEMP HARDWARE MONITORING DRIVER
4339M: Clemens Ladisch <clemens@ladisch.de>
4340L: lm-sensors@lm-sensors.org
4341S: Maintained
4342F: Documentation/hwmon/k10temp
4343F: drivers/hwmon/k10temp.c
4344
Rudolf Marek4660cb32006-10-08 22:01:26 +02004345K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004346M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004347L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004349F: Documentation/hwmon/k8temp
4350F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351
4352KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004353M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004354L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004355S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004356F: Documentation/kbuild/kconfig-language.txt
4357F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358
Vivek Goyalea6c2082006-05-20 14:59:55 -07004359KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004360M: Vivek Goyal <vgoyal@redhat.com>
4361M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004362L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004363W: http://lse.sourceforge.net/kdump/
4364S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004365F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004366
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004368M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004369L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004371F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372
Michal Marek70fb7ba2010-01-29 14:22:43 +01004373KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004374M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004375T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4376T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004377L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004379F: Documentation/kbuild/
4380F: Makefile
4381F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004382F: scripts/basic/
4383F: scripts/mk*
4384F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385
4386KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004387L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004388W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004389S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004391KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004392M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004393L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004395S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004396F: fs/nfsd/
4397F: include/linux/nfsd/
4398F: fs/lockd/
4399F: fs/nfs_common/
4400F: net/sunrpc/
4401F: include/linux/lockd/
4402F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403
Avi Kivity426d62e2006-12-13 00:34:03 -08004404KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004405M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004406M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004407L: kvm@vger.kernel.org
4408W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004409S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004410F: Documentation/*/kvm.txt
4411F: arch/*/kvm/
4412F: arch/*/include/asm/kvm*
4413F: include/linux/kvm*
4414F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004415
Joerg Roedelad8003d2008-09-10 20:01:07 +02004416KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004417M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004418L: kvm@vger.kernel.org
4419W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004421F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004422F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004423
Hollis Blanchard513014b2008-04-16 23:28:08 -05004424KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004425M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004426L: kvm-ppc@vger.kernel.org
4427W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004428T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004429S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004430F: arch/powerpc/include/asm/kvm*
4431F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004432
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004433KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004434M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004435L: kvm-ia64@vger.kernel.org
4436W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004437S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004438F: Documentation/ia64/kvm.txt
4439F: arch/ia64/include/asm/kvm*
4440F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004441
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004442KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004443M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004444M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004445M: linux390@de.ibm.com
4446L: linux-s390@vger.kernel.org
4447W: http://www.ibm.com/developerworks/linux/linux390/
4448S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004449F: Documentation/s390/kvm.txt
4450F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004451F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004452F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004453
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004454KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004455M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004456W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004457L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004459F: include/linux/kexec.h
4460F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004461
David Howellse9714612010-03-29 23:42:09 +01004462KEYS/KEYRINGS:
4463M: David Howells <dhowells@redhat.com>
4464L: keyrings@linux-nfs.org
4465S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004466F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004467F: include/linux/key.h
4468F: include/linux/key-type.h
4469F: include/keys/
4470F: security/keys/
4471
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004472KEYS-TRUSTED
4473M: David Safford <safford@watson.ibm.com>
4474M: Mimi Zohar <zohar@us.ibm.com>
4475L: linux-security-module@vger.kernel.org
4476L: keyrings@linux-nfs.org
4477S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004478F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004479F: include/keys/trusted-type.h
4480F: security/keys/trusted.c
4481F: security/keys/trusted.h
4482
4483KEYS-ENCRYPTED
4484M: Mimi Zohar <zohar@us.ibm.com>
4485M: David Safford <safford@watson.ibm.com>
4486L: linux-security-module@vger.kernel.org
4487L: keyrings@linux-nfs.org
4488S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004489F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004490F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004491F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004492
Jason Wessel5b778da2010-05-20 21:04:28 -05004493KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004494M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004495W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004496L: kgdb-bugreport@lists.sourceforge.net
4497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004498F: Documentation/DocBook/kgdb.tmpl
4499F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004500F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004501F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004502F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004503F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004504
Pekka Enberg456db8c2008-04-28 22:47:29 +03004505KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004506M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004507M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004508S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004509F: Documentation/kmemcheck.txt
4510F: arch/x86/include/asm/kmemcheck.h
4511F: arch/x86/mm/kmemcheck/
4512F: include/linux/kmemcheck.h
4513F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004514
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004515KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004516M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004517S: Maintained
4518F: Documentation/kmemleak.txt
4519F: include/linux/kmemleak.h
4520F: mm/kmemleak.c
4521F: mm/kmemleak-test.c
4522
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004523KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004524M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4525M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4526M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004527M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004529F: Documentation/kprobes.txt
4530F: include/linux/kprobes.h
4531F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004532
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004533KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004534M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004535W: http://miguelojeda.es/auxdisplay.htm
4536W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004538F: Documentation/auxdisplay/ks0108
4539F: drivers/auxdisplay/ks0108.c
4540F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004541
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004544S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004545F: Documentation/networking/lapb-module.txt
4546F: include/*/lapb.h
4547F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548
4549LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004550M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551L: linux-scsi@vger.kernel.org
4552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004553F: Documentation/scsi/53c700.txt
4554F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
Richard Purdie263de9b2006-05-15 09:44:16 -07004556LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004557M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004558M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004559L: linux-leds@vger.kernel.org
4560T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004562F: drivers/leds/
4563F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004564
Jean Delvareb0461a42011-06-15 15:08:46 -07004565LEGACY EEPROM DRIVER
4566M: Jean Delvare <khali@linux-fr.org>
4567S: Maintained
4568F: Documentation/misc-devices/eeprom
4569F: drivers/misc/eeprom/eeprom.c
4570
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004572M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573L: legousb-devel@lists.sourceforge.net
4574W: http://legousb.sourceforge.net/
4575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004576F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577
Michael Krufky055616a2012-10-02 00:56:06 -03004578LG2160 MEDIA DRIVER
4579M: Michael Krufky <mkrufky@linuxtv.org>
4580L: linux-media@vger.kernel.org
4581W: http://linuxtv.org/
4582W: http://github.com/mkrufky
4583Q: http://patchwork.linuxtv.org/project/linux-media/list/
4584T: git git://linuxtv.org/mkrufky/tuners.git
4585S: Maintained
4586F: drivers/media/dvb-frontends/lg2160.*
4587
Michael Krufky6f0e7722012-10-02 00:56:00 -03004588LGDT3305 MEDIA DRIVER
4589M: Michael Krufky <mkrufky@linuxtv.org>
4590L: linux-media@vger.kernel.org
4591W: http://linuxtv.org/
4592W: http://github.com/mkrufky
4593Q: http://patchwork.linuxtv.org/project/linux-media/list/
4594T: git git://linuxtv.org/mkrufky/tuners.git
4595S: Maintained
4596F: drivers/media/dvb-frontends/lgdt3305.*
4597
Rusty Russell568a17f2007-10-25 14:12:24 +10004598LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004599M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004600L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004601W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004602S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004603F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004604F: arch/x86/lguest/
4605F: drivers/lguest/
4606F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004607F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004608
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004610M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611W: http://www.ibm.com/linux/ltc/projects/ppc
4612S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004613F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004615LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004616M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4617M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004619L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004620Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004621T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004623F: Documentation/powerpc/
4624F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625
4626LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004627M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004629L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004631F: arch/powerpc/platforms/powermac/
4632F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633
Grant Likely77a76362008-07-12 12:11:43 -06004634LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004635M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004636L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004637T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004639F: arch/powerpc/platforms/512x/
4640F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641
4642LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004643M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004644M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004646L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004647T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004649F: arch/powerpc/platforms/40x/
4650F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651
Grant Likely260c02a2007-10-02 12:15:34 +10004652LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004653M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004654W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004655L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004656T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004658F: arch/powerpc/*/*virtex*
4659F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660
Tom Rinie93adf12005-07-26 12:49:53 -07004661LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004662M: Vitaly Bordug <vitb@kernel.crashing.org>
4663M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004664W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004665L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004666S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004667F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004668
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004670M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004671W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004672L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004673S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004674F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004675F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676
Olof Johanssonab06ff32006-09-06 14:44:54 -05004677LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004678M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004679L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004680S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004681F: arch/powerpc/platforms/pasemi/
4682F: drivers/*/*pasemi*
4683F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004684
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004686M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004687L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688S: Supported
4689
Harry Weia23ce6d2011-02-11 16:52:20 +01004690LIS3LV02D ACCELEROMETER DRIVER
4691M: Eric Piel <eric.piel@tremplin-utc.net>
4692S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004693F: Documentation/misc-devices/lis3lv02d
4694F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004695F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004696
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004697LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004698M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004700F: include/linux/llc.h
4701F: include/net/llc*
4702F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004703
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004704LM73 HARDWARE MONITOR DRIVER
4705M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4706L: lm-sensors@lm-sensors.org
4707S: Maintained
4708F: drivers/hwmon/lm73.c
4709
Jean Delvare156e2d12011-07-25 21:46:11 +02004710LM78 HARDWARE MONITOR DRIVER
4711M: Jean Delvare <khali@linux-fr.org>
4712L: lm-sensors@lm-sensors.org
4713S: Maintained
4714F: Documentation/hwmon/lm78
4715F: drivers/hwmon/lm78.c
4716
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004718M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004719L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004721F: Documentation/hwmon/lm83
4722F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723
4724LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004725M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004726L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004728F: Documentation/hwmon/lm90
4729F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004731LME2510 MEDIA DRIVER
4732M: Malcolm Priestley <tvboxspy@gmail.com>
4733L: linux-media@vger.kernel.org
4734W: http://linuxtv.org/
4735Q: http://patchwork.linuxtv.org/project/linux-media/list/
4736S: Maintained
4737F: drivers/media/usb/dvb-usb-v2/lmedm04*
4738
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004739LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004740M: Peter Zijlstra <peterz@infradead.org>
4741M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004742T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004744F: Documentation/lockdep*.txt
4745F: Documentation/lockstat.txt
4746F: include/linux/lockdep.h
4747F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004748
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004749LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004750M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004751L: linux-ntfs-dev@lists.sourceforge.net
4752W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004754F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004755F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756
Joern Engelef6ada32009-11-20 22:17:12 +01004757LogFS
4758M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304759M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004760L: logfs@logfs.org
4761W: logfs.org
4762S: Maintained
4763F: fs/logfs/
4764
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004765LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304766M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4767M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004768M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004769L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004770L: linux-scsi@vger.kernel.org
4771W: http://www.lsilogic.com/support
4772S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004773F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304774F: drivers/scsi/mpt2sas/
4775F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004776
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004778M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779L: linux-scsi@vger.kernel.org
4780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004781F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782
Guenter Roecke5f5c992010-06-25 11:59:54 -07004783LTC4261 HARDWARE MONITOR DRIVER
4784M: Guenter Roeck <linux@roeck-us.net>
4785L: lm-sensors@lm-sensors.org
4786S: Maintained
4787F: Documentation/hwmon/ltc4261
4788F: drivers/hwmon/ltc4261.c
4789
Mike Frysinger81365c32008-10-29 14:01:12 -07004790LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004791M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004792M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004793M: Cyril Hrubis <chrubis@suse.cz>
4794M: Caspar Zhang <caspar@casparzhang.com>
4795M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004796L: ltp-list@lists.sourceforge.net (subscribers-only)
4797W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004798T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004799T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004800S: Maintained
4801
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004802M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004803M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004804L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004805L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4806W: http://www.linux-m32r.org/
4807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004808F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004809
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004811M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812L: linux-m68k@lists.linux-m68k.org
4813W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004814T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004816F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004817F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818
4819M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004820M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004822L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004824F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825
4826M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004827M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828W: http://www.tazenda.demon.co.uk/phil/linux-hp
4829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004830F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004832M88RS2000 MEDIA DRIVER
4833M: Malcolm Priestley <tvboxspy@gmail.com>
4834L: linux-media@vger.kernel.org
4835W: http://linuxtv.org/
4836Q: http://patchwork.linuxtv.org/project/linux-media/list/
4837S: Maintained
4838F: drivers/media/dvb-frontends/m88rs2000*
4839
Jiri Benc64a327a2007-05-05 11:47:08 -07004840MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004841M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004842L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004843W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004844T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4845T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004847F: Documentation/networking/mac80211-injection.txt
4848F: include/net/mac80211.h
4849F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004850
Stefano Brivio1036d862007-12-23 04:46:27 +01004851MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004852M: Stefano Brivio <stefano.brivio@polimi.it>
4853M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004854L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004855W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004856T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4857T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004859F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004860
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004861MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004862M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004863L: netdev@vger.kernel.org
4864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004865F: drivers/net/macvlan.c
4866F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004867
Michael Kerriskfaf16682005-07-31 22:34:47 -07004868MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004869M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004870W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004871L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004872S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004873
stephen hemminger44c14c12012-04-02 12:59:47 +00004874MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4875M: Mirko Lindner <mlindner@marvell.com>
4876M: Stephen Hemminger <shemminger@vyatta.com>
4877L: netdev@vger.kernel.org
4878S: Maintained
4879F: drivers/net/ethernet/marvell/sk*
4880
Stefano Brivio74cda162007-11-19 20:27:46 +01004881MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004882M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004883L: libertas-dev@lists.infradead.org
4884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004885F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004886
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004887MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004888M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004889L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004890S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004891F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004892F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02004894MARVELL MVNETA ETHERNET DRIVER
4895M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4896L: netdev@vger.kernel.org
4897S: Maintained
4898F: drivers/net/ethernet/marvell/mvneta.*
4899
Bing Zhaofcad5842011-07-13 13:11:58 -07004900MARVELL MWIFIEX WIRELESS DRIVER
4901M: Bing Zhao <bzhao@marvell.com>
4902L: linux-wireless@vger.kernel.org
4903S: Maintained
4904F: drivers/net/wireless/mwifiex/
4905
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004906MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004907M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004908L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004909S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004910F: drivers/net/wireless/mwl8k.c
4911
Pierre Ossman2a695672009-03-16 19:52:26 +01004912MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004913M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004914S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004915F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004916
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004918L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004919S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004920F: drivers/video/matrox/matroxfb_*
4921F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922
Guenter Roeckca462082012-06-01 23:28:23 -07004923MAX16065 HARDWARE MONITOR DRIVER
4924M: Guenter Roeck <linux@roeck-us.net>
4925L: lm-sensors@lm-sensors.org
4926S: Maintained
4927F: Documentation/hwmon/max16065
4928F: drivers/hwmon/max16065.c
4929
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004930MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004931M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004932L: lm-sensors@lm-sensors.org
4933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004934F: Documentation/hwmon/max6650
4935F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004936
Joe Perches127c49a2009-04-08 08:34:04 -07004937MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004938M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07004939P: LinuxTV.org Project
4940L: linux-media@vger.kernel.org
4941W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004942Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004943T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07004944S: Maintained
4945F: Documentation/dvb/
4946F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004947F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004948F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004949F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004950F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02004951F: include/uapi/linux/dvb/
4952F: include/uapi/linux/videodev2.h
4953F: include/uapi/linux/media.h
4954F: include/uapi/linux/v4l2-*
4955F: include/uapi/linux/meye.h
4956F: include/uapi/linux/ivtv*
4957F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004958
4959MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004960M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004961L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004962W: http://megaraid.lsilogic.com
4963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004964F: Documentation/scsi/megaraid.txt
4965F: drivers/scsi/megaraid.*
4966F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004967
Amir Vadai2c46c9d2012-12-02 03:49:21 +00004968MELLANOX ETHERNET DRIVER (mlx4_en)
4969M: Amir Vadai <amirv@mellanox.com>
4970L: netdev@vger.kernel.org
4971S: Supported
4972W: http://www.mellanox.com
4973Q: http://patchwork.ozlabs.org/project/netdev/list/
4974F: drivers/net/ethernet/mellanox/mlx4/en_*
4975
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004976MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978W: http://www.linux-mm.org
4979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004980F: include/linux/mm.h
4981F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004982
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004983MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004984M: Johannes Weiner <hannes@cmpxchg.org>
4985M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004986M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004987M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004988L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004989L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004991F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004992F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004993
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004995M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004997W: http://www.linux-mtd.infradead.org/
4998Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004999T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005001F: drivers/mtd/
5002F: include/linux/mtd/
5003F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004
Michal Simekc6375b02009-03-27 14:25:52 +01005005MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005006M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005007L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005008W: http://www.monstr.eu/fdt/
5009T: git git://git.monstr.eu/linux-2.6-microblaze.git
5010S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005011F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012
5013MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005014M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005016F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017
5018MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005019M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005021W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005022T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005023Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005024S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005025F: Documentation/mips/
5026F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005029M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005031F: include/linux/module.h
5032F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033
5034MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005036S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005037F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005038F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005039F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040
Pavel Pisac58ff042007-05-16 01:10:41 +02005041MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005042M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005043L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02005044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005045F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02005046
Jiri Slabyb9705b62008-04-30 00:53:48 -07005047MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005048M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005050F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005051F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005052
Alexey Klimov889b2f82012-11-16 17:43:59 -03005053MR800 AVERMEDIA USB FM RADIO DRIVER
5054M: Alexey Klimov <klimov.linux@gmail.com>
5055L: linux-media@vger.kernel.org
5056T: git git://linuxtv.org/media_tree.git
5057S: Maintained
5058F: drivers/media/radio/radio-mr800.c
5059
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005060MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07005061M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005062L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005064F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005065
Anisse Astier0f1006b2009-12-17 11:28:49 +01005066MSI WMI SUPPORT
5067M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005068L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005069S: Supported
5070F: drivers/platform/x86/msi-wmi.c
5071
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005072MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005073M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005074T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005075S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005076F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005077
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005078MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005079M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005080L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005081T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005083F: drivers/mmc/
5084F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005085
David Brownell15a05802007-08-08 09:12:54 -07005086MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005087S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005088F: drivers/mmc/host/mmc_spi.c
5089F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005090
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005092M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005094F: Documentation/sound/oss/MultiSound
5095F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096
Jiri Slabyd7354102006-12-08 02:38:35 -08005097MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005098S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005099F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005100F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005101
Felipe Balbi550a7372008-07-24 12:27:36 +03005102MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005103M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005104L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005105T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005107F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005108
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005109MXL5007T MEDIA DRIVER
5110M: Michael Krufky <mkrufky@linuxtv.org>
5111L: linux-media@vger.kernel.org
5112W: http://linuxtv.org/
5113W: http://github.com/mkrufky
5114Q: http://patchwork.linuxtv.org/project/linux-media/list/
5115T: git git://linuxtv.org/mkrufky/tuners.git
5116S: Maintained
5117F: drivers/media/tuners/mxl5007t.*
5118
Brice Goglin2d3cf582008-05-17 12:45:36 +02005119MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005120M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005121L: netdev@vger.kernel.org
5122W: http://www.myri.com/scs/download-Myri10GE.html
5123S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005124F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005125
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005127S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005128F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129
Daniel Mack23dc05a2011-05-18 11:28:38 +02005130NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5131M: Daniel Mack <zonque@gmail.com>
5132S: Maintained
5133L: alsa-devel@alsa-project.org
5134W: http://www.native-instruments.com
5135F: sound/usb/caiaq/
5136
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005138M: Petr Vandrovec <petr@vandrovec.name>
5139S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005140F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141
5142NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144L: linux-scsi@vger.kernel.org
5145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005146F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005148NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005149M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005150L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005151W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005152S: Supported
5153F: drivers/infiniband/hw/nes/
5154
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005155NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05005156M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07005157L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005159F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005160
Jon Masonb2f5a052010-07-15 08:47:27 +00005161NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005162M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005163L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005164S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005165F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005166F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005167F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005168
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170P: Harald Welte
5171P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005172M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005173M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005174L: netfilter-devel@vger.kernel.org
5175L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005176L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177W: http://www.netfilter.org/
5178W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005179T: git git://1984.lsi.us.es/nf
5180T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005182F: include/linux/netfilter*
5183F: include/linux/netfilter/
5184F: include/net/netfilter/
5185F: net/*/netfilter.c
5186F: net/*/netfilter/
5187F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188
Paul Moore4cc67732006-09-25 15:57:13 -07005189NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005190M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005191W: http://netlabel.sf.net
5192L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005193S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005194F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005195F: include/net/netlabel.h
5196F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005197
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005199M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005201W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005203F: include/linux/netrom.h
5204F: include/net/netrom.h
5205F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005207NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005208M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005210F: Documentation/blockdev/nbd.txt
5211F: drivers/block/nbd.c
5212F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213
Neil Horman6e436502009-10-05 03:56:55 +00005214NETWORK DROP MONITOR
5215M: Neil Horman <nhorman@tuxdriver.com>
5216L: netdev@vger.kernel.org
5217S: Maintained
5218W: https://fedorahosted.org/dropwatch/
5219F: net/core/drop_monitor.c
5220
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005222M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005223L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005224W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005225Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005226T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5227T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005229F: net/
5230F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005231F: include/linux/in.h
5232F: include/linux/net.h
5233F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234
5235NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005236M: "David S. Miller" <davem@davemloft.net>
5237M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005238M: James Morris <jmorris@namei.org>
5239M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5240M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005241L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005242T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005244F: net/ipv4/
5245F: net/ipv6/
5246F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005247F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248
David S. Miller73b76562012-10-16 14:08:40 -04005249NETWORKING [IPSEC]
5250M: Steffen Klassert <steffen.klassert@secunet.com>
5251M: Herbert Xu <herbert@gondor.apana.org.au>
5252M: "David S. Miller" <davem@davemloft.net>
5253L: netdev@vger.kernel.org
5254T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5255S: Maintained
5256F: net/xfrm/
5257F: net/key/
5258F: net/ipv4/xfrm*
5259F: net/ipv6/xfrm*
5260F: include/uapi/linux/xfrm.h
5261F: include/net/xfrm.h
5262
James Morris10e2ff12007-08-25 14:41:28 -07005263NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005264M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005265L: netdev@vger.kernel.org
5266S: Maintained
5267
John W. Linville29f8f632006-01-18 14:52:48 -08005268NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005269M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005270L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005271Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005272T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005273S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005274F: net/mac80211/
5275F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005276F: net/wireless/
5277F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005278F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005279F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005280F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005281
Joe Perches788873a2009-04-16 09:38:45 +00005282NETWORKING DRIVERS
5283L: netdev@vger.kernel.org
5284W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005285Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005286T: 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
Joe Perches788873a2009-04-16 09:38:45 +00005288S: Odd Fixes
5289F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005290F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005291F: include/linux/netdevice.h
5292F: include/linux/arcdevice.h
5293F: include/linux/etherdevice.h
5294F: include/linux/fcdevice.h
5295F: include/linux/fddidevice.h
5296F: include/linux/hippidevice.h
5297F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005298
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005299NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005300M: Sony Chacko <sony.chacko@qlogic.com>
5301M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005302L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005303W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005304S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005305F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005306
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005307NFC SUBSYSTEM
5308M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5309M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5310M: Samuel Ortiz <sameo@linux.intel.com>
5311L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005312L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005313S: Maintained
5314F: net/nfc/
5315F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005316F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005317F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005318F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005320NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005321M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005322L: linux-nfs@vger.kernel.org
5323W: http://client.linux-nfs.org
5324T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005326F: fs/lockd/
5327F: fs/nfs/
5328F: fs/nfs_common/
5329F: net/sunrpc/
5330F: include/linux/lockd/
5331F: include/linux/nfs*
5332F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333
5334NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005335M: Jan-Pascal van Best <janpascal@vanbest.org>
5336M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005337L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005339F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005341NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005342M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005343L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005344W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005345T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005346S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005347F: Documentation/filesystems/nilfs2.txt
5348F: fs/nilfs2/
5349F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005350
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005352M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005355F: Documentation/scsi/NinjaSCSI.txt
5356F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357
5358NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005359M: GOTO Masanori <gotom@debian.or.jp>
5360M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005363F: Documentation/scsi/NinjaSCSI.txt
5364F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005367M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005369W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005370T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005371S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005372F: Documentation/filesystems/ntfs.txt
5373F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005375NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005376M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005377L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005379F: drivers/video/riva/
5380F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381
Tony Lindgrenf5525782009-05-28 13:23:53 -07005382OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005383M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005384L: linux-omap@vger.kernel.org
5385W: http://www.muru.com/linux/omap/
5386W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005387Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005388T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005389S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005390F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005391F: drivers/i2c/busses/i2c-omap.c
5392F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005393
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005394OMAP DEVICE TREE SUPPORT
5395M: Benoît Cousson <b-cousson@ti.com>
5396M: Tony Lindgren <tony@atomide.com>
5397L: linux-omap@vger.kernel.org
5398L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5399S: Maintained
5400F: arch/arm/boot/dts/*omap*
5401F: arch/arm/boot/dts/*am3*
5402
Tony Lindgrenf5525782009-05-28 13:23:53 -07005403OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005404M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005405L: linux-omap@vger.kernel.org
5406S: Maintained
5407F: arch/arm/*omap*/*clock*
5408
5409OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005410M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005411L: linux-omap@vger.kernel.org
5412S: Maintained
5413F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005414F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005415
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005416OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5417M: Rajendra Nayak <rnayak@ti.com>
5418M: Paul Walmsley <paul@pwsan.com>
5419L: linux-omap@vger.kernel.org
5420S: Maintained
5421F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5422F: arch/arm/mach-omap2/powerdomain44xx.c
5423F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5424F: arch/arm/mach-omap2/clockdomain44xx.c
5425
Tony Lindgrenf5525782009-05-28 13:23:53 -07005426OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005427M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005428M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005429L: alsa-devel@alsa-project.org (subscribers-only)
5430L: linux-omap@vger.kernel.org
5431S: Maintained
5432F: sound/soc/omap/
5433
5434OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005435M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005436L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005437L: linux-omap@vger.kernel.org
5438S: Maintained
5439F: drivers/video/omap/
5440
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005441OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005442M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005443L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005444L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005445S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005446F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005447F: Documentation/arm/OMAP/DSS
5448
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005449OMAP HARDWARE SPINLOCK SUPPORT
5450M: Ohad Ben-Cohen <ohad@wizery.com>
5451L: linux-omap@vger.kernel.org
5452S: Maintained
5453F: drivers/hwspinlock/omap_hwspinlock.c
5454F: arch/arm/mach-omap2/hwspinlock.c
5455
Tony Lindgrenf5525782009-05-28 13:23:53 -07005456OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005457M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005458L: linux-omap@vger.kernel.org
5459S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005460F: drivers/mmc/host/omap.c
5461
5462OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305463M: Venkatraman S <svenkatr@ti.com>
5464L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005465L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305466S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005467F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005468
5469OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005470M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005471S: Maintained
5472F: drivers/char/hw_random/omap-rng.c
5473
Paul Walmsleyf400c822010-12-06 19:08:54 -07005474OMAP HWMOD SUPPORT
5475M: Benoît Cousson <b-cousson@ti.com>
5476M: Paul Walmsley <paul@pwsan.com>
5477L: linux-omap@vger.kernel.org
5478S: Maintained
5479F: arch/arm/mach-omap2/omap_hwmod.c
5480F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5481
5482OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5483M: Benoît Cousson <b-cousson@ti.com>
5484L: linux-omap@vger.kernel.org
5485S: Maintained
5486F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5487
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005488OMAP IMAGE SIGNAL PROCESSOR (ISP)
5489M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5490L: linux-media@vger.kernel.org
5491S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005492F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005493
Tony Lindgrenf5525782009-05-28 13:23:53 -07005494OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005495M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005496L: linux-usb@vger.kernel.org
5497L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005498T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005499S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005500F: drivers/usb/*/*omap*
5501F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005502
Kevin Hilman6d994712012-07-16 10:05:07 -07005503OMAP GPIO DRIVER
5504M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5505M: Kevin Hilman <khilman@ti.com>
5506L: linux-omap@vger.kernel.org
5507S: Maintained
5508F: drivers/gpio/gpio-omap.c
5509
Bob Copeland0ad122d2008-07-25 19:45:18 -07005510OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005511M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005512L: linux-karma-devel@lists.sourceforge.net
5513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005514F: Documentation/filesystems/omfs.txt
5515F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005516
Harald Weltec1986ee2005-11-13 16:06:29 -08005517OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005518M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005520F: drivers/char/pcmcia/cm4000_cs.c
5521F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005522
Harald Welte77c44ab2005-11-13 16:06:26 -08005523OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005524M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005526F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005527
Jonathan Corbet77d51402007-03-22 19:44:17 -03005528OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005529M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005530L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005531T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005532S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005533F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005534
Thomas Gleixner431bca72007-05-02 09:31:35 +02005535ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005536M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005537L: linux-mtd@lists.infradead.org
5538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005539F: drivers/mtd/onenand/
5540F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005541
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005543M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544L: osst-users@lists.sourceforge.net
5545L: linux-scsi@vger.kernel.org
5546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005547F: drivers/scsi/osst*
5548F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005549
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005550OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005551M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005552L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005554F: Documentation/i2c/busses/i2c-ocores
5555F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005556
Grant Likely860c44c2009-10-26 16:49:49 -07005557OPEN FIRMWARE AND FLATTENED DEVICE TREE
5558M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005559M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005560L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005561W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005562T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005563S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005564F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005565F: drivers/of
5566F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005567F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005568K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005569K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005570
Jonas Bonn19f9d392011-06-04 22:00:38 +03005571OPENRISC ARCHITECTURE
5572M: Jonas Bonn <jonas@southpole.se>
5573W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005574L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005575S: Maintained
5576T: git git://openrisc.net/~jonas/linux
5577F: arch/openrisc
5578
Jesse Grossccb13522011-10-25 19:26:31 -07005579OPENVSWITCH
5580M: Jesse Gross <jesse@nicira.com>
5581L: dev@openvswitch.org
5582W: http://openvswitch.org
5583T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5584S: Maintained
5585F: net/openvswitch/
5586
Clemens Ladischaf399172011-01-10 16:32:54 +01005587OPL4 DRIVER
5588M: Clemens Ladisch <clemens@ladisch.de>
5589L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5590T: git git://git.alsa-project.org/alsa-kernel.git
5591S: Maintained
5592F: sound/drivers/opl4/
5593
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005595M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596L: oprofile-list@lists.sf.net
5597S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005598F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005599F: arch/*/oprofile/
5600F: drivers/oprofile/
5601F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005603ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005604M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005605M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005606L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5607W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005608T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005609S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005610F: Documentation/filesystems/ocfs2.txt
5611F: Documentation/filesystems/dlmfs.txt
5612F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005613
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005615L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005616W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005617W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005618S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005619F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005621OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005622M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005623M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005624L: osd-dev@open-osd.org
5625W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005626T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005627S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005628F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005629F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005630F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005631
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005632P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005633M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005634L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005635W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005637F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005638
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005639PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005640M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005641L: netdev@vger.kernel.org
5642S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005643F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005644
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005645PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005646M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005647L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005649F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005650
Steffen Klassert48fc2672010-08-13 10:10:46 -04005651PADATA PARALLEL EXECUTION MECHANISM
5652M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005653L: linux-crypto@vger.kernel.org
5654S: Maintained
5655F: kernel/padata.c
5656F: include/linux/padata.h
5657F: Documentation/padata.txt
5658
Harald Welte709ee532008-09-23 17:46:57 +02005659PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005660M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005661L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005663F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005664
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005665PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005666M: David Howells <dhowells@redhat.com>
5667M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005668L: linux-am33-list@redhat.com (moderated for non-subscribers)
5669W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005671F: Documentation/mn10300/
5672F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005673
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005675L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005676S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005677F: drivers/parport/
5678F: include/linux/parport*.h
5679F: drivers/char/ppdev.c
5680F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005682PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005683M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005684M: Chris Wright <chrisw@sous-sol.org>
5685M: Alok Kataria <akataria@vmware.com>
5686M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005687L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005688S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005689F: Documentation/ia64/paravirt_ops.txt
5690F: arch/*/kernel/paravirt*
5691F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005692
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005694M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005695L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696W: http://www.torque.net/linux-pp.html
5697S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005698F: Documentation/blockdev/paride.txt
5699F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700
5701PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005702M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005703M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005704L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005706Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005707T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005709F: arch/parisc/
5710F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711
Jim Cromie1662d322006-10-06 00:43:59 -07005712PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005713M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005714L: lm-sensors@lm-sensors.org
5715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005716F: Documentation/hwmon/pc87360
5717F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005718
5719PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005720M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005722F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005723
Jean Delvare1ad107f2010-08-14 21:09:00 +02005724PC87427 HARDWARE MONITORING DRIVER
5725M: Jean Delvare <khali@linux-fr.org>
5726L: lm-sensors@lm-sensors.org
5727S: Maintained
5728F: Documentation/hwmon/pc87427
5729F: drivers/hwmon/pc87427.c
5730
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005731PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005732M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005733S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005734F: drivers/leds/leds-pca9532.c
5735F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005736
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005737PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005738M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005739L: linux-i2c@vger.kernel.org
5740S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005741F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005742
Wolfram Sanga1867d32009-09-18 22:45:51 +02005743PCA9564/PCA9665 I2C BUS DRIVER
5744M: Wolfram Sang <w.sang@pengutronix.de>
5745L: linux-i2c@vger.kernel.org
5746S: Maintained
5747F: drivers/i2c/algos/i2c-algo-pca.c
5748F: drivers/i2c/busses/i2c-pca-*
5749F: include/linux/i2c-algo-pca.h
5750F: include/linux/i2c-pca-platform.h
5751
Khalid Aziz3971dae2012-04-12 12:49:13 -07005752PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005753M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005754S: Maintained
5755F: drivers/firmware/pcdp.*
5756
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005757PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005758M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005759L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005760S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005761F: Documentation/PCI/pci-error-recovery.txt
5762F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005763
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005765M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005766L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005767Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005768T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005770F: Documentation/PCI/
5771F: drivers/pci/
5772F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005775P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005776L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005777W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005778T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005780F: Documentation/pcmcia/
5781F: drivers/pcmcia/
5782F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783
5784PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005785M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005786L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005787S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005788F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789
Steffen Klassert48fc2672010-08-13 10:10:46 -04005790PCRYPT PARALLEL CRYPTO ENGINE
5791M: Steffen Klassert <steffen.klassert@secunet.com>
5792L: linux-crypto@vger.kernel.org
5793S: Maintained
5794F: crypto/pcrypt.c
5795F: include/crypto/pcrypt.h
5796
Tejun Heoe72df0b2010-12-10 17:02:49 +01005797PER-CPU MEMORY ALLOCATOR
5798M: Tejun Heo <tj@kernel.org>
5799M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005800T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5801S: Maintained
5802F: include/linux/percpu*.h
5803F: mm/percpu*.c
5804F: arch/*/include/asm/percpu.h
5805
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005806PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005807M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005809F: include/linux/delayacct.h
5810F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005811
Ingo Molnar57c0c152009-09-21 12:20:38 +02005812PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005813M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5814M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005815M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005816M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005817T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005818S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005819F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005820F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005821F: arch/*/kernel/perf_event*.c
5822F: arch/*/kernel/*/perf_event*.c
5823F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005824F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005825F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005826F: arch/*/kernel/perf_callchain.c
5827F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005828
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005829PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005830M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005831L: linux-abi-devel@lists.sourceforge.net
5832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005833F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005834
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005835PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005836M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005837S: Supported
5838F: Documentation/networking/phonet.txt
5839F: include/linux/phonet.h
5840F: include/net/phonet/
5841F: net/phonet/
5842
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005844M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845L: linux-mtd@lists.infradead.org
5846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005847F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848
Bruno Prémontefdbb102012-07-30 21:39:03 +02005849PICOLCD HID DRIVER
5850M: Bruno Prémont <bonbons@linux-vserver.org>
5851L: linux-input@vger.kernel.org
5852S: Maintained
5853F: drivers/hid/hid-picolcd*
5854
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005855PICOXCELL SUPPORT
5856M: Jamie Iles <jamie@jamieiles.com>
5857L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5858T: git git://github.com/jamieiles/linux-2.6-ji.git
5859S: Supported
5860F: arch/arm/mach-picoxcell
5861F: drivers/*/picoxcell*
5862F: drivers/*/*/picoxcell*
5863
Linus Walleij2744e8a2011-05-02 20:50:54 +02005864PIN CONTROL SUBSYSTEM
5865M: Linus Walleij <linus.walleij@linaro.org>
5866S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005867F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005868F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005869
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02005870PIN CONTROLLER - ATMEL AT91
5871M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
5872L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5873S: Maintained
5874F: drivers/pinctrl/pinctrl-at91.c
5875
Viresh Kumardeda8282012-03-28 22:27:07 +05305876PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005877M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305878L: spear-devel@list.st.com
5879L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5880W: http://www.st.com/spear
5881S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005882F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305883
Peter Osterlund249a6772005-09-27 21:45:30 -07005884PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005885M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005887F: drivers/block/pktcdvd.c
5888F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005889
GuanXuetaob31d8272011-01-16 00:35:49 +08005890PKUNITY SOC DRIVERS
5891M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5892W: http://mprc.pku.edu.cn/~guanxuetao/linux
5893S: Maintained
5894T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5895F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005896F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005897F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005898F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005899
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005900PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005901M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005902L: lm-sensors@lm-sensors.org
5903W: http://www.lm-sensors.org/
5904W: http://www.roeck-us.net/linux/drivers/
5905T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5906S: Maintained
5907F: Documentation/hwmon/pmbus
5908F: drivers/hwmon/pmbus/
5909F: include/linux/i2c/pmbus.h
5910
Anil Ravindranath89a36812009-08-25 17:35:18 -07005911PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005912M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005913L: linux-scsi@vger.kernel.org
5914W: http://www.pmc-sierra.com/
5915S: Supported
5916F: drivers/scsi/pmcraid.*
5917
jack wangdbf9bfe2009-10-14 16:19:21 +08005918PMC SIERRA PM8001 DRIVER
5919M: jack_wang@usish.com
5920M: lindar_liu@usish.com
5921L: linux-scsi@vger.kernel.org
5922S: Supported
5923F: drivers/scsi/pm8001/
5924
Linus Torvalds1da177e2005-04-16 15:20:36 -07005925POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005926M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005927T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005929F: fs/timerfd.c
5930F: include/linux/timer*
5931F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932
Anton Vorontsov3be86142007-07-15 04:43:36 +04005933POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005934M: Anton Vorontsov <cbou@mail.ru>
5935M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005936T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005938F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005939F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005940
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005942M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005943M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005945F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005946
Vitaly Wool999445d2007-01-04 13:07:03 +01005947PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005948M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005949L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005951F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005952
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005954M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005955L: linux-ppp@vger.kernel.org
5956S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005957F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958
5959PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005960M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005962F: net/atm/pppoatm.c
5963F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964
5965PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005966M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005968F: drivers/net/ppp/pppoe.c
5969F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970
James Chapmana6d23702007-06-27 15:53:17 -07005971PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005972M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005973S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005974F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005975F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005976
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005977PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005978M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005979W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5980L: linuxpps@ml.enneenne.com (subscribers-only)
5981S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005982F: Documentation/pps/
5983F: drivers/pps/
5984F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005985
Harry Wei71a6d0a2011-05-11 15:13:33 -07005986PPTP DRIVER
5987M: Dmitry Kozlov <xeb@mail.ru>
5988L: netdev@vger.kernel.org
5989S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005990F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005991W: http://sourceforge.net/projects/accel-pptp
5992
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005994M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995L: kpreempt-tech@lists.sourceforge.net
5996W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5997S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005998F: Documentation/preempt-locking.txt
5999F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000
6001PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006002M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006003L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006004W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006005S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006006F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006008PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006009M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006010L: linux-ide@vger.kernel.org
6011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006012F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006013
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006014PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006015M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006016L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006017L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006018S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006019F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006020
Geoff Levandf58a9d12006-11-23 00:46:51 +01006021PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006022M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006023L: linuxppc-dev@lists.ozlabs.org
6024L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006026F: arch/powerpc/boot/ps3*
6027F: arch/powerpc/include/asm/lv1call.h
6028F: arch/powerpc/include/asm/ps3*.h
6029F: arch/powerpc/platforms/ps3/
6030F: drivers/*/ps3*
6031F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006032F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006033F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006034F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006035
Jim Pariscffb4add2009-01-06 11:32:10 +00006036PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006037M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006038L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006039S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006040F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006041
Anton Vorontsov8defe592012-08-03 18:07:20 -07006042PSTORE FILESYSTEM
6043M: Anton Vorontsov <cbouatmailru@gmail.com>
6044M: Colin Cross <ccross@android.com>
6045M: Kees Cook <keescook@chromium.org>
6046M: Tony Luck <tony.luck@intel.com>
6047S: Maintained
6048T: git git://git.infradead.org/users/cbou/linux-pstore.git
6049F: fs/pstore/
6050F: include/linux/pstore*
6051F: drivers/firmware/efivars.c
6052F: drivers/acpi/apei/erst.c
6053
Richard Cochran7fbc4152012-03-10 01:55:53 +00006054PTP HARDWARE CLOCK SUPPORT
6055M: Richard Cochran <richardcochran@gmail.com>
6056S: Maintained
6057W: http://linuxptp.sourceforge.net/
6058F: Documentation/ABI/testing/sysfs-ptp
6059F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006060F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006061F: drivers/net/phy/dp83640*
6062F: drivers/ptp/*
6063F: include/linux/ptp_cl*
6064
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006065PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006066M: Roland McGrath <roland@redhat.com>
6067M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006068S: Maintained
6069F: include/asm-generic/syscall.h
6070F: include/linux/ptrace.h
6071F: include/linux/regset.h
6072F: include/linux/tracehook.h
6073F: kernel/ptrace.c
6074
Michael Krufky83202042006-07-03 00:24:18 -07006075PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006076M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006077L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006078L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006079W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006080T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006082F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006083F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006084
Hans de Goede39532e62012-11-04 17:05:59 -03006085PWC WEBCAM DRIVER
6086M: Hans de Goede <hdegoede@redhat.com>
6087L: linux-media@vger.kernel.org
6088T: git git://linuxtv.org/media_tree.git
6089S: Maintained
6090F: drivers/media/usb/pwc/*
6091
Thierry Reding200efed2012-03-27 13:16:18 +02006092PWM SUBSYSTEM
6093M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006094L: linux-kernel@vger.kernel.org
6095S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006096W: http://gitorious.org/linux-pwm
6097T: git git://gitorious.org/linux-pwm/linux-pwm.git
6098F: Documentation/pwm.txt
6099F: Documentation/devicetree/bindings/pwm/
6100F: include/linux/pwm.h
6101F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006102F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006103F: drivers/video/backlight/pwm_bl.c
6104F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006105
Eric Miao30ec2612008-06-12 15:21:41 -07006106PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006107M: Eric Miao <eric.y.miao@gmail.com>
6108M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006109M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006110L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006111T: git git://github.com/hzhuang1/linux.git
6112T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006114F: arch/arm/mach-pxa/
6115F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006116F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006117F: drivers/usb/gadget/pxa2*
6118F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006119F: sound/arm/pxa*
6120F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006122MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006123M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006124M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006125L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006126T: git git://github.com/hzhuang1/linux.git
6127T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006128S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006129F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006130
Pierre Ossman272f1332007-05-14 21:25:26 +02006131PXA MMCI DRIVER
6132S: Orphan
6133
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006134PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006135M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006136L: rtc-linux@googlegroups.com
6137S: Maintained
6138
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006139QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006140M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006141L: linux-rdma@vger.kernel.org
6142S: Supported
6143F: drivers/infiniband/hw/qib/
6144
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006145QLOGIC QLA1280 SCSI DRIVER
6146M: Michael Reed <mdr@sgi.com>
6147L: linux-scsi@vger.kernel.org
6148S: Maintained
6149F: drivers/scsi/qla1280.[ch]
6150
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006152M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006153M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154L: linux-scsi@vger.kernel.org
6155S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006156F: Documentation/scsi/LICENSE.qla2xxx
6157F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158
Ravi Anand883c98f2010-04-28 11:45:49 +05306159QLOGIC QLA4XXX iSCSI DRIVER
6160M: Ravi Anand <ravi.anand@qlogic.com>
6161M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6162M: iscsi-driver@qlogic.com
6163L: linux-scsi@vger.kernel.org
6164S: Supported
6165F: drivers/scsi/qla4xxx/
6166
Ron Mercer5a4faa872006-07-25 00:40:21 -07006167QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006168M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006169M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006170M: linux-driver@qlogic.com
6171L: netdev@vger.kernel.org
6172S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006173F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006174F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006175
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006176QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006177M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006178M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006179M: linux-driver@qlogic.com
6180L: netdev@vger.kernel.org
6181S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006182F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006183
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006184QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006185M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006186M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006187M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006188L: netdev@vger.kernel.org
6189S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006190F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006191
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006193M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006194W: http://www.alarsen.net/linux/qnx4fs/
6195S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006196F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07006197F: include/linux/qnx4_fs.h
6198F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199
Antti Palosaari91952bc2012-10-01 12:28:46 -03006200QT1010 MEDIA DRIVER
6201M: Antti Palosaari <crope@iki.fi>
6202L: linux-media@vger.kernel.org
6203W: http://linuxtv.org/
6204W: http://palosaari.fi/linux/
6205Q: http://patchwork.linuxtv.org/project/linux-media/list/
6206T: git git://linuxtv.org/anttip/media_tree.git
6207S: Maintained
6208F: drivers/media/tuners/qt1010*
6209
Richard Kuo4f4567c2011-10-31 18:56:38 -05006210QUALCOMM HEXAGON ARCHITECTURE
6211M: Richard Kuo <rkuo@codeaurora.org>
6212L: linux-hexagon@vger.kernel.org
6213S: Supported
6214F: arch/hexagon/
6215
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006216RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006217M: Yehuda Sadeh <yehuda@inktank.com>
6218M: Sage Weil <sage@inktank.com>
6219M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006220M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006221W: http://ceph.com/
6222T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006223S: Supported
6224F: drivers/block/rbd.c
6225F: drivers/block/rbd_types.h
6226
Linus Torvalds1da177e2005-04-16 15:20:36 -07006227RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006228M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006229L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006231F: drivers/video/aty/radeon*
6232F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233
Hans de Goedec6c9b342012-11-04 17:03:58 -03006234RADIOSHARK RADIO DRIVER
6235M: Hans de Goede <hdegoede@redhat.com>
6236L: linux-media@vger.kernel.org
6237T: git git://linuxtv.org/media_tree.git
6238S: Maintained
6239F: drivers/media/radio/radio-shark.c
6240
6241RADIOSHARK2 RADIO DRIVER
6242M: Hans de Goede <hdegoede@redhat.com>
6243L: linux-media@vger.kernel.org
6244T: git git://linuxtv.org/media_tree.git
6245S: Maintained
6246F: drivers/media/radio/radio-shark2.c
6247F: drivers/media/radio/radio-tea5777.c
6248
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006250M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006251L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006253F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006254
Randy Dunlape7839f22008-10-12 16:11:45 -07006255RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006256P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006257M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006258M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006259M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006260L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006261L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006262W: http://rt2x00.serialmonkey.com/
6263S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006264T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006265F: drivers/net/wireless/rt2x00/
6266
Nick Piggin9db55792008-02-08 04:19:49 -08006267RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006268M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006270F: Documentation/blockdev/ramdisk.txt
6271F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006272
Matt Mackall9e95ce22005-04-16 15:25:56 -07006273RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006274M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006276F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006277
Matt Porter394b7012005-11-07 01:00:15 -08006278RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006279M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006280M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006282F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006283
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006284RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006285L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006286S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006287F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006288
6289RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006290M: Josh Triplett <josh@freedesktop.org>
6291M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006292S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006293T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006294F: Documentation/RCU/torture.txt
6295F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006296
Florian Fainellic1f766b2008-02-06 22:39:44 +01006297RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006298M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006299S: Maintained
6300
Florian Fainellidb17f392007-12-19 11:30:30 +01006301RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006302M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006303L: netdev@vger.kernel.org
6304S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006305F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006306
Andy Grovera09ed662009-02-24 15:30:41 +00006307RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006308M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006309L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006310S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006311F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006312
Josh Triplett595182b2006-10-04 02:17:21 -07006313READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006314M: Dipankar Sarma <dipankar@in.ibm.com>
6315M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006316W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006317S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006318T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006319F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006320X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006321F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006322F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006323X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006324
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006325REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006326M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006327L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006328Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006330F: Documentation/rtc.txt
6331F: drivers/rtc/
6332F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006333
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006335L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006336S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006337F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006338
Mark Brownb83a3132011-05-11 19:59:58 +02006339REGISTER MAP ABSTRACTION
6340M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6341T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6342S: Supported
6343F: drivers/base/regmap/
6344F: include/linux/regmap.h
6345
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006346REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6347M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006348T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006349S: Maintained
6350F: drivers/remoteproc/
6351F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006352F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006353
Ivo van Doorne08976452008-04-12 19:23:55 +02006354RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006355M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006356L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006357W: http://wireless.kernel.org/
6358T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6359T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006360S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006361F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006362F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006363
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006364RICOH SMARTMEDIA/XD DRIVER
6365M: Maxim Levitsky <maximlevitsky@gmail.com>
6366S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006367F: drivers/mtd/nand/r852.c
6368F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006369
Maxim Levitsky92634122011-03-25 01:56:59 -07006370RICOH R5C592 MEMORYSTICK DRIVER
6371M: Maxim Levitsky <maximlevitsky@gmail.com>
6372S: Maintained
6373F: drivers/memstick/host/r592.*
6374
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375ROCKETPORT DRIVER
6376P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006377W: http://www.comtrol.com
6378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006379F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006380F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381
6382ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006383M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006385W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006387F: include/linux/rose.h
6388F: include/net/rose.h
6389F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390
Antti Palosaari91952bc2012-10-01 12:28:46 -03006391RTL2830 MEDIA DRIVER
6392M: Antti Palosaari <crope@iki.fi>
6393L: linux-media@vger.kernel.org
6394W: http://linuxtv.org/
6395W: http://palosaari.fi/linux/
6396Q: http://patchwork.linuxtv.org/project/linux-media/list/
6397T: git git://linuxtv.org/anttip/media_tree.git
6398S: Maintained
6399F: drivers/media/dvb-frontends/rtl2830*
6400
Larry Finger59840482008-11-12 17:13:09 -06006401RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006402M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006403L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006404W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006405T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006406S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006407F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006408
Larry Finger59840482008-11-12 17:13:09 -06006409RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006410M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006411M: Hin-Tak Leung <htl10@users.sourceforge.net>
6412M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006413L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006414W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006415T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006416S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006417F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006418
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006419RTL8192CE WIRELESS DRIVER
6420M: Larry Finger <Larry.Finger@lwfinger.net>
6421M: Chaoming Li <chaoming_li@realsil.com.cn>
6422L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006423W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006424T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6425S: Maintained
6426F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006427F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006428
6429S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006430M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006431L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006433F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006434
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435S390
Joe Perches8b58be82009-07-29 15:04:30 -07006436M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6437M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006439L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006440W: http://www.ibm.com/developerworks/linux/linux390/
6441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006442F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006443F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006444F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006445F: Documentation/s390/
6446F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006447
6448S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006449M: Ursula Braun <ursula.braun@de.ibm.com>
6450M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006451M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006452L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006453W: http://www.ibm.com/developerworks/linux/linux390/
6454S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006455F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006456
Felix Beckfeed9b62009-03-26 15:24:23 +01006457S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006458M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006459M: linux390@de.ibm.com
6460L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006461W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006462S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006463F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006464
Heiko Carstens5238da42006-02-11 17:56:01 -08006465S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006466M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006467M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006468L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006469W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006470S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006471F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006472
Ursula Braundd96df22007-09-19 13:09:02 +02006473S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006474M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006475M: linux390@de.ibm.com
6476L: linux-s390@vger.kernel.org
6477W: http://www.ibm.com/developerworks/linux/linux390/
6478S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006479F: drivers/s390/net/*iucv*
6480F: include/net/iucv/
6481F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006482
Ben Dooks4dde7f72008-06-30 22:40:38 +01006483S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006484M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006485L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006486S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006487F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006488
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006489SAA7134 VIDEO4LINUX DRIVER
6490M: Mauro Carvalho Chehab <mchehab@redhat.com>
6491L: linux-media@vger.kernel.org
6492W: http://linuxtv.org
6493T: git git://linuxtv.org/media_tree.git
6494S: Odd fixes
6495F: Documentation/video4linux/saa7134/
6496F: drivers/media/pci/saa7134/
6497
Linus Torvalds1da177e2005-04-16 15:20:36 -07006498SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006499M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006500L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006501T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502W: http://www.mihu.de/linux/saa7146
6503S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006504F: drivers/media/common/saa7146/
6505F: drivers/media/pci/saa7146/
6506F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006507
Corentin Chary92304a42011-12-05 12:38:35 -05006508SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006509M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006510L: platform-driver-x86@vger.kernel.org
6511S: Maintained
6512F: drivers/platform/x86/samsung-laptop.c
6513
Mark Brown4a109cc2010-09-24 10:50:46 +01006514SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006515M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006516L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6517S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006518F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006519
Jingoo Han0d89a282011-12-19 11:09:35 +09006520SAMSUNG FRAMEBUFFER DRIVER
6521M: Jingoo Han <jg1.han@samsung.com>
6522L: linux-fbdev@vger.kernel.org
6523S: Maintained
6524F: drivers/video/s3c-fb.c
6525
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006526SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6527M: Sangbeom Kim <sbkim73@samsung.com>
6528L: linux-kernel@vger.kernel.org
6529S: Supported
6530F: drivers/mfd/sec*.c
6531F: drivers/regulator/s2m*.c
6532F: drivers/regulator/s5m*.c
6533F: drivers/rtc/rtc-sec.c
6534F: include/linux/mfd/samsung/
6535
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006536SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6537M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6538L: linux-media@vger.kernel.org
6539L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6540S: Maintained
6541F: drivers/media/platform/s3c-camif/
6542F: include/media/s3c_camif.h
6543
Alan Coxca749e22011-03-18 13:56:14 +00006544SERIAL DRIVERS
6545M: Alan Cox <alan@linux.intel.com>
6546L: linux-serial@vger.kernel.org
6547S: Maintained
6548F: drivers/tty/serial
6549
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306550SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006551M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306552S: Maintained
6553F: include/linux/dw_dmac.h
6554F: drivers/dma/dw_dmac_regs.h
6555F: drivers/dma/dw_dmac.c
6556
Thomas Gleixner88606e82010-12-14 21:37:13 +01006557TIMEKEEPING, NTP
6558M: John Stultz <johnstul@us.ibm.com>
6559M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006560T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006561S: Supported
6562F: include/linux/clocksource.h
6563F: include/linux/time.h
6564F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006565F: kernel/time/clocksource.c
6566F: kernel/time/time*.c
6567F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006568F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006569
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006570TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006571M: Huang Shijie <shijie8@gmail.com>
6572M: Kang Yong <kangyong@telegent.com>
6573M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006574S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006575F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006576
Linus Torvalds1da177e2005-04-16 15:20:36 -07006577SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006578M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006580F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581
6582SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006583M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006584M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006585T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006586S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006587F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006588F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006589
Chen Liqin6bcf6732009-06-13 15:24:33 +08006590SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006591M: Chen Liqin <liqin.chen@sunplusct.com>
6592M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006593W: http://www.sunplusct.com
6594S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006595F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006596
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006598M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006599L: linux-scsi@vger.kernel.org
6600W: http://www.kernel.dk
6601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006602F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603
Roland Dreierfb50a832010-10-07 09:54:53 -07006604SCSI RDMA PROTOCOL (SRP) INITIATOR
6605M: David Dillow <dillowda@ornl.gov>
6606L: linux-rdma@vger.kernel.org
6607S: Supported
6608W: http://www.openfabrics.org
6609Q: http://patchwork.kernel.org/project/linux-rdma/list/
6610T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6611F: drivers/infiniband/ulp/srp/
6612F: include/scsi/srp.h
6613
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006615M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616L: linux-scsi@vger.kernel.org
6617W: http://www.torque.net/sg
6618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006619F: drivers/scsi/sg.c
6620F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621
6622SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006623M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006625T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6626T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6627T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006629F: drivers/scsi/
6630F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006631
6632SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006633M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634L: linux-scsi@vger.kernel.org
6635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006636F: Documentation/scsi/st.txt
6637F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638
6639SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006640M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006641M: Sridhar Samudrala <sri@us.ibm.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006642M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006643L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006644W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006646F: Documentation/networking/sctp.txt
6647F: include/linux/sctp.h
6648F: include/net/sctp/
6649F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650
6651SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006652M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006653S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006654F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006655F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006656F: drivers/watchdog/scx200_wdt.c
6657F: drivers/i2c/busses/scx200*
6658F: drivers/mtd/maps/scx200_docflash.c
6659F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006660
6661SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006662M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006664F: drivers/char/scx200_gpio.c
6665F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006666
6667SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006668M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006670F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006671
Sascha Sommer6a369132008-07-15 14:21:29 +02006672SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006673M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006674L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006676F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006677
Randy Dunlape7839f22008-10-12 16:11:45 -07006678SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006679M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006680L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006681T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6682S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006683F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006684F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006685
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006686SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006687M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006688L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006689L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006691F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006692
Ben Dooks0d1bb412009-06-14 13:52:37 +01006693SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006694M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006695L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006696S: Maintained
6697F: drivers/mmc/host/sdhci-s3c.c
6698
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006699SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006700M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006701L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006702L: linux-mmc@vger.kernel.org
6703S: Maintained
6704F: drivers/mmc/host/sdhci-spear.c
6705
James Morris8711cca2008-12-04 03:19:45 +11006706SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006707M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006708L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006709T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006710W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006711S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006712F: security/
James Morris8711cca2008-12-04 03:19:45 +11006713
Linus Torvalds1da177e2005-04-16 15:20:36 -07006714SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006715M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006716S: Supported
6717
6718SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006719M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006720M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006721M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006722L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006723W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006724T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006726F: include/linux/selinux*
6727F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006728F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006729
John Johansenc1c124e2010-07-29 14:48:09 -07006730APPARMOR SECURITY MODULE
6731M: John Johansen <john.johansen@canonical.com>
6732L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6733W: apparmor.wiki.kernel.org
6734T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6735S: Supported
6736F: security/apparmor/
6737
Jiri Slabycef2cf02007-05-08 00:31:45 -07006738SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006739M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006741F: drivers/misc/phantom.c
6742F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006743
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006744SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006745M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006746L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006747T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006749F: drivers/ata/
6750F: include/linux/ata.h
6751F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006752
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306753SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006754M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006755L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006756W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006757S: Supported
6758F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306759
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006760SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006761M: Sathya Perla <sathya.perla@emulex.com>
6762M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6763M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006764L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006765W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006766S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006767F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006768
Ben Hutchings8ceee662008-04-27 12:55:59 +01006769SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006770M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006771M: Ben Hutchings <bhutchings@solarflare.com>
6772L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006773S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006774F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006775
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006776SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006777M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006779F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006780
6781SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006782M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006783L: linux-ia64@vger.kernel.org
6784S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006785F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006786F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006787F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006788
Linus Torvalds1da177e2005-04-16 15:20:36 -07006789SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006790M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006791L: linux-visws-devel@lists.sf.net
6792W: http://linux-visws.sf.net
6793S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006794F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006795
Jack Steiner75312612008-08-15 00:40:42 -07006796SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006797M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006799F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006800
Len Brown6349d992009-08-14 15:07:14 -04006801SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006802M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006803L: sfi-devel@simplefirmware.org
6804W: http://simplefirmware.org/
6805T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006806S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006807F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006808F: drivers/sfi/
6809F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006810
Linus Torvalds1da177e2005-04-16 15:20:36 -07006811SIMTEC EB110ATX (Chalice CATS)
6812P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006813P: Vincent Sanders <vince@simtec.co.uk>
6814M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006815W: http://www.simtec.co.uk/products/EB110ATX/
6816S: Supported
6817
6818SIMTEC EB2410ITX (BAST)
6819P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006820P: Vincent Sanders <vince@simtec.co.uk>
6821M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006822W: http://www.simtec.co.uk/products/EB2410ITX/
6823S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006824F: arch/arm/mach-s3c2410/mach-bast.c
6825F: arch/arm/mach-s3c2410/bast-ide.c
6826F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006827
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006828TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006829M: Sekhar Nori <nsekhar@ti.com>
6830M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306831L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306832T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006833Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006834S: Supported
6835F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006836F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006837
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03006838TI DAVINCI SERIES MEDIA DRIVER
6839M: Manjunath Hadli <manjunath.hadli@ti.com>
6840M: Prabhakar Lad <prabhakar.lad@ti.com>
6841L: linux-media@vger.kernel.org
6842L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
6843W: http://linuxtv.org/
6844Q: http://patchwork.linuxtv.org/project/linux-media/list/
6845T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
6846S: Supported
6847F: drivers/media/platform/davinci/
6848F: include/media/davinci/
6849
Francois Romieu92aab3c2005-07-30 13:11:18 +02006850SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006851M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006852L: netdev@vger.kernel.org
6853S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006854F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006855
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006857M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006858W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006859L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006860S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006861F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006862
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006863SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006864M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006865L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006867F: Documentation/i2c/busses/i2c-sis96x
6868F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006869
Linus Torvalds1da177e2005-04-16 15:20:36 -07006870SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006871M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006872W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006874F: Documentation/fb/sisfb.txt
6875F: drivers/video/sis/
6876F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877
6878SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006879M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880W: http://www.winischhofer.at/linuxsisusbvga.shtml
6881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006882F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006883
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006884SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006885M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006886M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006887M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006888L: linux-mm@kvack.org
6889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006890F: include/linux/sl?b*.h
6891F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006892
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006893SLEEPABLE READ-COPY UPDATE (SRCU)
6894M: Lai Jiangshan <laijs@cn.fujitsu.com>
6895M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6896W: http://www.rdrop.com/users/paulmck/RCU/
6897S: Supported
6898T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6899F: include/linux/srcu*
6900F: kernel/srcu*
6901
Casey Schaufler66372842012-05-23 18:34:52 -07006902SMACK SECURITY MODULE
6903M: Casey Schaufler <casey@schaufler-ca.com>
6904L: linux-security-module@vger.kernel.org
6905W: http://schaufler-ca.com
6906T: git git://git.gitorious.org/smack-next/kernel.git
6907S: Maintained
6908F: Documentation/security/Smack.txt
6909F: security/smack/
6910
Linus Torvalds1da177e2005-04-16 15:20:36 -07006911SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006912M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006913S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006914F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006915
Sakari Ailuse8e31622012-11-12 18:14:39 -03006916SMIA AND SMIA++ IMAGE SENSOR DRIVER
6917M: Sakari Ailus <sakari.ailus@iki.fi>
6918L: linux-media@vger.kernel.org
6919S: Maintained
6920F: drivers/media/i2c/smiapp
6921F: include/media/smiapp.h
6922F: drivers/media/i2c/smiapp-pll.c
6923F: drivers/media/i2c/smiapp-pll.h
6924
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006925SMM665 HARDWARE MONITOR DRIVER
6926M: Guenter Roeck <linux@roeck-us.net>
6927L: lm-sensors@lm-sensors.org
6928S: Maintained
6929F: Documentation/hwmon/smm665
6930F: drivers/hwmon/smm665.c
6931
Steve Glendinning9df73052010-08-14 21:08:54 +02006932SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006933M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006934L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006935S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006936F: Documentation/hwmon/emc2103
6937F: drivers/hwmon/emc2103.c
6938
Hans de Goedea98d5062011-03-21 17:59:36 +01006939SMSC SCH5627 HARDWARE MONITOR DRIVER
6940M: Hans de Goede <hdegoede@redhat.com>
6941L: lm-sensors@lm-sensors.org
6942S: Supported
6943F: Documentation/hwmon/sch5627
6944F: drivers/hwmon/sch5627.c
6945
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006946SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006947M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006948L: lm-sensors@lm-sensors.org
6949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006950F: Documentation/hwmon/smsc47b397
6951F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006952
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006953SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006954M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006955L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006957F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006958F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006959
Steve Glendinning2cb37722008-12-11 20:54:30 -08006960SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006961M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006962L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006963S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006964F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006965
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006966SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006967M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006968L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006969S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006970F: drivers/video/smscufx.c
6971
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006972SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006973M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006974L: linux-altix@sgi.com
6975L: linux-ia64@vger.kernel.org
6976W: http://www.sgi.com/altix
6977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006978F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006979
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006980SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006981M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006982L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006983T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006984S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006985F: include/media/soc*
6986F: drivers/media/i2c/soc_camera/
6987F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006988
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006989SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006990M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006992F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006993
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006995M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006996L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006997S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006998F: drivers/md/
6999F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007000
Linus Torvalds1da177e2005-04-16 15:20:36 -07007001SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007002M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007003L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007004S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007005F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007006
Michael Buesch61e115a2007-09-18 15:12:50 -04007007SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007008M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007009L: netdev@vger.kernel.org
7010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007011F: drivers/ssb/
7012F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007013
Linus Torvalds1da177e2005-04-16 15:20:36 -07007014SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007015M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007016L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007017W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007019F: Documentation/laptops/sony-laptop.txt
7020F: drivers/char/sonypi.c
7021F: drivers/platform/x86/sony-laptop.c
7022F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007023
Alex Dubovbaf85322008-02-09 10:20:54 -08007024SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007025M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007026W: http://tifmxx.berlios.de/
7027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007028F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007029
Linus Torvalds1da177e2005-04-16 15:20:36 -07007030SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007031M: Jaroslav Kysela <perex@perex.cz>
7032M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007033L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007034W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007035T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007036T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007037S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007038F: Documentation/sound/
7039F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007040F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007041
Mark Brownbd903bd2008-11-19 19:16:05 +00007042SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01007043M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007044M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007045T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007046L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007047W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007048S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007049F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007050F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007051
Sam Ravnborg473321f2009-01-04 15:47:49 -08007052SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007053M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007054L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007055Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007056T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7057T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007059F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007060F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007061
David S. Miller6404fcc2010-03-16 01:00:17 -07007062SPARC SERIAL DRIVERS
7063M: "David S. Miller" <davem@davemloft.net>
7064L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007065T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7066T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007067S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007068F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007069F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007070F: drivers/tty/serial/sunhv.c
7071F: drivers/tty/serial/sunsab.c
7072F: drivers/tty/serial/sunsab.h
7073F: drivers/tty/serial/sunsu.c
7074F: drivers/tty/serial/sunzilog.c
7075F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007076
Christopher Li389325b2012-04-05 14:25:14 -07007077SPARSE CHECKER
7078M: "Christopher Li" <sparse@chrisli.org>
7079L: linux-sparse@vger.kernel.org
7080W: https://sparse.wiki.kernel.org/
7081T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7082T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7083S: Maintained
7084F: include/linux/compiler.h
7085
viresh kumarfc0c1952010-04-01 12:31:21 +01007086SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007087M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307088M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007089L: spear-devel@list.st.com
7090L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007091W: http://www.st.com/spear
7092S: Maintained
7093F: arch/arm/plat-spear/
7094
Viresh Kumar71e09a92012-04-20 22:39:48 +05307095SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007096M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307097M: Shiraz Hashim <shiraz.hashim@st.com>
7098L: spear-devel@list.st.com
7099L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7100W: http://www.st.com/spear
7101S: Maintained
7102F: arch/arm/mach-spear13xx/
7103
viresh kumarfc0c1952010-04-01 12:31:21 +01007104SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007105M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307106M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007107L: spear-devel@list.st.com
7108L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007109W: http://www.st.com/spear
7110S: Maintained
7111F: arch/arm/mach-spear3xx/
7112
7113SPEAR6XX MACHINE SUPPORT
7114M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307115M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007116M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007117L: spear-devel@list.st.com
7118L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007119W: http://www.st.com/spear
7120S: Maintained
7121F: arch/arm/mach-spear6xx/
7122
7123SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007124M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007125L: spear-devel@list.st.com
7126L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007127W: http://www.st.com/spear
7128S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307129F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007130
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007131SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007132M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007133L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007134Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007135T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007137F: Documentation/spi/
7138F: drivers/spi/
7139F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007140
Jim Lewis2752e402006-09-29 02:01:19 -07007141SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007142M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7143M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007144L: netdev@vger.kernel.org
7145S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007146F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007147F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007148
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007149SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007150M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007151L: linuxppc-dev@lists.ozlabs.org
7152L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007153W: http://www.ibm.com/developerworks/power/cell/
7154S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007155F: Documentation/filesystems/spufs.txt
7156F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007157
Phillip Lougherfc555842009-01-05 08:46:29 +00007158SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007159M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007160L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7161W: http://squashfs.org.uk
7162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007163F: Documentation/filesystems/squashfs.txt
7164F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007165
Linus Torvalds1da177e2005-04-16 15:20:36 -07007166SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007167M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007169F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007170
Linus Torvalds26e9a392008-10-17 09:50:12 -07007171STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007172M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007173L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007174S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007175
Linus Torvalds26e9a392008-10-17 09:50:12 -07007176STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007177M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007178T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007179L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007180S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007181F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007182
Joe Perchesc8c8b102011-07-05 09:42:12 -07007183STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7184M: Henk de Groot <pe1dnn@amsat.org>
7185S: Odd Fixes
7186F: drivers/staging/wlags49_h2/
7187F: drivers/staging/wlags49_h25/
7188
Joe Perchesc9555152011-07-05 09:42:01 -07007189STAGING - ASUS OLED
7190M: Jakub Schmidtke <sjakub@gmail.com>
7191S: Odd Fixes
7192F: drivers/staging/asus_oled/
7193
Joe Perchesebd3d012011-07-05 09:42:02 -07007194STAGING - COMEDI
7195M: Ian Abbott <abbotti@mev.co.uk>
7196M: Mori Hess <fmhess@users.sourceforge.net>
7197S: Odd Fixes
7198F: drivers/staging/comedi/
7199
Joe Perches8ca572c2011-07-05 09:42:03 -07007200STAGING - CRYSTAL HD VIDEO DECODER
7201M: Naren Sankar <nsankar@broadcom.com>
7202M: Jarod Wilson <jarod@wilsonet.com>
7203M: Scott Davilla <davilla@4pi.com>
7204M: Manu Abraham <abraham.manu@gmail.com>
7205S: Odd Fixes
7206F: drivers/staging/crystalhd/
7207
Joe Perches0f16ffc2011-07-05 09:42:04 -07007208STAGING - ECHO CANCELLER
7209M: Steve Underwood <steveu@coppice.org>
7210M: David Rowe <david@rowetel.com>
7211S: Odd Fixes
7212F: drivers/staging/echo/
7213
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007214STAGING - ET131X NETWORK DRIVER
7215M: Mark Einon <mark.einon@gmail.com>
7216S: Odd Fixes
7217F: drivers/staging/et131x/
7218
Joe Perchesa0138162011-07-05 15:21:34 -07007219STAGING - FLARION FT1000 DRIVERS
7220M: Marek Belisko <marek.belisko@gmail.com>
7221S: Odd Fixes
7222F: drivers/staging/ft1000/
7223
Joe Perchesec3fab92011-07-05 09:42:05 -07007224STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7225M: David Täht <d@teklibre.com>
7226S: Odd Fixes
7227F: drivers/staging/frontier/
7228
Joe Perches6c1bb422011-07-05 09:42:07 -07007229STAGING - INDUSTRIAL IO
7230M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007231L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007232S: Odd Fixes
7233F: drivers/staging/iio/
7234
Joe Perchesa0138162011-07-05 15:21:34 -07007235STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7236M: Jarod Wilson <jarod@wilsonet.com>
7237W: http://www.lirc.org/
7238S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007239F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007240
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007241STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007242M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007243M: Marc Dietrich <marvin24@gmx.de>
7244L: ac100@lists.launchpad.net (moderated for non-subscribers)
7245S: Maintained
7246F: drivers/staging/nvec/
7247
Joe Perchesa0138162011-07-05 15:21:34 -07007248STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7249M: Andres Salomon <dilinger@queued.net>
7250M: Chris Ball <cjb@laptop.org>
7251M: Jon Nettleton <jon.nettleton@gmail.com>
7252W: http://wiki.laptop.org/go/DCON
7253S: Odd Fixes
7254F: drivers/staging/olpc_dcon/
7255
Chris Kelly94cfdd12012-03-14 10:55:42 +00007256STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007257M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007258M: Chris Kelly <ckelly@ozmodevices.com>
7259S: Maintained
7260F: drivers/staging/ozwpan/
7261
Joe Perchesa0138162011-07-05 15:21:34 -07007262STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007263M: Willy Tarreau <willy@meta-x.org>
7264S: Odd Fixes
7265F: drivers/staging/panel/
7266
Joe Perchesa0138162011-07-05 15:21:34 -07007267STAGING - REALTEK RTL8712U DRIVERS
7268M: Larry Finger <Larry.Finger@lwfinger.net>
7269M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7270S: Odd Fixes
7271F: drivers/staging/rtl8712/
7272
Joe Perches9629fa82011-07-05 09:42:09 -07007273STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7274M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7275S: Odd Fixes
7276F: drivers/staging/sm7xx/
7277
Joe Perchesa0138162011-07-05 15:21:34 -07007278STAGING - SOFTLOGIC 6x10 MPEG CODEC
7279M: Ben Collins <bcollins@bluecherry.net>
7280S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007281F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007282
7283STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7284M: William Hubbs <w.d.hubbs@gmail.com>
7285M: Chris Brannon <chris@the-brannons.com>
7286M: Kirk Reiser <kirk@braille.uwo.ca>
7287M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7288L: speakup@braille.uwo.ca
7289W: http://www.linux-speakup.org/
7290S: Odd Fixes
7291F: drivers/staging/speakup/
7292
7293STAGING - TI DSP BRIDGE DRIVERS
7294M: Omar Ramirez Luna <omar.ramirez@ti.com>
7295S: Odd Fixes
7296F: drivers/staging/tidspbridge/
7297
Joe Perchesa0138162011-07-05 15:21:34 -07007298STAGING - USB ENE SM/MS CARD READER DRIVER
7299M: Al Cho <acho@novell.com>
7300S: Odd Fixes
7301F: drivers/staging/keucr/
7302
Joe Perchesb3e871c2011-07-05 09:42:10 -07007303STAGING - VIA VT665X DRIVERS
7304M: Forest Bond <forest@alittletooquiet.net>
7305S: Odd Fixes
7306F: drivers/staging/vt665?/
7307
Joe Perches81a9a522011-07-05 09:42:11 -07007308STAGING - WINBOND IS89C35 WLAN USB DRIVER
7309M: Pavel Machek <pavel@ucw.cz>
7310S: Odd Fixes
7311F: drivers/staging/winbond/
7312
Joe Perches709bcb02011-07-05 09:42:13 -07007313STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007314M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007315S: Odd Fixes
7316F: drivers/staging/xgifb/
7317
Linus Torvalds1da177e2005-04-16 15:20:36 -07007318STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007319M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007320S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007321F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007322
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007323SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007324M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007325W: http://sammy.net/sun3/
7326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007327F: arch/m68k/kernel/*sun3*
7328F: arch/m68k/sun3*/
7329F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007330F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007331
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007332SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007333M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007334L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007335W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007336Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007337T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007338S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007339F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007340F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007341F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007343SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007344M: Len Brown <len.brown@intel.com>
7345M: Pavel Machek <pavel@ucw.cz>
7346M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007347L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007348S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007349F: Documentation/power/
7350F: arch/x86/kernel/acpi/
7351F: drivers/base/power/
7352F: kernel/power/
7353F: include/linux/suspend.h
7354F: include/linux/freezer.h
7355F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007356
7357SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007358M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359L: linux-video@atrey.karlin.mff.cuni.cz
7360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007361F: Documentation/svga.txt
7362F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007363
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007364SWIOTLB SUBSYSTEM
7365M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7366L: linux-kernel@vger.kernel.org
7367S: Supported
7368F: lib/swiotlb.c
7369F: arch/*/kernel/pci-swiotlb.c
7370F: include/linux/swiotlb.h
7371
Linus Torvalds1da177e2005-04-16 15:20:36 -07007372SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007373M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007375F: Documentation/filesystems/sysv-fs.txt
7376F: fs/sysv/
7377F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007378
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007379TARGET SUBSYSTEM
7380M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7381L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007382L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007383L: http://groups.google.com/group/linux-iscsi-target-dev
7384W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007385T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007386S: Supported
7387F: drivers/target/
7388F: include/target/
7389F: Documentation/target/
7390
Alan Cox4e688522008-04-30 00:52:11 -07007391TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007392M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007394F: Documentation/accounting/taskstats*
7395F: include/linux/taskstats*
7396F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007397
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007398TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007399M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007400L: netdev@vger.kernel.org
7401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007402F: include/linux/pkt_cls.h
7403F: include/net/pkt_cls.h
7404F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007405
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007406TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007407M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7408M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007409W: http://tcp-lp-mod.sourceforge.net/
7410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007411F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007412
Antti Palosaari91952bc2012-10-01 12:28:46 -03007413TDA10071 MEDIA DRIVER
7414M: Antti Palosaari <crope@iki.fi>
7415L: linux-media@vger.kernel.org
7416W: http://linuxtv.org/
7417W: http://palosaari.fi/linux/
7418Q: http://patchwork.linuxtv.org/project/linux-media/list/
7419T: git git://linuxtv.org/anttip/media_tree.git
7420S: Maintained
7421F: drivers/media/dvb-frontends/tda10071*
7422
7423TDA18212 MEDIA DRIVER
7424M: Antti Palosaari <crope@iki.fi>
7425L: linux-media@vger.kernel.org
7426W: http://linuxtv.org/
7427W: http://palosaari.fi/linux/
7428Q: http://patchwork.linuxtv.org/project/linux-media/list/
7429T: git git://linuxtv.org/anttip/media_tree.git
7430S: Maintained
7431F: drivers/media/tuners/tda18212*
7432
7433TDA18218 MEDIA DRIVER
7434M: Antti Palosaari <crope@iki.fi>
7435L: linux-media@vger.kernel.org
7436W: http://linuxtv.org/
7437W: http://palosaari.fi/linux/
7438Q: http://patchwork.linuxtv.org/project/linux-media/list/
7439T: git git://linuxtv.org/anttip/media_tree.git
7440S: Maintained
7441F: drivers/media/tuners/tda18218*
7442
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007443TDA18271 MEDIA DRIVER
7444M: Michael Krufky <mkrufky@linuxtv.org>
7445L: linux-media@vger.kernel.org
7446W: http://linuxtv.org/
7447W: http://github.com/mkrufky
7448Q: http://patchwork.linuxtv.org/project/linux-media/list/
7449T: git git://linuxtv.org/mkrufky/tuners.git
7450S: Maintained
7451F: drivers/media/tuners/tda18271*
7452
Michael Krufkye48307a2012-10-02 00:56:33 -03007453TDA827x MEDIA DRIVER
7454M: Michael Krufky <mkrufky@linuxtv.org>
7455L: linux-media@vger.kernel.org
7456W: http://linuxtv.org/
7457W: http://github.com/mkrufky
7458Q: http://patchwork.linuxtv.org/project/linux-media/list/
7459T: git git://linuxtv.org/mkrufky/tuners.git
7460S: Maintained
7461F: drivers/media/tuners/tda8290.*
7462
Michael Krufky66cf9212012-10-02 00:56:28 -03007463TDA8290 MEDIA DRIVER
7464M: Michael Krufky <mkrufky@linuxtv.org>
7465L: linux-media@vger.kernel.org
7466W: http://linuxtv.org/
7467W: http://github.com/mkrufky
7468Q: http://patchwork.linuxtv.org/project/linux-media/list/
7469T: git git://linuxtv.org/mkrufky/tuners.git
7470S: Maintained
7471F: drivers/media/tuners/tda8290.*
7472
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007473TEA5761 TUNER DRIVER
7474M: Mauro Carvalho Chehab <mchehab@redhat.com>
7475L: linux-media@vger.kernel.org
7476W: http://linuxtv.org
7477T: git git://linuxtv.org/media_tree.git
7478S: Odd fixes
7479F: drivers/media/tuners/tea5761.*
7480
7481TEA5767 TUNER DRIVER
7482M: Mauro Carvalho Chehab <mchehab@redhat.com>
7483L: linux-media@vger.kernel.org
7484W: http://linuxtv.org
7485T: git git://linuxtv.org/media_tree.git
7486S: Maintained
7487F: drivers/media/tuners/tea5767.*
7488
Jiri Pirko3d249d42011-11-11 22:16:48 +00007489TEAM DRIVER
7490M: Jiri Pirko <jpirko@redhat.com>
7491L: netdev@vger.kernel.org
7492S: Supported
7493F: drivers/net/team/
7494F: include/linux/if_team.h
7495
Sean Young40ad4a32012-11-19 10:32:53 -03007496TECHNOTREND USB IR RECEIVER
7497M: Sean Young <sean@mess.org>
7498L: linux-media@vger.kernel.org
7499S: Maintained
7500F: drivers/media/rc/ttusbir.c
7501
Erik Gilling84b94142010-06-09 15:35:53 -07007502TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007503M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007504L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007505Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7506T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007507S: Supported
7508F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007509F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007510F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007511
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007512TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007513M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007514L: netdev@vger.kernel.org
7515S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007516F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007517
Alan Cox4e688522008-04-30 00:52:11 -07007518Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007519M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007520S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007521F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007522
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007523TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007524M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007525M: Max Filippov <jcmvbkbc@gmail.com>
7526L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007528F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007529
Zhang Ruid3fb6952012-11-15 08:58:27 +08007530THERMAL
7531M: Zhang Rui <rui.zhang@intel.com>
7532L: linux-pm@vger.kernel.org
7533T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7534S: Supported
7535F: drivers/thermal/
7536F: include/linux/thermal.h
7537
Alan Cox4e688522008-04-30 00:52:11 -07007538THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007539M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007540L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007541L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007542W: http://ibm-acpi.sourceforge.net
7543W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007544T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007546F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007547
Alex Dubov4020f2d2006-10-04 02:15:37 -07007548TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007549M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007551F: drivers/misc/tifm*
7552F: drivers/mmc/host/tifm_sd.c
7553F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007554
M R Swami Reddy152ad442012-04-02 20:02:31 +05307555TI LM49xxx FAMILY ASoC CODEC DRIVERS
7556M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307557M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307558L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7559S: Maintained
7560F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307561F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307562
Kim, Milo0edd8072012-12-17 16:01:17 -08007563TI LP855x BACKLIGHT DRIVER
7564M: Milo Kim <milo.kim@ti.com>
7565S: Maintained
7566F: Documentation/backlight/lp855x-driver.txt
7567F: drivers/video/backlight/lp855x_bl.c
7568F: include/linux/platform_data/lp855x.h
7569
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007570TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007571M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007572L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7573S: Maintained
7574F: sound/soc/codecs/twl4030*
7575
Luciano Coelho90921012011-11-20 21:40:41 +02007576TI WILINK WIRELESS DRIVERS
7577M: Luciano Coelho <coelho@ti.com>
7578L: linux-wireless@vger.kernel.org
7579W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7580W: http://wireless.kernel.org/en/users/Drivers/wl1251
7581T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7582S: Maintained
7583F: drivers/net/wireless/ti/
7584F: include/linux/wl12xx.h
7585
Per Lidene86eaa32006-01-12 16:45:18 +01007586TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007587M: Jon Maloy <jon.maloy@ericsson.com>
7588M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007589L: netdev@vger.kernel.org (core kernel code)
7590L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007591W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007593F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007594F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007595
Chris Metcalf867e3592010-05-28 23:09:12 -04007596TILE ARCHITECTURE
7597M: Chris Metcalf <cmetcalf@tilera.com>
7598W: http://www.tilera.com/scm/
7599S: Supported
7600F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007601F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007602F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007603F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007604
Linus Torvalds1da177e2005-04-16 15:20:36 -07007605TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007606M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007607L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007608W: http://sourceforge.net/projects/tlan/
7609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007610F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007611F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007612
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007613TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007614M: Kentaro Takeda <takedakn@nttdata.co.jp>
7615M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007616L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7617L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007618L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7619L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7620W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007621T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007623F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007624
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007625TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007626M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007627L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007628S: Maintained
7629F: drivers/platform/x86/topstar-laptop.c
7630
Linus Torvalds1da177e2005-04-16 15:20:36 -07007631TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007632L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007633S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007634F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635
7636TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007637M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007638L: tlinux-users@tce.toshiba-dme.co.jp
7639W: http://www.buzzard.org.uk/toshiba/
7640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007641F: drivers/char/toshiba.c
7642F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007643
Pierre Ossmand719f902009-03-24 21:06:09 +01007644TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007645M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007646M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007647L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007648S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007649F: drivers/mmc/host/tmio_mmc*
7650F: drivers/mmc/host/sh_mobile_sdhi.c
7651F: include/linux/mmc/tmio.h
7652F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007653
Hugh Dickins98f32602009-05-21 20:33:58 +01007654TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007655M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007656L: linux-mm@kvack.org
7657S: Maintained
7658F: include/linux/shmem_fs.h
7659F: mm/shmem.c
7660
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02007661TM6000 VIDEO4LINUX DRIVER
7662M: Mauro Carvalho Chehab <mchehab@redhat.com>
7663L: linux-media@vger.kernel.org
7664W: http://linuxtv.org
7665T: git git://linuxtv.org/media_tree.git
7666S: Odd fixes
7667F: drivers/media/usb/tm6000/
7668
Alan Cox4e688522008-04-30 00:52:11 -07007669TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007670M: Kent Yoder <key@linux.vnet.ibm.com>
7671M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007672W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007673M: Marcel Selhorst <tpmdd@selhorst.net>
7674M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007675W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007676L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007678F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007679
Joe Perchesd6f005a2009-10-26 16:49:40 -07007680TRACING
7681M: Steven Rostedt <rostedt@goodmis.org>
7682M: Frederic Weisbecker <fweisbec@gmail.com>
7683M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007684T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007685S: Maintained
7686F: Documentation/trace/ftrace.txt
7687F: arch/*/*/*/ftrace.h
7688F: arch/*/kernel/ftrace.c
7689F: include/*/ftrace.h
7690F: include/linux/trace*.h
7691F: include/trace/
7692F: kernel/trace/
7693
Linus Torvalds1da177e2005-04-16 15:20:36 -07007694TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007695M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007696T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007698K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007699
Alan Cox4e688522008-04-30 00:52:11 -07007700TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007701M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01007702M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08007703S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007704T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007705F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007706F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007707F: include/linux/serial_core.h
7708F: include/linux/serial.h
7709F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007710
Antti Palosaari91952bc2012-10-01 12:28:46 -03007711TUA9001 MEDIA DRIVER
7712M: Antti Palosaari <crope@iki.fi>
7713L: linux-media@vger.kernel.org
7714W: http://linuxtv.org/
7715W: http://palosaari.fi/linux/
7716Q: http://patchwork.linuxtv.org/project/linux-media/list/
7717T: git git://linuxtv.org/anttip/media_tree.git
7718S: Maintained
7719F: drivers/media/tuners/tua9001*
7720
Grant Grundler740db6d2008-02-17 11:53:49 -07007721TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007722M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007723L: netdev@vger.kernel.org
7724S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007725F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007726
7727TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00007728M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007729W: http://vtun.sourceforge.net/tun
7730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007731F: Documentation/networking/tuntap.txt
7732F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007734TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007735M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007737F: drivers/tc/
7738F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007739
Linus Torvalds1da177e2005-04-16 15:20:36 -07007740U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007741M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007742L: linux-scsi@vger.kernel.org
7743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007744F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007745
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007746UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007747M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007748M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007749L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007750T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007751W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007753F: Documentation/filesystems/ubifs.txt
7754F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007755
Alan Coxcc2020e2008-05-19 14:21:51 +01007756UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007757M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007758W: http://www.uclinux.org/
7759L: uclinux-dev@uclinux.org (subscribers-only)
7760S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007761F: arch/m68k/*/*_no.*
7762F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007763
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007764UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007765M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007766W: http://uclinux-h8.sourceforge.jp/
7767S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007768F: arch/h8300/
7769F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007770F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007771
Linus Torvalds1da177e2005-04-16 15:20:36 -07007772UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007773M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007775F: Documentation/filesystems/udf.txt
7776F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007777
Alan Coxcc2020e2008-05-19 14:21:51 +01007778UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007779M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007781F: Documentation/filesystems/ufs.txt
7782F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007783
David Herrmann0a09d3a2012-06-10 15:16:28 +02007784UHID USERSPACE HID IO DRIVER:
7785M: David Herrmann <dh.herrmann@googlemail.com>
7786L: linux-input@vger.kernel.org
7787S: Maintained
7788F: drivers/hid/uhid.c
7789F: include/linux/uhid.h
7790
David Vrabel18332a82008-09-17 16:34:44 +01007791ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007792L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007793S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007794F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007795F: include/linux/uwb.h
7796F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007797
GuanXuetaob31d8272011-01-16 00:35:49 +08007798UNICORE32 ARCHITECTURE:
7799M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7800W: http://mprc.pku.edu.cn/~guanxuetao/linux
7801S: Maintained
7802T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7803F: arch/unicore32/
7804
Tony Finchd8379ab2009-11-27 15:50:30 +00007805UNIFDEF
7806M: Tony Finch <dot@dotat.at>
7807W: http://dotat.at/prog/unifdef
7808S: Maintained
7809F: scripts/unifdef.c
7810
Linus Torvalds1da177e2005-04-16 15:20:36 -07007811UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007812M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007813W: http://www.kernel.dk
7814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007815F: Documentation/cdrom/
7816F: drivers/cdrom/cdrom.c
7817F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007818
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307819UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7820M: Vinayak Holikatti <vinholikatti@gmail.com>
7821M: Santosh Y <santoshsy@gmail.com>
7822L: linux-scsi@vger.kernel.org
7823S: Supported
7824F: Documentation/scsi/ufs.txt
7825F: drivers/scsi/ufs/
7826
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007827UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007828M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007829W: http://www.linux-mtd.infradead.org/
7830L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007831T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007832S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007833F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007834F: include/linux/mtd/ubi.h
7835F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007836
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007837UNSORTED BLOCK IMAGES (UBI) Fastmap
7838M: Richard Weinberger <richard@nod.at>
7839L: linux-mtd@lists.infradead.org
7840S: Maintained
7841F: drivers/mtd/ubi/fastmap.c
7842
Linus Torvalds1da177e2005-04-16 15:20:36 -07007843USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007844M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007845L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007847F: Documentation/usb/acm.txt
7848F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007849
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02007850USB AR5523 WIRELESS DRIVER
7851M: Pontus Fuchs <pontus.fuchs@gmail.com>
7852L: linux-wireless@vger.kernel.org
7853S: Maintained
7854F: drivers/net/wireless/ath/ar5523/
7855
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007856USB ATTACHED SCSI
7857M: Matthew Wilcox <willy@linux.intel.com>
7858M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7859L: linux-usb@vger.kernel.org
7860L: linux-scsi@vger.kernel.org
7861S: Supported
7862F: drivers/usb/storage/uas.c
7863
Linus Torvalds1da177e2005-04-16 15:20:36 -07007864USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007865M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007866L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007868F: drivers/net/usb/cdc_*.c
7869F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007870
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007871USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007872M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007873L: linux-usb@vger.kernel.org
7874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007875F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007876
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007877USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007878M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007879L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007880W: http://www.linux-usb.org/usbnet
7881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007882F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007883
Alan Coxcc2020e2008-05-19 14:21:51 +01007884USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007885M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007886L: rio500-users@lists.sourceforge.net
7887W: http://rio500.sourceforge.net
7888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007889F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007890
Linus Torvalds1da177e2005-04-16 15:20:36 -07007891USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007892M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007893L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007894S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007895F: Documentation/usb/ehci.txt
7896F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007897
David Brownell69ae9e32006-11-14 02:03:31 -08007898USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007899M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007900L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007901W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007902T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007904F: drivers/usb/gadget/
7905F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007906
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007907USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007908M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007909L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007910T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007911S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007912F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007913F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007914
matt mooney857aab32011-06-17 15:50:46 -07007915USB/IP DRIVERS
7916M: Matt Mooney <mfm@muteddisk.com>
7917L: linux-usb@vger.kernel.org
7918S: Maintained
7919F: drivers/staging/usbip/
7920
Olav Kongas959eea22005-11-03 17:38:14 +02007921USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007922M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007923L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007925F: drivers/usb/host/isp116x*
7926F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007927
Linus Torvalds1da177e2005-04-16 15:20:36 -07007928USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007929M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007930L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007932F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007933
7934USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007935M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007936L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007937L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007938S: Maintained
7939W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007940F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007941
Clemens Ladischaf399172011-01-10 16:32:54 +01007942USB MIDI DRIVER
7943M: Clemens Ladisch <clemens@ladisch.de>
7944L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7945T: git git://git.alsa-project.org/alsa-kernel.git
7946S: Maintained
7947F: sound/usb/midi.*
7948
Linus Torvalds1da177e2005-04-16 15:20:36 -07007949USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007950M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007951L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007953F: Documentation/usb/ohci.txt
7954F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007955
Matthias Urlichsba460e42005-07-14 00:33:47 -07007956USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007957M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007958L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007960F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007961
Linus Torvalds1da177e2005-04-16 15:20:36 -07007962USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007963M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007964L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007965L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007966W: http://pegasus2.sourceforge.net/
7967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007968F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007969
Felipe Balbid3ad5582012-05-21 16:24:49 +03007970USB PHY LAYER
7971M: Felipe Balbi <balbi@ti.com>
7972L: linux-usb@vger.kernel.org
7973T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7974S: Maintained
7975F: drivers/usb/phy/
7976F: drivers/usb/otg/
7977
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007978USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007979M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007980L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007982F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007983
7984USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007985M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007986L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007987L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007988W: http://pegasus2.sourceforge.net/
7989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007990F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007991
Alan Cox4e688522008-04-30 00:52:11 -07007992USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007993M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007994L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007996F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007997
7998USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007999M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008000L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008001S: Maintained
8002W: http://geocities.com/i0xox0i
8003W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008004F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008005
Linus Torvalds1da177e2005-04-16 15:20:36 -07008006USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008007M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008008W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008010F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008011
8012USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008013M: Peter Berger <pberger@brimson.com>
8014M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008015L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008017F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008018
8019USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008020M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008021L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008022S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008023F: Documentation/usb/usb-serial.txt
8024F: drivers/usb/serial/generic.c
8025F: drivers/usb/serial/usb-serial.c
8026F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008027
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008029M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008030L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008032F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008033
8034USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008035M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008036L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008038F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008039
8040USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008041M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008042L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008043W: http://www.connecttech.com
8044S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008045F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008046
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008047USB SMSC75XX ETHERNET DRIVER
8048M: Steve Glendinning <steve.glendinning@shawell.net>
8049L: netdev@vger.kernel.org
8050S: Maintained
8051F: drivers/net/usb/smsc75xx.*
8052
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008053USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008054M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008055L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008057F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008058
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008059USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008060M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008061L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008062L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008063T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008064W: http://www.linux-projects.org
8065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008066F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008067F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008068
8069USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008070M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008071L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008072W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008073T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008074S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008075F: Documentation/usb/
8076F: drivers/net/usb/
8077F: drivers/usb/
8078F: include/linux/usb.h
8079F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008080
8081USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008082M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008083L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008085F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008086
David Brownell69ae9e32006-11-14 02:03:31 -08008087USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008088M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008089L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008090W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008092F: drivers/net/usb/usbnet.c
8093F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008094
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008095USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008096M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008097L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008098L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008099T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008100W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008101S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008102F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008103F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008104
Laurent Pinchart8282da42012-10-04 02:32:42 +02008105USB WEBCAM GADGET
8106M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8107L: linux-usb@vger.kernel.org
8108S: Maintained
8109F: drivers/usb/gadget/*uvc*.c
8110F: drivers/usb/gadget/webcam.c
8111
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008112USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008113M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008114L: linux-wireless@vger.kernel.org
8115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008116F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008117
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008118USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008119M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008120L: linux-usb@vger.kernel.org
8121S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008122F: drivers/usb/host/xhci*
8123F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008124
Linus Torvalds1da177e2005-04-16 15:20:36 -07008125USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008126L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008127W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008128S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008129F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008130
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008131USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008132M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008133L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008134L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008135T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008136W: http://royale.zerezo.com/zr364xx/
8137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008138F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008139F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008140
Randy Dunlape7839f22008-10-12 16:11:45 -07008141USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008142M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008143M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008144L: user-mode-linux-devel@lists.sourceforge.net
8145L: user-mode-linux-user@lists.sourceforge.net
8146W: http://user-mode-linux.sourceforge.net
8147S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008148F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008149F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008150F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008151F: fs/hostfs/
8152F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008153
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008154USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008155M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008156M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008158F: Documentation/DocBook/uio-howto.tmpl
8159F: drivers/uio/
8160F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008161
Karel Zak256cccb2012-06-01 10:13:09 +02008162UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008163M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008164L: util-linux@vger.kernel.org
8165W: http://en.wikipedia.org/wiki/Util-linux
8166T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008167S: Maintained
8168
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008169UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008170M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008171L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008172W: http://dev.gentoo.org/~spock/projects/uvesafb/
8173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008174F: Documentation/fb/uvesafb.txt
8175F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008176
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008177VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008178M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008180F: Documentation/filesystems/vfat.txt
8181F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008182
Alex Williamsoncba33452012-07-31 08:16:22 -06008183VFIO DRIVER
8184M: Alex Williamson <alex.williamson@redhat.com>
8185L: kvm@vger.kernel.org
8186S: Maintained
8187F: Documentation/vfio.txt
8188F: drivers/vfio/
8189F: include/linux/vfio.h
8190
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008191VIDEOBUF2 FRAMEWORK
8192M: Pawel Osciak <pawel@osciak.com>
8193M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008194M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008195L: linux-media@vger.kernel.org
8196S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008197F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008198F: include/media/videobuf2-*
8199
Amit Shah9a824462010-03-23 18:23:09 +05308200VIRTIO CONSOLE DRIVER
8201M: Amit Shah <amit.shah@redhat.com>
8202L: virtualization@lists.linux-foundation.org
8203S: Maintained
8204F: drivers/char/virtio_console.c
8205F: include/linux/virtio_console.h
8206
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308207VIRTIO CORE, NET AND BLOCK DRIVERS
8208M: Rusty Russell <rusty@rustcorp.com.au>
8209M: "Michael S. Tsirkin" <mst@redhat.com>
8210L: virtualization@lists.linux-foundation.org
8211S: Maintained
8212F: drivers/virtio/
8213F: drivers/net/virtio_net.c
8214F: drivers/block/virtio_blk.c
8215F: include/linux/virtio_*.h
8216
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008217VIRTIO HOST (VHOST)
8218M: "Michael S. Tsirkin" <mst@redhat.com>
8219L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008220L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008221L: netdev@vger.kernel.org
8222S: Maintained
8223F: drivers/vhost/
8224F: include/linux/vhost.h
8225
Linus Torvalds1da177e2005-04-16 15:20:36 -07008226VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008227M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008228S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008229F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008230
Harald Weltef0bf7f62009-06-17 20:22:39 +02008231VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008232M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008233M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008234S: Maintained
8235F: drivers/mmc/host/via-sdmmc.c
8236
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008237VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008238M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008239L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008240S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008241F: include/linux/via-core.h
8242F: include/linux/via-gpio.h
8243F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008244F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008245
Francois Romieu01f20732007-01-26 00:57:17 -08008246VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008247M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008248L: netdev@vger.kernel.org
8249S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008250F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008251
Patrick McHardybe7f8272007-10-23 20:26:36 -07008252VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008253M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008254L: netdev@vger.kernel.org
8255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008256F: drivers/net/macvlan.c
8257F: include/linux/if_*vlan.h
8258F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008259
Florian Fainelli55e331c2009-06-16 15:33:53 -07008260VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008261M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008262L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008263S: Maintained
8264F: drivers/vlynq/vlynq.c
8265F: include/linux/vlynq.h
8266
Martyn Welch390beae2012-05-03 17:52:36 +01008267VME SUBSYSTEM
8268M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008269M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008270M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8271L: devel@driverdev.osuosl.org
8272S: Maintained
8273T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8274F: Documentation/vme_api.txt
8275F: drivers/staging/vme/
8276F: drivers/vme/
8277F: include/linux/vme*
8278
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008279VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008280M: Shreyas Bhatewara <sbhatewara@vmware.com>
8281M: "VMware, Inc." <pv-drivers@vmware.com>
8282L: netdev@vger.kernel.org
8283S: Maintained
8284F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008285
Alok Kataria851b1642009-10-13 14:51:05 -07008286VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008287M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008288M: VMware PV-Drivers <pv-drivers@vmware.com>
8289L: linux-scsi@vger.kernel.org
8290S: Maintained
8291F: drivers/scsi/vmw_pvscsi.c
8292F: drivers/scsi/vmw_pvscsi.h
8293
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008294VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008295M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008296M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008297W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008298W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008299T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008300S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008301F: drivers/regulator/
8302F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008303
Juerg Haefligerab413192006-09-24 20:54:04 +02008304VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008305M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008306L: lm-sensors@lm-sensors.org
8307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008308F: Documentation/hwmon/vt1211
8309F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008310
Roger Lucas1de9e372005-11-26 20:20:05 +01008311VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008312M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008313L: lm-sensors@lm-sensors.org
8314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008315F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008316
Tony Olech88095e72011-05-14 16:48:13 -04008317VUB300 USB to SDIO/SD/MMC bridge chip
8318M: Tony Olech <tony.olech@elandigitalsystems.com>
8319L: linux-mmc@vger.kernel.org
8320L: linux-usb@vger.kernel.org
8321S: Supported
8322F: drivers/mmc/host/vub300.c
8323
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008325M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008327F: Documentation/w1/
8328F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008329
Charles Spirakis13927072006-07-05 18:05:15 +02008330W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008331M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008332L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008334F: Documentation/hwmon/w83791d
8335F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008336
Rudolf Marek61db0112006-12-12 18:18:30 +01008337W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008338M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008339L: lm-sensors@lm-sensors.org
8340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008341F: Documentation/hwmon/w83793
8342F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008343
Jean Delvaree3760b42010-10-28 20:31:49 +02008344W83795 HARDWARE MONITORING DRIVER
8345M: Jean Delvare <khali@linux-fr.org>
8346L: lm-sensors@lm-sensors.org
8347S: Maintained
8348F: drivers/hwmon/w83795.c
8349
Linus Torvalds1da177e2005-04-16 15:20:36 -07008350W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008351M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008353F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008354
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008355WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008356M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008357L: linux-watchdog@vger.kernel.org
8358W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008359T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008361F: Documentation/watchdog/
8362F: drivers/watchdog/
8363F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008364
Linus Torvalds1da177e2005-04-16 15:20:36 -07008365WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008366M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008367L: linux-scsi@vger.kernel.org
8368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008369F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008370
David Herrmannb22e00f2011-09-06 13:50:40 +02008371WIIMOTE HID DRIVER
8372M: David Herrmann <dh.herrmann@googlemail.com>
8373L: linux-input@vger.kernel.org
8374S: Maintained
8375F: drivers/hid/hid-wiimote*
8376
David Härdemane258b802009-09-21 17:04:53 -07008377WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008378M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008379S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008380F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008381
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008382WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008383M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008384M: linux-wimax@intel.com
8385L: wimax@linuxwimax.org
8386S: Supported
8387W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008388F: Documentation/wimax/README.wimax
8389F: include/linux/wimax.h
8390F: include/linux/wimax/debug.h
8391F: include/net/wimax.h
8392F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008393
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008394WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008395M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008397F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008398
Linus Torvalds1da177e2005-04-16 15:20:36 -07008399WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008400M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008401L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008402W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008404F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008405
Mark Brownfebf1df2008-04-02 00:51:09 -04008406WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008407M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8408M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008409L: linux-input@vger.kernel.org
8410T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8411W: http://opensource.wolfsonmicro.com/node/7
8412S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008413F: drivers/input/touchscreen/*wm97*
8414F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008415
Mark Brown055bcbc2010-08-13 14:18:12 +01008416WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008417M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008418L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008419T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008420T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008421W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008422S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008423F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008424F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008425F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008426F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008427F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008428F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008429F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008430F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008431F: drivers/input/misc/wm831x-on.c
8432F: drivers/input/touchscreen/wm831x-ts.c
8433F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008434F: drivers/mfd/arizona*
8435F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008436F: drivers/power/wm83*.c
8437F: drivers/rtc/rtc-wm83*.c
8438F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008439F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008440F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008441F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008442F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008443F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008444F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008445F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008446F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008447F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008448F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008449
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008450WORKQUEUE
8451M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008452T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8453S: Maintained
8454F: include/linux/workqueue.h
8455F: kernel/workqueue.c
8456F: Documentation/workqueue.txt
8457
Linus Torvalds1da177e2005-04-16 15:20:36 -07008458X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008459M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008460L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008461S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008462F: Documentation/networking/x25*
8463F: include/net/x25*
8464F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008465
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008466X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008467M: Thomas Gleixner <tglx@linutronix.de>
8468M: Ingo Molnar <mingo@redhat.com>
8469M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008470M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008471T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008473F: Documentation/x86/
8474F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008475
Matthew Garrettd0944852010-02-11 10:40:13 -05008476X86 PLATFORM DRIVERS
8477M: Matthew Garrett <mjg@redhat.com>
8478L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008479T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008480S: Maintained
8481F: drivers/platform/x86
8482
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008483X86 MCE INFRASTRUCTURE
8484M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008485M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008486L: linux-edac@vger.kernel.org
8487S: Maintained
8488F: arch/x86/kernel/cpu/mcheck/*
8489
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008490XC2028/3028 TUNER DRIVER
8491M: Mauro Carvalho Chehab <mchehab@redhat.com>
8492L: linux-media@vger.kernel.org
8493W: http://linuxtv.org
8494T: git git://linuxtv.org/media_tree.git
8495S: Maintained
8496F: drivers/media/tuners/tuner-xc2028.*
8497
Ian Campbellc4468082011-04-27 15:26:46 -07008498XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008499M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008500M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008501L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8502L: virtualization@lists.linux-foundation.org
8503S: Supported
8504F: arch/x86/xen/
8505F: drivers/*/xen-*front.c
8506F: drivers/xen/
8507F: arch/x86/include/asm/xen/
8508F: include/xen/
8509
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008510XEN HYPERVISOR ARM
8511M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8512L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8513S: Supported
8514F: arch/arm/xen/
8515F: arch/arm/include/asm/xen/
8516
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008517XEN NETWORK BACKEND DRIVER
8518M: Ian Campbell <ian.campbell@citrix.com>
8519L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8520L: netdev@vger.kernel.org
8521S: Supported
8522F: drivers/net/xen-netback/*
8523
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008524XEN PCI SUBSYSTEM
8525M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008526L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008527S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008528F: arch/x86/pci/*xen*
8529F: drivers/pci/*xen*
8530
8531XEN SWIOTLB SUBSYSTEM
8532M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008533L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008534S: Supported
8535F: arch/x86/xen/*swiotlb*
8536F: drivers/xen/*swiotlb*
8537
Linus Torvalds1da177e2005-04-16 15:20:36 -07008538XFS FILESYSTEM
8539P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008540M: Ben Myers <bpm@sgi.com>
8541M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008542M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008543L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008544W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008545T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008546S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008547F: Documentation/filesystems/xfs.txt
8548F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008549
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008550XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008551M: Anirudha Sarangi <anirudh@xilinx.com>
8552M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008553S: Maintained
8554F: drivers/net/ethernet/xilinx/xilinx_axienet*
8555
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008556XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008557M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008558W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008560F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008561
Peter Korsgaard238b8722006-12-06 20:35:17 -08008562XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008563M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008564L: linux-serial@vger.kernel.org
8565S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008566F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008567
Linus Torvalds1da177e2005-04-16 15:20:36 -07008568YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008569M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008570L: linux-hams@vger.kernel.org
8571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008572F: drivers/net/hamradio/yam*
8573F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008574
Henkaf64a5e2005-10-12 15:02:56 +02008575YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008576M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008577L: usbb2k-api-dev@nongnu.org
8578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008579F: Documentation/input/yealink.txt
8580F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008581
Linus Torvalds1da177e2005-04-16 15:20:36 -07008582Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008583M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008584W: http://yaina.de/jreuter/
8585W: http://www.qsl.net/dl1bke/
8586L: linux-hams@vger.kernel.org
8587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008588F: Documentation/networking/z8530drv.txt
8589F: drivers/net/hamradio/*scc.c
8590F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008591
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008592ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008593M: Daniel Drake <dsd@gentoo.org>
8594M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008595W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008596L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008597L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008599F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008600
Linus Torvalds1da177e2005-04-16 15:20:36 -07008601ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008602L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008603L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008604W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008605T: Mercurial http://linuxtv.org/hg/v4l-dvb
8606S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008607F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008608
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008609ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008610M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008611S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008612F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008613
Linus Torvalds1da177e2005-04-16 15:20:36 -07008614THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008615M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008616L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008617Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008618T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008619S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008620F: *
8621F: */