blob: 975ba7c276dd9f2689c22575a474cf92bf4c9037 [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 Whitcroft0a920b5b2007-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 Garrettd09448532010-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 Garrettd09448532010-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 Garrettd09448532010-02-11 10:40:13 -0500271L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700273F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100275AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700276M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200277W: http://wiki.parisc-linux.org/AD1889
278L: linux-parisc@vger.kernel.org
279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700280F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
283M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100284L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700285W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000286S: Supported
287F: drivers/misc/ad525x_dpot.c
288
289AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/regulator/ad5398.c
295
296AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/input/misc/ad714x.c
302
303AD7877 TOUCHSCREEN DRIVER
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/touchscreen/ad7877.c
309
310AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7879.c
316
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700317ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
318M: Jiri Kosina <jkosina@suse.cz>
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200323L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/hwmon/adm1025
326F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330L: lm-sensors@lm-sensors.org
331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333
Michael Wucc0b88c2007-08-31 01:15:25 -0400334ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400335L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200336W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400339
Sakari Ailuse8e31622012-11-12 18:14:39 -0300340ADP1653 FLASH CONTROLLER DRIVER
341M: Sakari Ailus <sakari.ailus@iki.fi>
342L: linux-media@vger.kernel.org
343S: Maintained
344F: drivers/media/i2c/adp1653.c
345F: include/media/adp1653.h
346
Michael Hennerich527a1a82010-10-28 11:31:28 +0000347ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
348M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100349L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700350W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000351S: Supported
352F: drivers/mfd/adp5520.c
353F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700354F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800355F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000356F: drivers/input/keyboard/adp5520-keys.c
357
358ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
359M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100360L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700361W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362S: Supported
363F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800364F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000365
366ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
367M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100368L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700369W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000370S: Supported
371F: drivers/video/backlight/adp8860_bl.c
372
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100373ADS1015 HARDWARE MONITOR DRIVER
374M: Dirk Eibach <eibach@gdsys.de>
375L: lm-sensors@lm-sensors.org
376S: Maintained
377F: Documentation/hwmon/ads1015
378F: drivers/hwmon/ads1015.c
379F: include/linux/i2c/ads1015.h
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700382M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700384F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Jean Delvareb058b852009-12-09 20:36:08 +0100386ADT7475 HARDWARE MONITOR DRIVER
387M: Jean Delvare <khali@linux-fr.org>
388L: lm-sensors@lm-sensors.org
389S: Maintained
390F: Documentation/hwmon/adt7475
391F: drivers/hwmon/adt7475.c
392
Michael Hennerich527a1a82010-10-28 11:31:28 +0000393ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
394M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100395L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700396W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000397S: Supported
398F: drivers/input/misc/adxl34x.c
399
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400400ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400402L: linux-scsi@vger.kernel.org
403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700404F: Documentation/scsi/advansys.txt
405F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700408M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700410F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Antti Palosaari91952bc2012-10-01 12:28:46 -0300412AF9013 MEDIA DRIVER
413M: Antti Palosaari <crope@iki.fi>
414L: linux-media@vger.kernel.org
415W: http://linuxtv.org/
416W: http://palosaari.fi/linux/
417Q: http://patchwork.linuxtv.org/project/linux-media/list/
418T: git git://linuxtv.org/anttip/media_tree.git
419S: Maintained
420F: drivers/media/dvb-frontends/af9013*
421
422AF9033 MEDIA DRIVER
423M: Antti Palosaari <crope@iki.fi>
424L: linux-media@vger.kernel.org
425W: http://linuxtv.org/
426W: http://palosaari.fi/linux/
427Q: http://patchwork.linuxtv.org/project/linux-media/list/
428T: git git://linuxtv.org/anttip/media_tree.git
429S: Maintained
430F: drivers/media/dvb-frontends/af9033*
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200433L: linux-fsdevel@vger.kernel.org
434S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700435F: Documentation/filesystems/affs.txt
436F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700439M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700440L: linux-afs@lists.infradead.org
441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700442F: fs/afs/
443F: include/net/af_rxrpc.h
444F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700448T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/char/agp/
451F: include/linux/agp*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800452F: include/uapi/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700455M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456L: linux-scsi@vger.kernel.org
457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700458F: drivers/scsi/aha152x*
459F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Hannes Reinecke64624d42007-10-19 10:32:29 +0200461AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700462M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200463L: linux-scsi@vger.kernel.org
464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700465F: drivers/scsi/aic7xxx/
466F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200467
Hans Verkuil450500a2012-11-23 07:11:33 -0300468AIMSLAB FM RADIO RECEIVER DRIVER
469M: Hans Verkuil <hverkuil@xs4all.nl>
470L: linux-media@vger.kernel.org
471T: git git://linuxtv.org/media_tree.git
472W: http://linuxtv.org
473S: Maintained
474F: drivers/media/radio/radio-aimslab*
475
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700476AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700477M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700478L: linux-aio@kvack.org
479S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700480F: fs/aio.c
481F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700484M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700485L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486W: http://www.linux-usb.org/SpeedTouch/
487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700488F: drivers/usb/atm/speedtch.c
489F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Pierre Ossman272f1332007-05-14 21:25:26 +0200491ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700492M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700494F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200495
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000496ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700497M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100498L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700500F: Documentation/i2c/busses/i2c-ali1563
501F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700504M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700505M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500506M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700507S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700508L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700509F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Tobias Klauseradf92512011-02-09 10:58:29 +0100511ALTERA UART/JTAG UART SERIAL DRIVERS
512M: Tobias Klauser <tklauser@distanz.ch>
513L: linux-serial@vger.kernel.org
514L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
515S: Maintained
516F: drivers/tty/serial/altera_uart.c
517F: drivers/tty/serial/altera_jtaguart.c
518F: include/linux/altera_uart.h
519F: include/linux/altera_jtaguart.h
520
Andreas Herrmann512d1022011-05-25 20:43:31 +0200521AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100522M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200523L: lm-sensors@lm-sensors.org
524S: Maintained
525F: Documentation/hwmon/fam15h_power
526F: drivers/hwmon/fam15h_power.c
527
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700528AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700529M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700530L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700531S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700532F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700533
Jordan Crousef90b8112006-01-06 00:12:14 -0800534AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800535P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700536L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800537W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700539F: drivers/char/hw_random/geode-rng.c
540F: drivers/crypto/geode*
541F: drivers/video/geode/
542F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800543
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200544AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200545M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200546L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100547T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200548S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800549F: drivers/iommu/amd_iommu*.[ch]
550F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200551
Peter Orubae7f5b302008-07-28 18:44:11 +0200552AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100553M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700554L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700556F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200557
Stelian Pop284f42b2006-12-12 18:18:31 +0100558AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700559M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100560S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200561F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100562
Tom Tuckerf94b5332006-09-22 15:22:48 -0700563AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700564M: Tom Tucker <tom@opengridcomputing.com>
565M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700566L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700568F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700569
Hans Verkuil531fca12012-11-23 06:53:24 -0300570ANALOG DEVICES INC AD9389B DRIVER
571M: Hans Verkuil <hans.verkuil@cisco.com>
572L: linux-media@vger.kernel.org
573S: Maintained
574F: drivers/media/i2c/ad9389b*
575
576ANALOG DEVICES INC ADV7604 DRIVER
577M: Hans Verkuil <hans.verkuil@cisco.com>
578L: linux-media@vger.kernel.org
579S: Maintained
580F: drivers/media/i2c/adv7604*
581
Michael Hennerich527a1a82010-10-28 11:31:28 +0000582ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200583M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100584L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000585L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700586W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000587S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100588F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200589F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000590F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000591F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100592F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000593
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400594ANALOG DEVICES INC ASOC DRIVERS
595L: uclinux-dist-devel@blackfin.uclinux.org
596L: alsa-devel@alsa-project.org (moderated for non-subscribers)
597W: http://blackfin.uclinux.org/
598S: Supported
599F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400600
Johannes Berg42269062006-07-25 16:15:50 +0200601AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700602M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000603L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700604L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700606F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200609M: Jiri Kosina <jkosina@suse.cz>
610S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700611F: arch/x86/kernel/apm_32.c
612F: include/linux/apm_bios.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -0800613F: include/uapi/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200614F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700616APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700617M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700618L: linux-input@vger.kernel.org
619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700620F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700621
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700622APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200623M: Henrik Rydberg <rydberg@euromail.se>
624L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700626F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700629M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700631F: drivers/net/appletalk/
632F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Viresh Kumara4801672011-02-22 15:46:07 +0530634ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700635M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530636L: linux-ide@vger.kernel.org
637S: Maintained
638F: include/linux/pata_arasan_cf_data.h
639F: drivers/ata/pata_arasan_cf.c
640
Jaya Kumar1154ea72005-06-21 17:17:04 -0700641ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700642M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700644F: drivers/video/arcfb.c
645F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700648M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700650F: arch/arm/lib/floppydma.S
651F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Will Deacon6f965212011-07-01 14:38:53 +0100653ARM PMU PROFILING AND DEBUGGING
654M: Will Deacon <will.deacon@arm.com>
655S: Maintained
656F: arch/arm/kernel/perf_event*
657F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100658F: arch/arm/include/asm/pmu.h
659F: arch/arm/kernel/hw_breakpoint.c
660F: arch/arm/include/asm/hw_breakpoint.h
661
Russell Kingd4275352009-04-16 14:05:27 +0100662ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700663M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700664L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100665W: http://www.arm.linux.org.uk/
666S: Maintained
667F: arch/arm/
668
Stephen Boydd323c2432012-10-24 11:00:29 -0700669ARM SUB-ARCHITECTURES
670L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
671S: MAINTAINED
672F: arch/arm/mach-*/
673F: arch/arm/plat-*/
674T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
675
Russell Kingcefbf4e2009-11-22 17:40:28 +0000676ARM PRIMECELL AACI PL041 DRIVER
677M: Russell King <linux@arm.linux.org.uk>
678S: Maintained
679F: sound/arm/aaci.*
680
681ARM PRIMECELL CLCD PL110 DRIVER
682M: Russell King <linux@arm.linux.org.uk>
683S: Maintained
684F: drivers/video/amba-clcd.*
685
686ARM PRIMECELL KMI PL050 DRIVER
687M: Russell King <linux@arm.linux.org.uk>
688S: Maintained
689F: drivers/input/serio/ambakmi.*
690F: include/linux/amba/kmi.h
691
Russell King2761f5c2007-05-24 06:56:08 +0200692ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200693S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700694F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200695
Russell Kingcefbf4e2009-11-22 17:40:28 +0000696ARM PRIMECELL BUS SUPPORT
697M: Russell King <linux@arm.linux.org.uk>
698S: Maintained
699F: drivers/amba/
700F: include/linux/amba/bus.h
701
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800702ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700703M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700704L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800705S: Maintained
706
Sergey Lapin9c784f92008-08-03 02:29:48 +0100707ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700708M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700709L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100710S: Maintained
711
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800712ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700713M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700714L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800715S: Maintained
716
Maxime Ripard1b106692012-11-15 21:51:26 +0100717ARM/Allwinner A1X SoC support
718M: Maxime Ripard <maxime.ripard@free-electrons.com>
719L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
720S: Maintained
721F: arch/arm/mach-sunxi/
722
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800723ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700724M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800725M: Nicolas Ferre <nicolas.ferre@atmel.com>
726M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700727L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200728W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800729W: http://www.linux4sam.org
730S: Supported
731F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100732
Rob Herring986cf2e2011-06-22 11:28:53 -0500733ARM/CALXEDA HIGHBANK ARCHITECTURE
734M: Rob Herring <rob.herring@calxeda.com>
735L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
736S: Maintained
737F: arch/arm/mach-highbank/
738
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300739ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
740M: Anton Vorontsov <avorontsov@mvista.com>
741S: Maintained
742F: arch/arm/mach-cns3xxx/
743T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
744
Alexander Shiyan386ab512012-11-17 17:57:24 +0400745ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
746M: Alexander Shiyan <shc_work@mail.ru>
747L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
748S: Odd Fixes
749F: arch/arm/mach-clps711x/
750
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800751ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100752M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000753M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700754L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800755S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100756F: arch/arm/mach-ep93xx/
757F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800758
759ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700760M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700761L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800762S: Maintained
763
Russell Kingd4275352009-04-16 14:05:27 +0100764ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700765M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700766L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700767S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100768F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700769F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100770
Mike Rapoportd48134e2008-08-20 09:03:26 +0100771ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700772M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700773L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100774S: Maintained
775
Hubert Feurstein94150092009-10-07 08:36:07 +0100776ARM/CONTEC MICRO9 MACHINE SUPPORT
777M: Hubert Feurstein <hubert.feurstein@contec.at>
778S: Maintained
779F: arch/arm/mach-ep93xx/micro9.c
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700782M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783S: Maintained
784
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200785ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100786M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700787L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100788T: git git://git.berlios.de/gemini-board
789S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300790F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200791
Barry Songa990cbd2011-07-12 21:44:10 +0800792ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
793M: Barry Song <baohua.song@csr.com>
794L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
795S: Maintained
796F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800797F: drivers/dma/sirf-dma.c
798F: drivers/i2c/busses/i2c-sirf.c
799F: drivers/pinctrl/pinctrl-sirf.c
800F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800801
Russell Kingd4275352009-04-16 14:05:27 +0100802ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700803M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700804L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100805W: http://www.arm.linux.org.uk/
806S: Maintained
807F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700808F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100809
Russell Kinga9da4f72008-07-12 21:42:04 +0100810ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700811M: Daniel Ribeiro <drwyrm@gmail.com>
812M: Stefan Schmidt <stefan@openezx.org>
813M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200814L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100815W: http://www.openezx.org/
816S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200817T: topgit git://git.openezx.org/openezx.git
818F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100819
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200820ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100821M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700822L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100823S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700824T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300825F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200826
Russell Kingd4275352009-04-16 14:05:27 +0100827ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700828M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700829L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100830W: http://www.arm.linux.org.uk/
831S: Maintained
832F: arch/arm/include/asm/hardware/dec21285.h
833F: arch/arm/mach-footbridge/
834
Sascha Hauer86183a52008-07-24 23:50:35 +0200835ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700836M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700837L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200838S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700839T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100840F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700841F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200842
Shawn Guo8bcb97652011-10-07 22:24:18 +0800843ARM/FREESCALE IMX6
844M: Shawn Guo <shawn.guo@linaro.org>
845L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
846S: Maintained
847T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
848F: arch/arm/mach-imx/*imx6*
849
Shawn Guoa9866a02011-10-21 11:53:34 +0800850ARM/FREESCALE MXS ARM ARCHITECTURE
851M: Shawn Guo <shawn.guo@linaro.org>
852L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
853S: Maintained
854T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
855F: arch/arm/mach-mxs/
856
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800857ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700858M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700859L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800860S: Maintained
861
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100862ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700863M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700864L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100865S: Maintained
866
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200867ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700868M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100869M: Paul Parsons <lost.distance@yahoo.com>
870L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200871S: Maintained
872F: arch/arm/mach-pxa/hx4700.c
873F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100874F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200875
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100876ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700877M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200878W: www.jlime.com
879S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700880T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
881F: arch/arm/mach-sa1100/jornada720.c
882F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100883
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200884ARM/IGEP MACHINE SUPPORT
885M: Enric Balletbo i Serra <eballetbo@gmail.com>
886M: Javier Martinez Canillas <javier@dowhile0.org>
887L: linux-omap@vger.kernel.org
888L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
889S: Maintained
890F: arch/arm/mach-omap2/board-igep0020.c
891
Marek Vasut403d2972010-05-22 00:29:39 +0200892ARM/INCOME PXA270 SUPPORT
893M: Marek Vasut <marek.vasut@gmail.com>
894L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
895S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700896F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200897
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800898ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700899M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700900M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700901L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700902S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100903
904ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700905M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700906L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700907S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800908
909ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700910M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700911M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700912L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700913S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800914
915ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700916M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700917M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700918L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700919S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800920
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800921ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700922M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700923L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800924S: Maintained
925
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200926ARM/INTEL IXP4XX ARM ARCHITECTURE
927M: Imre Kaloz <kaloz@openwrt.org>
928M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100929L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200930S: Maintained
931F: arch/arm/mach-ixp4xx/
932
Joe Perches838553c2010-10-26 14:22:59 -0700933ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100934M: Jonathan Cameron <jic23@cam.ac.uk>
935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
936S: Maintained
937F: arch/arm/mach-pxa/stargate2.c
938F: drivers/pcmcia/pxa2xx_stargate2.c
939
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800940ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700941M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700942M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700943L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700944S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800945
946ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700947M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700948L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800949S: Maintained
950
951ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700952M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700953L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800954S: Maintained
955
Philipp Zabel3b8861712008-07-09 21:27:15 +0100956ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700957M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100958S: Maintained
959
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200960ARM/Marvell Armada 370 and Armada XP SOC support
961M: Jason Cooper <jason@lakedaemon.net>
962M: Andrew Lunn <andrew@lunn.ch>
963M: Gregory Clement <gregory.clement@free-electrons.com>
964L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
965S: Maintained
966F: arch/arm/mach-mvebu/
967
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400968ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
969M: Jason Cooper <jason@lakedaemon.net>
970M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700971L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400972S: Maintained
973F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400974F: arch/arm/mach-kirkwood/
975F: arch/arm/mach-mv78xx0/
976F: arch/arm/mach-orion5x/
977F: arch/arm/plat-orion/
978
Alexander Clouterd69ac132011-04-14 15:22:02 -0700979ARM/Orion SoC/Technologic Systems TS-78xx platform support
980M: Alexander Clouter <alex@digriz.org.uk>
981L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
982W: http://www.digriz.org.uk/ts78xx/kernel
983S: Maintained
984F: arch/arm/mach-orion5x/ts78xx-*
985
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000986ARM/MICREL KS8695 ARCHITECTURE
987M: Greg Ungerer <gerg@uclinux.org>
988L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
989F: arch/arm/mach-ks8695
990S: Odd Fixes
991
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200992ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700993M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700994L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200995F: arch/arm/mach-pxa/mioa701.c
996S: Maintained
997
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100998ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700999M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +01001000S: Maintained
1001
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001002ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -07001003M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +02001004M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -07001005M: STEricsson <STEricsson_nomadik_linux@list.st.com>
1006L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1007S: Maintained
1008F: arch/arm/mach-nomadik/
1009F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +01001010F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +02001011T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +01001012
Andy Green9d762952009-05-19 06:41:42 -03001013ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001014M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001015L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1016W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1017S: Supported
1018
Daniel Walker0c19d212009-12-07 16:53:51 -08001019ARM/QUALCOMM MSM MACHINE SUPPORT
1020M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001021M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001022M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001023L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001024F: arch/arm/mach-msm/
1025F: drivers/video/msm/
1026F: drivers/mmc/host/msm_sdcc.c
1027F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001028F: drivers/tty/serial/msm_serial.h
1029F: drivers/tty/serial/msm_serial.c
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001030F: drivers/*/pm8???-*
1031F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001032T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001033S: Maintained
1034
Dirk Opfer8459c152005-11-06 14:27:52 +00001035ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001036M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1037M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001038S: Maintained
1039
Marek Vasut5d783a22009-07-16 13:26:48 +02001040ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001041M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001042L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001043W: http://hackndev.com
1044S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001045F: arch/arm/mach-pxa/include/mach/palmtx.h
1046F: arch/arm/mach-pxa/palmtx.c
1047F: arch/arm/mach-pxa/include/mach/palmt5.h
1048F: arch/arm/mach-pxa/palmt5.c
1049F: arch/arm/mach-pxa/include/mach/palmld.h
1050F: arch/arm/mach-pxa/palmld.c
1051F: arch/arm/mach-pxa/include/mach/palmte2.h
1052F: arch/arm/mach-pxa/palmte2.c
1053F: arch/arm/mach-pxa/include/mach/palmtc.h
1054F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001055
Joe Perchesb57fe922009-12-14 18:00:52 -08001056ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001057M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001058L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001059W: http://hackndev.com
1060S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001061F: arch/arm/mach-pxa/include/mach/palmtreo.h
1062F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001063
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001064ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001065M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001066L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001067W: http://hackndev.com
1068S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001069F: arch/arm/mach-pxa/include/mach/palmz72.h
1070F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001073M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1075S: Maintained
1076
1077ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001078M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001079L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080W: http://www.arm.linux.org.uk/
1081S: Maintained
1082
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001083ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001084M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001085L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001086S: Maintained
1087
Russell Kingd4275352009-04-16 14:05:27 +01001088ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001089M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001090L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001091W: http://www.arm.linux.org.uk/
1092S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001093F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1094F: arch/arm/include/asm/hardware/ioc.h
1095F: arch/arm/include/asm/hardware/iomd.h
1096F: arch/arm/include/asm/hardware/memc.h
1097F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001098F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001099F: drivers/net/ethernet/i825xx/ether1*
1100F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001101F: drivers/scsi/arm/
1102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001104M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105W: http://www.shark-linux.de/shark.html
1106S: Maintained
1107
Ben Dooksb21477f2009-06-13 10:46:34 +01001108ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001109M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001110M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001111L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001112L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001113W: http://www.fluff.org/ben/linux/
1114S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001115F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001116F: arch/arm/plat-s3c24xx/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001117F: arch/arm/mach-s3c24*/
1118F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001119F: drivers/*/*s3c2410*
1120F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001121F: drivers/spi/spi-s3c*
1122F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001124ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001125M: Kukjin Kim <kgene.kim@samsung.com>
1126L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1127L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1128S: Maintained
1129F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001130F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001131
Kyungmin Park10ffa962011-03-04 17:36:26 -08001132ARM/SAMSUNG MOBILE MACHINE SUPPORT
1133M: Kyungmin Park <kyungmin.park@samsung.com>
1134L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1135S: Maintained
1136F: arch/arm/mach-s5pv210/mach-aquila.c
1137F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001138F: arch/arm/mach-exynos/mach-universal_c210.c
1139F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001140
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001141ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1142M: Kyungmin Park <kyungmin.park@samsung.com>
1143M: Kamil Debski <k.debski@samsung.com>
1144L: linux-arm-kernel@lists.infradead.org
1145L: linux-media@vger.kernel.org
1146S: Maintained
1147F: drivers/media/platform/s5p-g2d/
1148
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001149ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1150M: Kyungmin Park <kyungmin.park@samsung.com>
1151M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1152L: linux-arm-kernel@lists.infradead.org
1153L: linux-media@vger.kernel.org
1154S: Maintained
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001155F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001156F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001157
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001158ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1159M: Kyungmin Park <kyungmin.park@samsung.com>
1160M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001161M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001162L: linux-arm-kernel@lists.infradead.org
1163L: linux-media@vger.kernel.org
1164S: Maintained
Cesar Eduardo Barros934455d2013-01-04 15:35:17 -08001165F: arch/arm/plat-samsung/s5p-dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001166F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001167
1168ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1169M: Kyungmin Park <kyungmin.park@samsung.com>
1170M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1171L: linux-arm-kernel@lists.infradead.org
1172L: linux-media@vger.kernel.org
1173S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001174F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001175
Paul Mundtd48d38e2010-02-08 12:50:24 +09001176ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001177M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001178M: Magnus Damm <magnus.damm@gmail.com>
1179L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001180W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001181Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001182T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001183S: Supported
1184F: arch/arm/mach-shmobile/
1185F: drivers/sh/
1186
Dinh Nguyen66314222012-07-18 16:07:18 -06001187ARM/SOCFPGA ARCHITECTURE
1188M: Dinh Nguyen <dinguyen@altera.com>
1189S: Maintained
1190F: arch/arm/mach-socfpga/
1191
1192ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1193M: Dinh Nguyen <dinguyen@altera.com>
1194S: Maintained
1195F: drivers/clk/socfpga/
1196
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001197ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001198M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001199L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001200S: Maintained
1201
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001202ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001203M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001204L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1205S: Maintained
1206
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001207ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001208M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001209L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001210S: Maintained
1211
wanzongshun98ad6e32009-02-13 06:04:32 +01001212ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001213M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001214L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001215W: http://www.mcuos.com
1216S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001217F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001218F: drivers/input/keyboard/w90p910_keypad.c
1219F: drivers/input/touchscreen/w90p910_ts.c
1220F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001221F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001222F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001223F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001224F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001225F: drivers/usb/host/ehci-w90x900.c
1226F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001227
Linus Walleij54274d72010-04-04 10:58:03 +01001228ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001229M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001230L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1231S: Supported
1232F: arch/arm/mach-u300/
1233F: drivers/i2c/busses/i2c-stu300.c
1234F: drivers/rtc/rtc-coh901331.c
1235F: drivers/watchdog/coh901327_wdt.c
1236F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001237F: drivers/mfd/ab3100*
1238F: drivers/rtc/rtc-ab3100.c
1239F: drivers/rtc/rtc-coh901331.c
1240T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001241
Linus Walleij87572882010-12-22 09:18:29 +01001242ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001243M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001244M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001245L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1246S: Maintained
1247F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001248F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001249F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001250F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001251F: drivers/mfd/abx500*
1252F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001253F: drivers/mfd/dbx500*
1254F: drivers/mfd/db8500*
1255F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001256F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001257F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001258T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001259
Russell Kingd4275352009-04-16 14:05:27 +01001260ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001261M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001262L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001263W: http://www.arm.linux.org.uk/
1264S: Maintained
1265F: arch/arm/vfp/
1266
Marek Vasute66b6d82010-03-26 06:51:32 +01001267ARM/VOIPAC PXA270 SUPPORT
1268M: Marek Vasut <marek.vasut@gmail.com>
1269L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1270S: Maintained
1271F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001272F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001273
Tony Prisk04529fe2012-07-24 04:19:37 +12001274ARM/VT8500 ARM ARCHITECTURE
1275M: Tony Prisk <linux@prisktech.co.nz>
1276L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1277S: Maintained
1278F: arch/arm/mach-vt8500/
1279F: drivers/video/vt8500lcdfb.*
1280F: drivers/video/wm8505fb*
1281F: drivers/video/wmt_ge_rops.*
1282F: drivers/tty/serial/vt8500_serial.c
Cesar Eduardo Barros7beefe12013-01-04 15:35:18 -08001283F: drivers/rtc/rtc-vt8500.c
Tony Prisk3a96dff2012-11-18 15:33:06 +13001284F: drivers/mmc/host/wmt-sdmmc.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001285
Marek Vasute66b6d82010-03-26 06:51:32 +01001286ARM/ZIPIT Z2 SUPPORT
1287M: Marek Vasut <marek.vasut@gmail.com>
1288L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1289S: Maintained
1290F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001291F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001292
Catalin Marinas38074222012-03-05 11:49:34 +00001293ARM64 PORT (AARCH64 ARCHITECTURE)
1294M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001295M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001296L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297S: Maintained
1298F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001299F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001300
Laurent Pinchart9d7005f92012-12-10 20:38:24 -03001301AS3645A LED FLASH CONTROLLER DRIVER
1302M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1303L: linux-media@vger.kernel.org
1304T: git git://linuxtv.org/media_tree.git
1305S: Maintained
1306F: drivers/media/i2c/as3645a.c
1307F: include/media/as3645a.h
1308
George Josephd58de032010-03-05 22:17:25 +01001309ASC7621 HARDWARE MONITOR DRIVER
1310M: George Joseph <george.joseph@fairview5.com>
1311L: lm-sensors@lm-sensors.org
1312S: Maintained
1313F: Documentation/hwmon/asc7621
1314F: drivers/hwmon/asc7621.c
1315
Corentin Charyb229ece2011-02-26 10:20:40 +01001316ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001317M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05001319L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001320W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001322F: drivers/platform/x86/asus*.c
1323F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001325ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001326M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001327L: lm-sensors@lm-sensors.org
1328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001329F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001330
Andrew Morton953a6472008-11-06 12:53:28 -08001331ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001332M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001333W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001335F: Documentation/crypto/async-tx-api.txt
1336F: crypto/async_tx/
1337F: drivers/dma/
1338F: include/linux/dmaengine.h
1339F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001340
Wolfram Sanga1867d32009-09-18 22:45:51 +02001341AT24 EEPROM DRIVER
1342M: Wolfram Sang <w.sang@pengutronix.de>
1343L: linux-i2c@vger.kernel.org
1344S: Maintained
1345F: drivers/misc/eeprom/at24.c
1346F: include/linux/i2c/at24.h
1347
Randy Dunlape7839f22008-10-12 16:11:45 -07001348ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001349M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001350W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001352F: Documentation/aoe/
1353F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Joe Perches9a10a872010-12-01 09:37:55 -08001355ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001356M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001357L: linux-wireless@vger.kernel.org
1358S: Supported
1359F: drivers/net/wireless/ath/*
1360
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001361ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001362M: Jiri Slaby <jirislaby@gmail.com>
1363M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001364M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001365L: linux-wireless@vger.kernel.org
1366L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001367W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001368S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001369F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001370
Kalle Valo12e62d62011-09-13 10:21:25 +03001371ATHEROS ATH6KL WIRELESS DRIVER
1372M: Kalle Valo <kvalo@qca.qualcomm.com>
1373L: linux-wireless@vger.kernel.org
1374W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1375T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1376S: Supported
1377F: drivers/net/wireless/ath/ath6kl/
1378
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001379ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001380M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1381M: Jouni Malinen <jouni@qca.qualcomm.com>
1382M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1383M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001384L: linux-wireless@vger.kernel.org
1385L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001386W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001387S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001388F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001389
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001390CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1391M: Christian Lamparter <chunkeey@googlemail.com>
1392L: linux-wireless@vger.kernel.org
1393W: http://wireless.kernel.org/en/users/Drivers/carl9170
1394S: Maintained
1395F: drivers/net/wireless/ath/carl9170/
1396
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001397ATK0110 HWMON DRIVER
1398M: Luca Tettamanti <kronos.it@gmail.com>
1399L: lm-sensors@lm-sensors.org
1400S: Maintained
1401F: drivers/hwmon/asus_atk0110.c
1402
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001403ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001404M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001406F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001407
Chris Snook7ae115b2008-09-09 03:26:57 -04001408ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001409M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001410M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001411L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001412W: http://sourceforge.net/projects/atl1
1413W: http://atl1.sourceforge.net
1414S: Maintained
Jeff Kirsher2b133ad62011-05-20 06:55:16 -07001415F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001418M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001419L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001420L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421W: http://linux-atm.sourceforge.net
1422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001423F: drivers/atm/
1424F: include/linux/atm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001425F: include/uapi/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001427ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001428M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001429S: Maintained
1430F: drivers/mmc/host/atmel-mci.c
1431F: drivers/mmc/host/atmel-mci-regs.h
1432
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001433ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001434M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001435S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001436F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001437
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001438ATMEL DMA DRIVER
1439M: Nicolas Ferre <nicolas.ferre@atmel.com>
1440L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1441S: Supported
1442F: drivers/dma/at_hdmac.c
1443F: drivers/dma/at_hdmac_regs.h
Cesar Eduardo Barros6f0d65a2013-01-04 15:35:20 -08001444F: include/linux/platform_data/dma-atmel.h
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001445
Josh Wu15515542012-03-23 17:56:29 +08001446ATMEL ISI DRIVER
1447M: Josh Wu <josh.wu@atmel.com>
1448L: linux-media@vger.kernel.org
1449S: Supported
Cesar Eduardo Barrosfb1cc072012-12-11 17:49:48 -03001450F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001451F: include/media/atmel-isi.h
1452
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001453ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001454M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001455L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001457F: drivers/video/atmel_lcdfb.c
1458F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001459
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001460ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001461M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001462S: Supported
Jeff Kirsher9f2f381f2011-06-18 01:52:36 -07001463F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001464
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001465ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001466M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001467S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001468F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001469
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001470ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1471M: Nicolas Ferre <nicolas.ferre@atmel.com>
1472L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1473S: Supported
1474F: drivers/misc/atmel_tclib.c
1475F: drivers/clocksource/tcb_clksrc.c
1476
Josh Wuff2675d2012-03-23 17:56:55 +08001477ATMEL TSADCC DRIVER
1478M: Josh Wu <josh.wu@atmel.com>
1479L: linux-input@vger.kernel.org
1480S: Supported
1481F: drivers/input/touchscreen/atmel_tsadcc.c
1482
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001483ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001484M: Nicolas Ferre <nicolas.ferre@atmel.com>
1485L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001486S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001487F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001490M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001491L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492W: http://www.thekelleys.org.uk/atmel
1493W: http://atmelwlandriver.sourceforge.net/
1494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001495F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Chris Wrighta92b7b82005-07-07 18:12:23 -07001497AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001498M: Al Viro <viro@zeniv.linux.org.uk>
1499M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001500L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001501W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001502T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001504F: include/linux/audit.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001505F: include/uapi/linux/audit.h
Joe Perches679655d2009-04-07 20:44:32 -07001506F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001507
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001508AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001509M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001510W: http://miguelojeda.es/auxdisplay.htm
1511W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001513F: drivers/auxdisplay/
1514F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001515
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001516AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001517M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1518M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001519W: http://www.atmel.com/products/AVR32/
1520W: http://avr32linux.org/
1521W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001523F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001524
1525AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001526M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1527M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001529F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001532M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001534W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001536F: include/uapi/linux/ax25.h
Joe Perches679655d2009-04-07 20:44:32 -07001537F: include/net/ax25.h
1538F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001540AZ6007 DVB DRIVER
1541M: Mauro Carvalho Chehab <mchehab@redhat.com>
1542L: linux-media@vger.kernel.org
1543W: http://linuxtv.org
1544T: git git://linuxtv.org/media_tree.git
1545S: Maintained
1546F: drivers/media/usb/dvb-usb-v2/az6007.c
1547
Hans Verkuil67773762012-11-23 07:09:23 -03001548AZTECH FM RADIO RECEIVER DRIVER
1549M: Hans Verkuil <hverkuil@xs4all.nl>
1550L: linux-media@vger.kernel.org
1551T: git git://linuxtv.org/media_tree.git
1552W: http://linuxtv.org
1553S: Maintained
1554F: drivers/media/radio/radio-aztech*
1555
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001556B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001557M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001558L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001559L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001560W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001562F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001563
1564B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001565M: Larry Finger <Larry.Finger@lwfinger.net>
1566M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001567L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001568L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001569W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001571F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001572
Richard Purdie300abeb2007-02-07 22:21:07 +00001573BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001574M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001576F: drivers/video/backlight/
1577F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001578
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001579BATMAN ADVANCED
1580M: Marek Lindner <lindner_marek@yahoo.de>
1581M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001582M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001583L: b.a.t.m.a.n@lists.open-mesh.org
1584W: http://www.open-mesh.org/
1585S: Maintained
1586F: net/batman-adv/
1587
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001588BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001589M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001590L: linux-hams@vger.kernel.org
1591W: http://www.baycom.org/~tom/ham/ham.html
1592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001593F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001594
1595BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001596S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001597F: Documentation/filesystems/befs.txt
1598F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001599
1600BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001601M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001603F: Documentation/filesystems/bfs.txt
1604F: fs/bfs/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001605F: include/uapi/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001606
Bryan Wu1394f032007-05-06 14:50:22 -07001607BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001608M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001609L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001610W: http://blackfin.uclinux.org
1611S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001612F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001613
Bryan Wue190d6b2007-07-17 14:43:44 +08001614BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001615L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001616W: http://blackfin.uclinux.org
1617S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001618F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001619
Mike Frysinger566da5b2007-06-11 15:31:30 +08001620BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001621M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001622L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001623W: http://blackfin.uclinux.org
1624S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001625F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001626
Mike Frysinger936ed492010-03-10 15:20:38 -08001627BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001628M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001629L: uclinux-dist-devel@blackfin.uclinux.org
1630W: http://blackfin.uclinux.org
1631S: Supported
1632F: drivers/mmc/host/bfin_sdh.c
1633
Bryan Wu1394f032007-05-06 14:50:22 -07001634BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001635M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001636L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001637W: http://blackfin.uclinux.org
1638S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001639F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001640
Bryan Wu1e6d3202007-07-15 02:50:02 +08001641BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001642M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001643L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001644W: http://blackfin.uclinux.org
1645S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001646F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001647
Bryan Wud24ecfc2007-05-01 23:26:32 +02001648BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001649M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001650L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001651W: http://blackfin.uclinux.org/
1652S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001653F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001654
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001655BLINKM RGB LED DRIVER
1656M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1657S: Maintained
1658F: drivers/leds/leds-blinkm.c
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001661M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001662T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001664F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Joern Engel2b54aae2008-02-06 01:38:02 -08001666BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001667M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001668L: linux-mtd@lists.infradead.org
1669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001670F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001671
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001672BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001673M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001674M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001675M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001676L: linux-bluetooth@vger.kernel.org
1677W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001678T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1679T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001681F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001684M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001685M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001686M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001687L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001688W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001689T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1690T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001692F: net/bluetooth/
1693F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001696M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001697M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001698L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001699W: http://sourceforge.net/projects/bonding/
1700S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001701F: drivers/net/bonding/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001702F: include/uapi/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Gary Zambrano39105892006-06-22 17:26:20 -07001704BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001705M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001706L: netdev@vger.kernel.org
1707S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001708F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001709
Michael Chan948c51e2006-06-04 02:51:39 -07001710BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001711M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001712L: netdev@vger.kernel.org
1713S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001714F: drivers/net/ethernet/broadcom/bnx2.*
1715F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001716
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001717BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001718M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001719L: netdev@vger.kernel.org
1720S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001721F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001722
Stephen Warrenf680f252012-09-15 00:18:54 -06001723BROADCOM BCM2835 ARM ARCHICTURE
1724M: Stephen Warren <swarren@wwwdotorg.org>
1725L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1726T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1727S: Maintained
1728F: arch/arm/mach-bcm2835/
1729F: arch/arm/boot/dts/bcm2835*
1730F: arch/arm/configs/bcm2835_defconfig
1731F: drivers/*/*bcm2835*
1732
Michael Chan948c51e2006-06-04 02:51:39 -07001733BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001734M: Matt Carlson <mcarlson@broadcom.com>
1735M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001736L: netdev@vger.kernel.org
1737S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001738F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001739
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001740BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1741M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001742M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001743M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001744M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001745L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001746L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001747S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001748F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001749
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001750BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1751M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1752L: linux-scsi@vger.kernel.org
1753S: Supported
1754F: drivers/scsi/bnx2fc/
1755
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001756BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1757M: Rafał Miłecki <zajec5@gmail.com>
1758L: linux-wireless@vger.kernel.org
1759S: Maintained
1760F: drivers/bcma/
1761F: include/linux/bcma/
1762
Jing Huang7725ccf2009-09-23 17:46:15 -07001763BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001764M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001765L: linux-scsi@vger.kernel.org
1766S: Supported
1767F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001768
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001769BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1770M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001771L: netdev@vger.kernel.org
1772S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001773F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001774
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001775BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001776M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001777L: linux-scsi@vger.kernel.org
1778S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001779F: block/bsg.c
1780F: include/linux/bsg.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001781F: include/uapi/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001782
Clemens Ladischaf399172011-01-10 16:32:54 +01001783BT87X AUDIO DRIVER
1784M: Clemens Ladisch <clemens@ladisch.de>
1785L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1786T: git git://git.alsa-project.org/alsa-kernel.git
1787S: Maintained
1788F: Documentation/sound/alsa/Bt87x.txt
1789F: sound/pci/bt87x.c
1790
Michael Bueschff1d5c22008-07-25 01:46:10 -07001791BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001792M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001793W: http://bu3sch.de/btgpio.php
1794S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001795F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001796
Joe Percheseb1eb042009-01-21 10:49:16 -05001797BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001798M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001799L: linux-btrfs@vger.kernel.org
1800W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001801Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001802T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001804F: Documentation/filesystems/btrfs.txt
1805F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001808M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001809L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001810W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001811T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001812S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001813F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001814F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Clemens Ladischaf399172011-01-10 16:32:54 +01001816C-MEDIA CMI8788 DRIVER
1817M: Clemens Ladisch <clemens@ladisch.de>
1818L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1819T: git git://git.alsa-project.org/alsa-kernel.git
1820S: Maintained
1821F: sound/pci/oxygen/
1822
Mark Salter21413552011-10-04 11:21:42 -04001823C6X ARCHITECTURE
1824M: Mark Salter <msalter@redhat.com>
1825M: Aurelien Jacquiot <a-jacquiot@ti.com>
1826L: linux-c6x-dev@linux-c6x.org
1827W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1828S: Maintained
1829F: arch/c6x/
1830
David Howellsa5432f5a2009-04-20 15:46:45 +01001831CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001832M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01001833L: linux-cachefs@redhat.com
1834S: Supported
1835F: Documentation/filesystems/caching/cachefiles.txt
1836F: fs/cachefiles/
1837
Hans Verkuilc815ca32012-11-23 07:05:54 -03001838CADET FM/AM RADIO RECEIVER DRIVER
1839M: Hans Verkuil <hverkuil@xs4all.nl>
1840L: linux-media@vger.kernel.org
1841T: git git://linuxtv.org/media_tree.git
1842W: http://linuxtv.org
1843S: Maintained
1844F: drivers/media/radio/radio-cadet*
1845
Jonathan Corbet77d51402007-03-22 19:44:17 -03001846CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001847M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001848L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001849T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001851F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001852F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001853
Joe Perches201b6ba2010-09-07 20:33:24 +00001854CAIF NETWORK LAYER
1855M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1856L: netdev@vger.kernel.org
1857S: Supported
1858F: Documentation/networking/caif/
1859F: drivers/net/caif/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001860F: include/uapi/linux/caif/
Joe Perches201b6ba2010-09-07 20:33:24 +00001861F: include/net/caif/
1862F: net/caif/
1863
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001864CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001865M: Muli Ben-Yehuda <muli@il.ibm.com>
1866M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001867L: discuss@x86-64.org
1868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001869F: arch/x86/kernel/pci-calgary_64.c
1870F: arch/x86/kernel/tce_64.c
1871F: arch/x86/include/asm/calgary.h
1872F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001873
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001874CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001875M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001876L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001877W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001878T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001879S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001880F: net/can/
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001881F: include/linux/can/core.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001882F: include/uapi/linux/can.h
1883F: include/uapi/linux/can/bcm.h
1884F: include/uapi/linux/can/raw.h
1885F: include/uapi/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001886
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001887CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001888M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001889M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001890L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001891W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001892T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001893S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001894F: drivers/net/can/
1895F: include/linux/can/dev.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001896F: include/linux/can/platform/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001897F: include/uapi/linux/can/error.h
1898F: include/uapi/linux/can/netlink.h
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001899
James Morris95d16c72012-03-16 12:05:48 +11001900CAPABILITIES
1901M: Serge Hallyn <serge.hallyn@canonical.com>
1902L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001903S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001904F: include/linux/capability.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001905F: include/uapi/linux/capability.h
James Morris95d16c72012-03-16 12:05:48 +11001906F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001907F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001908F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001909
Arnd Bergmannb8154542008-05-16 11:10:59 +02001910CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001911M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001912L: linuxppc-dev@lists.ozlabs.org
1913L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001914W: http://www.ibm.com/developerworks/power/cell/
1915S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001916F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001917F: arch/powerpc/include/asm/spu*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001918F: arch/powerpc/include/uapi/asm/spu*.h
Joe Perches679655d2009-04-07 20:44:32 -07001919F: arch/powerpc/oprofile/*cell*
1920F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001921
Sage Weil9030aaf2009-10-06 11:31:15 -07001922CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001923M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001924L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001925W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001926T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001927S: Supported
1928F: Documentation/filesystems/ceph.txt
1929F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001930F: net/ceph
1931F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001932F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001933
David Vrabel18332a82008-09-17 16:34:44 +01001934CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001935L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001936S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001937F: Documentation/usb/WUSB-Design-overview.txt
1938F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001939F: drivers/usb/host/hwa-hc.c
1940F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001941F: drivers/usb/wusbcore/
1942F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001943
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001944CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001945M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001946W: http://miguelojeda.es/auxdisplay.htm
1947W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001949F: drivers/auxdisplay/cfag12864b.c
1950F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001951
1952CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001953M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001954W: http://miguelojeda.es/auxdisplay.htm
1955W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001957F: drivers/auxdisplay/cfag12864bfb.c
1958F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001959
Johannes Berg704232c2007-04-23 12:20:05 -07001960CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001961M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001962L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001963W: http://wireless.kernel.org/
1964T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1965T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001966S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08001967F: include/uapi/linux/nl80211.h
Joe Perches679655d2009-04-07 20:44:32 -07001968F: include/net/cfg80211.h
1969F: net/wireless/*
1970X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001971
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001972CHAR and MISC DRIVERS
1973M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001974M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001975T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001976S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001977F: drivers/char/*
1978F: drivers/misc/*
1979
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001980CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001981M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001982S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001983F: scripts/checkpatch.pl
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001984
Harry Weif8407f262011-02-25 14:44:15 -08001985CHINESE DOCUMENTATION
1986M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08001987L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08001988L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1989S: Maintained
1990F: Documentation/zh_CN/
1991
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001992CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1993M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1994L: linux-usb@vger.kernel.org
1995S: Maintained
1996F: drivers/usb/chipidea/
1997
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001998CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001999M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00002000M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00002001M: Neel Patel <neepatel@cisco.com>
2002M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08002003S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07002004F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08002005
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002006CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07002007M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002008L: netdev@vger.kernel.org
2009S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07002010F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002011
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002012CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002013M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002014L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002016F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002017
Timur Tabid9e9d822008-04-24 08:45:26 +10002018CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002019M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07002020L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002021S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002022F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002023
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002024CLEANCACHE API
2025M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2026L: linux-kernel@vger.kernel.org
2027S: Maintained
2028F: mm/cleancache.c
2029F: include/linux/cleancache.h
2030
Russell Kingd4275352009-04-16 14:05:27 +01002031CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002032M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002033S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002034F: include/linux/clk.h
2035
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002036CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002037M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002038M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
2039M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002040L: linux-scsi@vger.kernel.org
2041S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002042F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002043
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002044CMPC ACPI DRIVER
2045M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2046M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05002047L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002048S: Supported
2049F: drivers/platform/x86/classmate-laptop.c
2050
Nicolas Palix74425ee2010-06-06 17:15:01 +02002051COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002052M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002053M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002054M: Nicolas Palix <nicolas.palix@imag.fr>
2055L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002056W: http://coccinelle.lip6.fr/
2057S: Supported
2058F: scripts/coccinelle/
2059F: scripts/coccicheck
2060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002062M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063M: coda@cs.cmu.edu
2064L: codalist@coda.cs.cmu.edu
2065W: http://www.coda.cs.cmu.edu/
2066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002067F: Documentation/filesystems/coda.txt
2068F: fs/coda/
2069F: include/linux/coda*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002070F: include/uapi/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Mike Turquette7704add2012-05-02 18:37:45 -07002072COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002073M: Mike Turquette <mturquette@linaro.org>
2074L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2075T: git git://git.linaro.org/people/mturquette/linux.git
2076S: Maintained
2077F: drivers/clk/clk.c
2078F: drivers/clk/clk-*
2079F: include/linux/clk-pr*
2080
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002081COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002082M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002083L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002084L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002085W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002086Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002087T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002088S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002089F: Documentation/filesystems/cifs.txt
2090F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002093M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002094L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002096F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002099M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002100L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002102F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
2104COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002105M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002106L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002108F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002110COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002111M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002112L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002114F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002115
Simon Arlott949be0f2007-03-06 02:47:46 -08002116CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002117M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002118L: accessrunner-general@lists.sourceforge.net
2119W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002121F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002122
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002123CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002124M: Joel Becker <jlbec@evilplan.org>
2125T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002126S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002127F: fs/configfs/
2128F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002129
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002130CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002131M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002132L: netdev@vger.kernel.org
2133S: Maintained
2134F: drivers/connector/
2135
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002136CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002137M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002138M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002139L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002140L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002141T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002143F: include/linux/cgroup*
2144F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002145F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002146
Rudolf Marekbebe4672007-05-08 17:22:02 +02002147CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002148M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002149L: lm-sensors@lm-sensors.org
2150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002151F: Documentation/hwmon/coretemp
2152F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002153
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002155M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156W: http://www.fi.muni.cz/~kas/cosa/
2157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002158F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Florian Fainelli4371ee32009-06-01 02:43:17 -07002160CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002161M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002162L: netdev@vger.kernel.org
2163S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002164F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002165
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002167M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002168L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002169L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002171F: drivers/cpufreq/
2172F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
2174CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002175M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002177F: arch/x86/kernel/cpuid.c
2178F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002180CPU POWER MONITORING SUBSYSTEM
2181M: Dominik Brodowski <linux@dominikbrodowski.net>
2182M: Thomas Renninger <trenn@suse.de>
2183S: Maintained
2184F: tools/power/cpupower
2185
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002186CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002187M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002188W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002189W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002190S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002191F: Documentation/cgroups/cpusets.txt
2192F: include/linux/cpuset.h
2193F: kernel/cpuset.c
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002196W: http://sourceforge.net/projects/cramfs/
2197S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002198F: Documentation/filesystems/cramfs.txt
2199F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
2201CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002202M: Mikael Starvik <starvik@axis.com>
2203M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002204L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205W: http://developer.axis.com
2206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002207F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002208F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
2210CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002211M: Herbert Xu <herbert@gondor.apana.org.au>
2212M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002214T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002216F: Documentation/crypto/
2217F: arch/*/crypto/
2218F: crypto/
2219F: drivers/crypto/
2220F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Neil Horman5b07bd52009-02-05 16:03:04 +11002222CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002223M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002224L: linux-crypto@vger.kernel.org
2225S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002226F: crypto/ansi_cprng.c
2227F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002228
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002229CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002230M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002232F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002233
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002234CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002235M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002236L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002237L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002238T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002239W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002240W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002242F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002243F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002244F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002245
Hans Verkuil3f101d92012-11-23 07:00:02 -03002246CX2341X MPEG ENCODER HELPER MODULE
2247M: Hans Verkuil <hverkuil@xs4all.nl>
2248L: linux-media@vger.kernel.org
2249T: git git://linuxtv.org/media_tree.git
2250W: http://linuxtv.org
2251S: Maintained
2252F: drivers/media/i2c/cx2341x*
2253F: include/media/cx2341x*
2254
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002255CX88 VIDEO4LINUX DRIVER
2256M: Mauro Carvalho Chehab <mchehab@redhat.com>
2257L: linux-media@vger.kernel.org
2258W: http://linuxtv.org
2259T: git git://linuxtv.org/media_tree.git
2260S: Odd fixes
2261F: Documentation/video4linux/cx88/
2262F: drivers/media/pci/cx88/
2263
Antti Palosaari91952bc2012-10-01 12:28:46 -03002264CXD2820R MEDIA DRIVER
2265M: Antti Palosaari <crope@iki.fi>
2266L: linux-media@vger.kernel.org
2267W: http://linuxtv.org/
2268W: http://palosaari.fi/linux/
2269Q: http://patchwork.linuxtv.org/project/linux-media/list/
2270T: git git://linuxtv.org/anttip/media_tree.git
2271S: Maintained
2272F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002273
Steve Wisee5ec3782008-05-20 14:06:33 -07002274CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002275M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002276L: netdev@vger.kernel.org
2277W: http://www.chelsio.com
2278S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002279F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002280
2281CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002282M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002283L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002284W: http://www.openfabrics.org
2285S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002286F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002287
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002288CXGB4 ETHERNET DRIVER (CXGB4)
2289M: Dimitris Michailidis <dm@chelsio.com>
2290L: netdev@vger.kernel.org
2291W: http://www.chelsio.com
2292S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002293F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002294
2295CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2296M: Steve Wise <swise@chelsio.com>
2297L: linux-rdma@vger.kernel.org
2298W: http://www.openfabrics.org
2299S: Supported
2300F: drivers/infiniband/hw/cxgb4/
2301
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002302CXGB4VF ETHERNET DRIVER (CXGB4VF)
2303M: Casey Leedom <leedom@chelsio.com>
2304L: netdev@vger.kernel.org
2305W: http://www.chelsio.com
2306S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002307F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002308
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002309STMMAC ETHERNET DRIVER
2310M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2311L: netdev@vger.kernel.org
2312W: http://www.stlinux.com
2313S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002314F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002315
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002317M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002318L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319W: http://www.arm.linux.org.uk/
2320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002321F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002322
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002324M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002325W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002327F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
2329CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002331S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002332F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002333F: include/linux/cyclades.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002334F: include/uapi/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
2336CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002338S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002339F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002341CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002342M: Javier Martinez Canillas <javier@dowhile0.org>
2343L: linux-input@vger.kernel.org
2344S: Maintained
2345F: drivers/input/touchscreen/cyttsp*
2346F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002347
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002349M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350W: http://yaina.de/jreuter/
2351W: http://www.qsl.net/dl1bke/
2352L: linux-hams@vger.kernel.org
2353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002354F: net/ax25/af_ax25.c
2355F: net/ax25/ax25_dev.c
2356F: net/ax25/ax25_ds_*
2357F: net/ax25/ax25_in.c
2358F: net/ax25/ax25_out.c
2359F: net/ax25/ax25_timer.c
2360F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002362DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002363L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002364S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002365F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002366F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002367
2368DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002369M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002370W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002371M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002373F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002376M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002377M: Ali Akcaagac <aliakc@web.de>
2378M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002380L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381L: http://lists.twibble.org/mailman/listinfo/dc395x/
2382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002383F: Documentation/scsi/dc395x.txt
2384F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002386DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002387M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002388L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002389W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002391F: include/linux/dccp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002392F: include/uapi/linux/dccp.h
Joe Perches679655d2009-04-07 20:44:32 -07002393F: include/linux/tfrc.h
2394F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002395
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397W: http://linux-decnet.sourceforge.net
2398L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002399S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002400F: Documentation/networking/decnet.txt
2401F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
2403DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002404M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002406F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002408DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002409M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05002410L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002412F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002415M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416W: http://www.debian.org/~dz/i8k/
2417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002418F: drivers/char/i8k.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002419F: include/uapi/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
Doug Warzecha90563ec2005-09-06 15:17:15 -07002421DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002422M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002424F: Documentation/dcdbas.txt
2425F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002426
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002427DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002428M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002429S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002430F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002431
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002432DESIGNWARE USB3 DRD IP DRIVER
2433M: Felipe Balbi <balbi@ti.com>
2434L: linux-usb@vger.kernel.org
2435L: linux-omap@vger.kernel.org
2436T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2437S: Maintained
2438F: drivers/usb/dwc3/
2439
Kyungmin Park89d07762012-01-10 15:09:09 -08002440DEVICE FREQUENCY (DEVFREQ)
2441M: MyungJoo Ham <myungjoo.ham@samsung.com>
2442M: Kyungmin Park <kyungmin.park@samsung.com>
2443L: linux-kernel@vger.kernel.org
2444S: Maintained
2445F: drivers/devfreq/
2446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002448M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450S: Maintained
2451
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002452DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002453M: Alasdair Kergon <agk@redhat.com>
2454M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002455L: dm-devel@redhat.com
2456W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002457Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002458T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002460F: Documentation/device-mapper/
2461F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002462F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002463F: include/linux/device-mapper.h
2464F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002465
Guenter Roeck335d7c52011-01-26 11:45:49 -08002466DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002467M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002468L: linux-i2c@vger.kernel.org
2469S: Maintained
2470F: drivers/i2c/busses/i2c-diolan-u2c.c
2471
Randy Dunlape7839f22008-10-12 16:11:45 -07002472DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002473M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002475F: Documentation/filesystems/dnotify.txt
2476F: fs/notify/dnotify/
2477F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
2479DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002480M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2482W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2483W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2484S: Maintained
2485
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002486DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002487M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002489F: Documentation/filesystems/quota.txt
2490F: fs/quota/
2491F: include/linux/quota*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002492F: include/uapi/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
Bernie Thompson702686a2012-03-01 13:52:13 -08002494DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2495M: Bernie Thompson <bernie@plugable.com>
2496L: linux-fbdev@vger.kernel.org
2497S: Maintained
2498W: http://plugable.com/category/projects/udlfb/
2499F: drivers/video/udlfb.c
2500F: include/video/udlfb.h
2501F: Documentation/fb/udlfb.txt
2502
Randy Dunlape7839f22008-10-12 16:11:45 -07002503DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002504M: Christine Caulfield <ccaulfie@redhat.com>
2505M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002506L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002507W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002508T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002509S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002510F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002511
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302512DMA BUFFER SHARING FRAMEWORK
2513M: Sumit Semwal <sumit.semwal@linaro.org>
2514S: Maintained
2515L: linux-media@vger.kernel.org
2516L: dri-devel@lists.freedesktop.org
2517L: linaro-mm-sig@lists.linaro.org
2518F: drivers/base/dma-buf*
2519F: include/linux/dma-buf*
2520F: Documentation/dma-buf-sharing.txt
2521T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2522
Dan Williamsb3e5f262007-08-07 10:26:35 -07002523DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002524M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002525M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002526S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002527F: drivers/dma/
2528F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302529T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2530T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002531
Juerg Haefligerb8250372007-06-09 10:11:16 -04002532DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002533M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002534L: lm-sensors@lm-sensors.org
2535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002536F: Documentation/hwmon/dme1737
2537F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002538
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002539DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002540M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002541L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002542S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002543F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002544
Joe Perches7d2c86b2009-04-07 20:59:01 -07002545DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002546M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002547L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002548T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002550F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002553M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554L: blinux-list@redhat.com
2555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002556F: drivers/char/dtlk.c
2557F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002559DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002560M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002561L: linux-scsi@vger.kernel.org
2562W: http://www.adaptec.com/
2563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002564F: drivers/scsi/dpt*
2565F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002566
Philipp Reisnerb411b362009-09-25 16:07:19 -07002567DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002568P: Philipp Reisner
2569P: Lars Ellenberg
2570M: drbd-dev@lists.linbit.com
2571L: drbd-user@lists.linbit.com
2572W: http://www.drbd.org
2573T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2574T: git git://git.drbd.org/drbd-8.3.git
2575S: Supported
2576F: drivers/block/drbd/
2577F: lib/lru_cache.c
2578F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002579
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002580DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002581M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002582T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002584F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002585F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002586F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002587F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002588F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002589F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002590F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
2592DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002593M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002594L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002595T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002597F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002598F: include/drm/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002599F: include/uapi/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
Chris Wilson8daf7472010-09-28 14:07:26 +01002601INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002602M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002603L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002604L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002605T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002606S: Supported
2607F: drivers/gpu/drm/i915
2608F: include/drm/i915*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002609F: include/uapi/drm/i915*
Chris Wilson8daf7472010-09-28 14:07:26 +01002610
Kyungmin Park398a6d42011-11-02 11:33:16 +09002611DRM DRIVERS FOR EXYNOS
2612M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002613M: Joonyoung Shim <jy0922.shim@samsung.com>
2614M: Seung-Woo Kim <sw0312.kim@samsung.com>
2615M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002616L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002617T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002618S: Supported
2619F: drivers/gpu/drm/exynos
2620F: include/drm/exynos*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002621F: include/uapi/drm/exynos*
Kyungmin Park398a6d42011-11-02 11:33:16 +09002622
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002623DRM DRIVERS FOR NVIDIA TEGRA
2624M: Thierry Reding <thierry.reding@avionic-design.de>
2625L: dri-devel@lists.freedesktop.org
2626L: linux-tegra@vger.kernel.org
2627T: git git://gitorious.org/thierryreding/linux.git
2628S: Maintained
2629F: drivers/gpu/drm/tegra/
2630F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2631
Alexey Klimov598df1a2012-11-28 17:16:32 -03002632DSBR100 USB FM RADIO DRIVER
2633M: Alexey Klimov <klimov.linux@gmail.com>
2634L: linux-media@vger.kernel.org
2635T: git git://linuxtv.org/media_tree.git
2636S: Maintained
2637F: drivers/media/radio/dsbr100.c
2638
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002640M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002641L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002643F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Antti Palosaari91952bc2012-10-01 12:28:46 -03002645DVB_USB_AF9015 MEDIA DRIVER
2646M: Antti Palosaari <crope@iki.fi>
2647L: linux-media@vger.kernel.org
2648W: http://linuxtv.org/
2649W: http://palosaari.fi/linux/
2650Q: http://patchwork.linuxtv.org/project/linux-media/list/
2651T: git git://linuxtv.org/anttip/media_tree.git
2652S: Maintained
2653F: drivers/media/usb/dvb-usb-v2/af9015*
2654
2655DVB_USB_AF9035 MEDIA DRIVER
2656M: Antti Palosaari <crope@iki.fi>
2657L: linux-media@vger.kernel.org
2658W: http://linuxtv.org/
2659W: http://palosaari.fi/linux/
2660Q: http://patchwork.linuxtv.org/project/linux-media/list/
2661T: git git://linuxtv.org/anttip/media_tree.git
2662S: Maintained
2663F: drivers/media/usb/dvb-usb-v2/af9035*
2664
2665DVB_USB_ANYSEE MEDIA DRIVER
2666M: Antti Palosaari <crope@iki.fi>
2667L: linux-media@vger.kernel.org
2668W: http://linuxtv.org/
2669W: http://palosaari.fi/linux/
2670Q: http://patchwork.linuxtv.org/project/linux-media/list/
2671T: git git://linuxtv.org/anttip/media_tree.git
2672S: Maintained
2673F: drivers/media/usb/dvb-usb-v2/anysee*
2674
2675DVB_USB_AU6610 MEDIA DRIVER
2676M: Antti Palosaari <crope@iki.fi>
2677L: linux-media@vger.kernel.org
2678W: http://linuxtv.org/
2679W: http://palosaari.fi/linux/
2680Q: http://patchwork.linuxtv.org/project/linux-media/list/
2681T: git git://linuxtv.org/anttip/media_tree.git
2682S: Maintained
2683F: drivers/media/usb/dvb-usb-v2/au6610*
2684
2685DVB_USB_CE6230 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/usb/dvb-usb-v2/ce6230*
2694
Michael Krufkyd099dea2012-10-02 00:56:20 -03002695DVB_USB_CXUSB MEDIA DRIVER
2696M: Michael Krufky <mkrufky@linuxtv.org>
2697L: linux-media@vger.kernel.org
2698W: http://linuxtv.org/
2699W: http://github.com/mkrufky
2700Q: http://patchwork.linuxtv.org/project/linux-media/list/
2701T: git git://linuxtv.org/media_tree.git
2702S: Maintained
Cesar Eduardo Barros3408d882012-11-23 20:26:32 -03002703F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002704
Antti Palosaari91952bc2012-10-01 12:28:46 -03002705DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2706M: Antti Palosaari <crope@iki.fi>
2707L: linux-media@vger.kernel.org
2708W: http://linuxtv.org/
2709W: http://palosaari.fi/linux/
2710Q: http://patchwork.linuxtv.org/project/linux-media/list/
2711T: git git://linuxtv.org/anttip/media_tree.git
2712S: Maintained
2713F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2714
2715DVB_USB_EC168 MEDIA DRIVER
2716M: Antti Palosaari <crope@iki.fi>
2717L: linux-media@vger.kernel.org
2718W: http://linuxtv.org/
2719W: http://palosaari.fi/linux/
2720Q: http://patchwork.linuxtv.org/project/linux-media/list/
2721T: git git://linuxtv.org/anttip/media_tree.git
2722S: Maintained
2723F: drivers/media/usb/dvb-usb-v2/ec168*
2724
Michael Krufky8856f5f2012-10-02 00:55:50 -03002725DVB_USB_MXL111SF MEDIA DRIVER
2726M: Michael Krufky <mkrufky@linuxtv.org>
2727L: linux-media@vger.kernel.org
2728W: http://linuxtv.org/
2729W: http://github.com/mkrufky
2730Q: http://patchwork.linuxtv.org/project/linux-media/list/
2731T: git git://linuxtv.org/mkrufky/mxl111sf.git
2732S: Maintained
2733F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2734
Antti Palosaari91952bc2012-10-01 12:28:46 -03002735DVB_USB_RTL28XXU MEDIA DRIVER
2736M: Antti Palosaari <crope@iki.fi>
2737L: linux-media@vger.kernel.org
2738W: http://linuxtv.org/
2739W: http://palosaari.fi/linux/
2740Q: http://patchwork.linuxtv.org/project/linux-media/list/
2741T: git git://linuxtv.org/anttip/media_tree.git
2742S: Maintained
2743F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2744
2745DVB_USB_V2 MEDIA DRIVER
2746M: Antti Palosaari <crope@iki.fi>
2747L: linux-media@vger.kernel.org
2748W: http://linuxtv.org/
2749W: http://palosaari.fi/linux/
2750Q: http://patchwork.linuxtv.org/project/linux-media/list/
2751T: git git://linuxtv.org/anttip/media_tree.git
2752S: Maintained
2753F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2754F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2755
Jason Baronac0ac382011-08-11 14:36:43 -04002756DYNAMIC DEBUG
2757M: Jason Baron <jbaron@redhat.com>
2758S: Maintained
2759F: lib/dynamic_debug.c
2760F: include/linux/dynamic_debug.h
2761
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002762DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002763M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002764S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002765F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002766
Antti Palosaari91952bc2012-10-01 12:28:46 -03002767E4000 MEDIA DRIVER
2768M: Antti Palosaari <crope@iki.fi>
2769L: linux-media@vger.kernel.org
2770W: http://linuxtv.org/
2771W: http://palosaari.fi/linux/
2772Q: http://patchwork.linuxtv.org/project/linux-media/list/
2773T: git git://linuxtv.org/anttip/media_tree.git
2774S: Maintained
2775F: drivers/media/tuners/e4000*
2776
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002778M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002779L: linux-eata@i-connect.net
2780L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002782F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002785M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786L: linux-scsi@vger.kernel.org
2787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002788F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
2790EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002791M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002792L: linux-eata@i-connect.net
2793L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002795F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
2797EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002798M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002799L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800W: http://ebtables.sourceforge.net/
2801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002802F: include/linux/netfilter_bridge/ebt_*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08002803F: include/uapi/linux/netfilter_bridge/ebt_*.h
Joe Perches679655d2009-04-07 20:44:32 -07002804F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Antti Palosaari91952bc2012-10-01 12:28:46 -03002806EC100 MEDIA DRIVER
2807M: Antti Palosaari <crope@iki.fi>
2808L: linux-media@vger.kernel.org
2809W: http://linuxtv.org/
2810W: http://palosaari.fi/linux/
2811Q: http://patchwork.linuxtv.org/project/linux-media/list/
2812T: git git://linuxtv.org/anttip/media_tree.git
2813S: Maintained
2814F: drivers/media/dvb-frontends/ec100*
2815
Michael Halcrow237fead2006-10-04 02:16:22 -07002816ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002817M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002818M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002819L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002820W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002821S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002822F: Documentation/filesystems/ecryptfs.txt
2823F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002824
Alan Coxda9bb1d2006-01-18 17:44:13 -08002825EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002826M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002827L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002828W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002829S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002830F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002831F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002832F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002833
Borislav Petkovc476c232009-05-20 20:31:58 +02002834EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002835M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002836M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002837L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002838W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002839S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002840F: drivers/edac/amd64_edac*
2841
Ralf Baechlef65aad42012-10-17 00:39:09 +02002842EDAC-CAVIUM
2843M: Ralf Baechle <ralf@linux-mips.org>
2844M: David Daney <david.daney@cavium.com>
2845L: linux-edac@vger.kernel.org
2846L: linux-mips@linux-mips.org
2847W: bluesmoke.sourceforge.net
2848S: Supported
2849F: drivers/edac/octeon_edac*
2850
Dave Peterson0e438e32006-03-26 01:38:55 -08002851EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002852M: Mark Gross <mark.gross@intel.com>
2853M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002854L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002855W: bluesmoke.sourceforge.net
2856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002857F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002858
2859EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002860M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002861L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002862W: bluesmoke.sourceforge.net
2863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002864F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002865
Douglas Thompson6bc78402007-07-19 01:50:12 -07002866EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002867M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002868L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002869W: bluesmoke.sourceforge.net
2870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002871F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002872
2873EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002874M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002875L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002876W: bluesmoke.sourceforge.net
2877S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002878F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002879
2880EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002881M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002882L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002883W: bluesmoke.sourceforge.net
2884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002885F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002886
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002887EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002888M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002889L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002890W: bluesmoke.sourceforge.net
2891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002892F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002893
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002894EDAC-I7300
2895M: Mauro Carvalho Chehab <mchehab@redhat.com>
2896L: linux-edac@vger.kernel.org
2897W: bluesmoke.sourceforge.net
2898S: Maintained
2899F: drivers/edac/i7300_edac.c
2900
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002901EDAC-I7CORE
2902M: Mauro Carvalho Chehab <mchehab@redhat.com>
2903L: linux-edac@vger.kernel.org
2904W: bluesmoke.sourceforge.net
2905S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002906F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002907
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002908EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002909M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302910M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002911L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002912W: bluesmoke.sourceforge.net
2913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002914F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002915
2916EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002917M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002918L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002919W: bluesmoke.sourceforge.net
2920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002921F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002922
Dave Peterson0e438e32006-03-26 01:38:55 -08002923EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002924M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002925L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002926W: bluesmoke.sourceforge.net
2927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002928F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002929
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002930EDAC-SBRIDGE
2931M: Mauro Carvalho Chehab <mchehab@redhat.com>
2932L: linux-edac@vger.kernel.org
2933W: bluesmoke.sourceforge.net
2934S: Maintained
2935F: drivers/edac/sb_edac.c
2936
Clemens Ladischaf399172011-01-10 16:32:54 +01002937EDIROL UA-101/UA-1000 DRIVER
2938M: Clemens Ladisch <clemens@ladisch.de>
2939L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2940T: git git://git.alsa-project.org/alsa-kernel.git
2941S: Maintained
2942F: sound/usb/misc/ua101.c
2943
Matt Fleming1f7df952012-10-03 10:04:02 +01002944EXTENSIBLE FIRMWARE INTERFACE (EFI)
2945M: Matt Fleming <matt.fleming@intel.com>
2946L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002947T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002948S: Maintained
2949F: Documentation/x86/efi-stub.txt
2950F: arch/ia64/kernel/efi.c
2951F: arch/x86/boot/compressed/eboot.[ch]
2952F: arch/x86/include/asm/efi.h
2953F: arch/x86/platform/efi/*
2954F: drivers/firmware/efivars.c
2955F: include/linux/efi*.h
2956
Peter Jones85a00d92010-09-22 13:05:04 -07002957EFIFB FRAMEBUFFER DRIVER
2958L: linux-fbdev@vger.kernel.org
2959M: Peter Jones <pjones@redhat.com>
2960S: Maintained
2961F: drivers/video/efifb.c
2962
Josh Triplett0bee8d22006-07-30 03:03:58 -07002963EFS FILESYSTEM
2964W: http://aeschi.ch.eu.org/efs/
2965S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002966F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002967
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002968EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002969M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2970M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002971L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002972S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002973F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002974
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002975EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002976M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002977L: netdev@vger.kernel.org
2978S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002979F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002980
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02002981EM28XX VIDEO4LINUX DRIVER
2982M: Mauro Carvalho Chehab <mchehab@redhat.com>
2983L: linux-media@vger.kernel.org
2984W: http://linuxtv.org
2985T: git git://linuxtv.org/media_tree.git
2986S: Maintained
2987F: drivers/media/usb/em28xx/
2988
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002989EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002990M: Paul Gortmaker <paul.gortmaker@windriver.com>
2991M: Matt Mackall <mpm@selenic.com>
2992M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002993L: linux-embedded@vger.kernel.org
2994S: Maintained
2995
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002996EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002997M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002998L: linux-scsi@vger.kernel.org
2999W: http://sourceforge.net/projects/lpfcxxxx
3000S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003001F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04003002
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003003ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003004M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02003005S: Maintained
3006F: drivers/misc/cb710/
3007F: drivers/mmc/host/cb710-mmc.*
3008F: include/linux/cb710.h
3009
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003010ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3011M: Maxim Levitsky <maximlevitsky@gmail.com>
3012S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07003013F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03003014
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003015EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003016M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003017S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07003018T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07003019F: drivers/video/s1d13xxxfb.c
3020F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07003021
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003023M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003024L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07003026F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
3028ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05003029M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07003030L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08003031L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00003032W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003034F: include/linux/netfilter_bridge/
3035F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
3037ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003038M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07003040F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
3042EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003043M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003044L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003046F: Documentation/filesystems/ext2.txt
3047F: fs/ext2/
3048F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
3050EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003051M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003052M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003053M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003054L: linux-ext4@vger.kernel.org
3055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003056F: Documentation/filesystems/ext3.txt
3057F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08003058
3059EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003060M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003061M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003062L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003063W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003064Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003066F: Documentation/filesystems/ext4.txt
3067F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
Mimi Zoharc5532b02011-08-17 18:52:24 -04003069Extended Verification Module (EVM)
3070M: Mimi Zohar <zohar@us.ibm.com>
3071S: Supported
3072F: security/integrity/evm/
3073
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003074EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3075M: MyungJoo Ham <myungjoo.ham@samsung.com>
3076M: Chanwoo Choi <cw00.choi@samsung.com>
3077L: linux-kernel@vger.kernel.org
3078S: Maintained
3079F: drivers/extcon/
3080F: Documentation/extcon/
3081
Jingoo Han0a799512012-02-06 11:30:39 +09003082EXYNOS DP DRIVER
3083M: Jingoo Han <jg1.han@samsung.com>
3084L: linux-fbdev@vger.kernel.org
3085S: Maintained
3086F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003087F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003088
Donghwa Lee33ad3912012-03-06 11:44:58 +09003089EXYNOS MIPI DISPLAY DRIVERS
3090M: Inki Dae <inki.dae@samsung.com>
3091M: Donghwa Lee <dh09.lee@samsung.com>
3092M: Kyungmin Park <kyungmin.park@samsung.com>
3093L: linux-fbdev@vger.kernel.org
3094S: Maintained
3095F: drivers/video/exynos/exynos_mipi*
3096F: include/video/exynos_mipi*
3097
Jean Delvaree53004e2006-01-09 23:26:14 +01003098F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003099M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003100L: lm-sensors@lm-sensors.org
3101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003102F: Documentation/hwmon/f71805f
3103F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003104
Michael Büscheea977e2012-04-02 12:14:32 -03003105FC0011 TUNER DRIVER
3106M: Michael Buesch <m@bues.ch>
3107L: linux-media@vger.kernel.org
3108S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003109F: drivers/media/tuners/fc0011.h
3110F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003111
Antti Palosaari91952bc2012-10-01 12:28:46 -03003112FC2580 MEDIA DRIVER
3113M: Antti Palosaari <crope@iki.fi>
3114L: linux-media@vger.kernel.org
3115W: http://linuxtv.org/
3116W: http://palosaari.fi/linux/
3117Q: http://patchwork.linuxtv.org/project/linux-media/list/
3118T: git git://linuxtv.org/anttip/media_tree.git
3119S: Maintained
3120F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121
Eric Paris88b2dbd2010-08-18 12:25:50 -04003122FANOTIFY
3123M: Eric Paris <eparis@redhat.com>
3124S: Maintained
3125F: fs/notify/fanotify/
3126F: include/linux/fanotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003127F: include/uapi/linux/fanotify.h
Eric Paris88b2dbd2010-08-18 12:25:50 -04003128
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003130M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131W: http://www.farsite.co.uk/
3132S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003133F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134
Akinobu Mitac5408b82007-04-23 14:41:20 -07003135FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003136M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003137S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003138F: Documentation/fault-injection/
3139F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003140
Robert Lovecae727d2010-02-16 12:16:00 -08003141FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3142M: Robert Love <robert.w.love@intel.com>
3143L: devel@open-fcoe.org
3144W: www.Open-FCoE.org
3145S: Supported
3146F: drivers/scsi/libfc/
3147F: drivers/scsi/fcoe/
3148F: include/scsi/fc/
3149F: include/scsi/libfc.h
3150F: include/scsi/libfcoe.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003151F: include/uapi/scsi/fc/
Robert Lovecae727d2010-02-16 12:16:00 -08003152
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003153FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003154M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003155L: linux-fsdevel@vger.kernel.org
3156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003157F: include/linux/fcntl.h
3158F: include/linux/fs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003159F: include/uapi/linux/fcntl.h
3160F: include/uapi/linux/fs.h
Joe Perches679655d2009-04-07 20:44:32 -07003161F: fs/fcntl.c
3162F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003163
3164FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003165M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003166L: linux-fsdevel@vger.kernel.org
3167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003168F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003169
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003170FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003171M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003172L: lm-sensors@lm-sensors.org
3173S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003174F: drivers/hwmon/f75375s.c
3175F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003176
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003177FIREWIRE AUDIO DRIVERS
3178M: Clemens Ladisch <clemens@ladisch.de>
3179L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3180T: git git://git.alsa-project.org/alsa-kernel.git
3181S: Maintained
3182F: sound/firewire/
3183
Stefan Richtereb86ec52012-11-03 09:25:20 +01003184FIREWIRE MEDIA DRIVERS (firedtv)
3185M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3186L: linux-media@vger.kernel.org
3187L: linux1394-devel@lists.sourceforge.net
3188T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3189S: Maintained
3190F: drivers/media/firewire/
3191
Chris Boota511ce32012-04-14 17:50:35 -07003192FIREWIRE SBP-2 TARGET
3193M: Chris Boot <bootc@bootc.net>
3194L: linux-scsi@vger.kernel.org
3195L: target-devel@vger.kernel.org
3196L: linux1394-devel@lists.sourceforge.net
3197T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3198S: Maintained
3199F: drivers/target/sbp/
3200
Joe Perches7d2c86b2009-04-07 20:59:01 -07003201FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003202M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003203L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003204W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003205T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003207F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003208F: include/linux/firewire.h
3209F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003210F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003211
3212FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003213M: Ming Lei <ming.lei@canonical.com>
3214L: linux-kernel@vger.kernel.org
3215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003216F: Documentation/firmware_class/
3217F: drivers/base/firmware*.c
3218F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003219
Jiri Kosina8206f662012-05-18 13:52:29 +02003220FLOPPY DRIVER
3221M: Jiri Kosina <jkosina@suse.cz>
3222T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3223S: Odd fixes
3224F: drivers/block/floppy.c
3225
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003226FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003227M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003228W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003230F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003231
3232FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003233L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003234S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003235F: drivers/net/wan/dlci.c
3236F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003237
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003239M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003240L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003242Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003243T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003245F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003246F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003247F: drivers/video/
3248F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003249F: include/linux/fb.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003250F: include/uapi/video/
3251F: include/uapi/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252
Timur Tabia57c1882012-10-16 17:33:42 -05003253FREESCALE DIU FRAMEBUFFER DRIVER
3254M: Timur Tabi <timur@freescale.com>
3255L: linux-fbdev@vger.kernel.org
3256S: Supported
3257F: drivers/video/fsl-diu-fb.*
3258
Zhang Wei173acc72008-03-01 07:42:48 -07003259FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003260M: Li Yang <leoli@freescale.com>
3261M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003262L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003264F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003265
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003266FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003267M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003268L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003269L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003271F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003272
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003273FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003274M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003275L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003276L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003277S: Maintained
Cesar Eduardo Barrosbad985a2013-01-04 15:35:28 -08003278F: include/linux/platform_data/video-imxfb.h
Joe Perches679655d2009-04-07 20:44:32 -07003279F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003280
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003281FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003282M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3283M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003284L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003285L: netdev@vger.kernel.org
3286S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003287F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003288F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003289
Timur Tabid9e9d822008-04-24 08:45:26 +10003290FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003291M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003292L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003293S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003294F: arch/powerpc/sysdev/qe_lib/
3295F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003296
Joe Perchesb55ef9292009-10-26 16:49:46 -07003297FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003298M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003299L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003300L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003301S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003302F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003303
Li Yangbeaf53b2007-05-25 13:54:02 +08003304FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003305M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003306L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003307L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003308S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003309F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003310
Timur Tabid9e9d822008-04-24 08:45:26 +10003311FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003312M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003313L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003314S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003315F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003316
3317FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003318M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003319L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003320L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003321S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003322F: sound/soc/fsl/fsl*
3323F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003324
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003326M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003329F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
Pavel Machek71038f52009-01-15 13:51:02 -08003331FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003332M: Pavel Machek <pavel@ucw.cz>
3333M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003334L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003335S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003336F: Documentation/power/freezing-of-tasks.txt
3337F: include/linux/freezer.h
3338F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003339
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003340FRONTSWAP API
3341M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3342L: linux-kernel@vger.kernel.org
3343S: Maintained
3344F: mm/frontswap.c
3345F: include/linux/frontswap.h
3346
David Howellsa5432f5a2009-04-20 15:46:45 +01003347FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003348M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01003349L: linux-cachefs@redhat.com
3350S: Supported
3351F: Documentation/filesystems/caching/
3352F: fs/fscache/
3353F: include/linux/fscache*.h
3354
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003355F2FS FILE SYSTEM
3356M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3357L: linux-f2fs-devel@lists.sourceforge.net
3358W: http://en.wikipedia.org/wiki/F2FS
3359T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3360S: Maintained
3361F: Documentation/filesystems/f2fs.txt
3362F: fs/f2fs/
3363F: include/linux/f2fs_fs.h
3364
David Howells5ab7ffe2007-04-10 15:10:45 +01003365FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003366M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003368F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
Jonathan Woithe20b93732008-06-11 10:14:56 +09303370FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303371M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05003372L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003374F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303375
Heungjun Kim4da621b62011-11-11 08:05:33 -03003376FUJITSU M-5MO LS CAMERA ISP DRIVER
3377M: Kyungmin Park <kyungmin.park@samsung.com>
3378M: Heungjun Kim <riverful.kim@samsung.com>
3379L: linux-media@vger.kernel.org
3380S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003381F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b62011-11-11 08:05:33 -03003382F: include/media/m5mols.h
3383
Robert Gerlach2d24c492012-01-18 14:26:22 +01003384FUJITSU TABLET EXTRAS
3385M: Robert Gerlach <khnz@gmx.de>
3386L: platform-driver-x86@vger.kernel.org
3387S: Maintained
3388F: drivers/platform/x86/fujitsu-tablet.c
3389
Miklos Szeredi04578f12005-09-09 13:10:22 -07003390FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003391M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003392L: fuse-devel@lists.sourceforge.net
3393W: http://fuse.sourceforge.net/
3394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003395F: fs/fuse/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003396F: include/uapi/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003397
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003399M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003401S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003402F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403
3404GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003405M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406L: linux-scsi@vger.kernel.org
3407W: http://www.icp-vortex.com/
3408S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003409F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003411GEMTEK FM RADIO RECEIVER DRIVER
3412M: Hans Verkuil <hverkuil@xs4all.nl>
3413L: linux-media@vger.kernel.org
3414T: git git://linuxtv.org/media_tree.git
3415W: http://linuxtv.org
3416S: Maintained
3417F: drivers/media/radio/radio-gemtek*
3418
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003419GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003420M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003421S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003422F: drivers/i2c/busses/i2c-gpio.c
3423F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003424
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003425GENERIC GPIO I2C MULTIPLEXER DRIVER
3426M: Peter Korsgaard <peter.korsgaard@barco.com>
3427L: linux-i2c@vger.kernel.org
3428S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003429F: drivers/i2c/muxes/i2c-mux-gpio.c
3430F: include/linux/i2c-mux-gpio.h
3431F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003432
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003433GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003434M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003437F: drivers/net/wan/c101.c
3438F: drivers/net/wan/hd6457*
3439F: drivers/net/wan/hdlc*
3440F: drivers/net/wan/n2.c
3441F: drivers/net/wan/pc300too.c
3442F: drivers/net/wan/pci200syn.c
3443F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003445GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003446M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003447L: linux-arch@vger.kernel.org
3448T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3449S: Maintained
3450F: include/asm-generic
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003451F: include/uapi/asm-generic
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003452
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003453GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003454M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003455L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003456S: Supported
3457F: drivers/uio/uio_pci_generic.c
3458
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003459GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003460M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003461L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003462W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003463T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3464T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003465S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003466F: Documentation/filesystems/gfs2*.txt
3467F: fs/gfs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003468F: include/uapi/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003469
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003470GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003471M: Hansjoerg Lipp <hjlipp@web.de>
3472M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003473L: gigaset307x-common@lists.sourceforge.net
3474W: http://gigaset307x.sourceforge.net/
3475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003476F: Documentation/isdn/README.gigaset
3477F: drivers/isdn/gigaset/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003478F: include/uapi/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003479
Grant Likelya0dc00b2011-02-12 01:48:14 -07003480GPIO SUBSYSTEM
3481M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003482M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003483S: Maintained
3484T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003485F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003486F: drivers/gpio/
3487F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003488F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003489
Harry Wei71a6d0a2011-05-11 15:13:33 -07003490GRE DEMULTIPLEXER DRIVER
3491M: Dmitry Kozlov <xeb@mail.ru>
3492L: netdev@vger.kernel.org
3493S: Maintained
3494F: net/ipv4/gre.c
3495F: include/net/gre.h
3496
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003497GRETH 10/100/1G Ethernet MAC device driver
3498M: Kristoffer Glembo <kristoffer@gaisler.com>
3499L: netdev@vger.kernel.org
3500S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003501F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003502
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003503GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003504M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003505L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003506T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003507S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003508F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003509
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003510GSPCA GL860 SUBDRIVER
3511M: Olivier Lorin <o.lorin@laposte.net>
3512L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003513T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003514S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003515F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003516
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003517GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003518M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003519L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003520T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003521S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003522F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003523
3524GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003525M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003526L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003527T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003528S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003529F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003530
Brian Johnson261982f2009-07-19 15:58:56 -03003531GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003532M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003533L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003534T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003535S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003536F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003537
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003538GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003539M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003540L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003541T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003542S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003543F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003544
3545GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003546M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003547L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003548T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003549S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003550F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003551
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003552STK1160 USB VIDEO CAPTURE DRIVER
3553M: Ezequiel Garcia <elezegarcia@gmail.com>
3554L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003555T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003556S: Maintained
3557F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003558
Harry Wei71a6d0a2011-05-11 15:13:33 -07003559HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3560M: Frank Seidel <frank@f-seidel.de>
3561L: platform-driver-x86@vger.kernel.org
3562W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3563S: Maintained
3564F: drivers/platform/x86/hdaps.c
3565
3566HWPOISON MEMORY FAILURE HANDLING
3567M: Andi Kleen <andi@firstfloor.org>
3568L: linux-mm@kvack.org
3569T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3570S: Maintained
3571F: mm/memory-failure.c
3572F: mm/hwpoison-inject.c
3573
3574HYPERVISOR VIRTUAL CONSOLE DRIVER
3575L: linuxppc-dev@lists.ozlabs.org
3576S: Odd Fixes
3577F: drivers/tty/hvc/
3578
Michael Buesch844dd052006-06-26 00:24:59 -07003579HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003580M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003581M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003582L: lm-sensors@lm-sensors.org
3583W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003584T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003585T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003586S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003587F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003588F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003589F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003590
3591HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003592M: Matt Mackall <mpm@selenic.com>
3593M: Herbert Xu <herbert@gondor.apana.org.au>
3594S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003595F: Documentation/hw_random.txt
3596F: drivers/char/hw_random/
3597F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003598
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003599HARDWARE SPINLOCK CORE
3600M: Ohad Ben-Cohen <ohad@wizery.com>
3601S: Maintained
3602F: Documentation/hwspinlock.txt
3603F: drivers/hwspinlock/hwspinlock_*
3604F: include/linux/hwspinlock.h
3605
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003607L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003609F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
Antti Palosaari91952bc2012-10-01 12:28:46 -03003611HD29L2 MEDIA DRIVER
3612M: Antti Palosaari <crope@iki.fi>
3613L: linux-media@vger.kernel.org
3614W: http://linuxtv.org/
3615W: http://palosaari.fi/linux/
3616Q: http://patchwork.linuxtv.org/project/linux-media/list/
3617T: git git://linuxtv.org/anttip/media_tree.git
3618S: Maintained
3619F: drivers/media/dvb-frontends/hd29l2*
3620
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003621HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003622M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003623L: iss_storagedev@hp.com
3624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003625F: Documentation/blockdev/cpqarray.txt
3626F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003627
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003628HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003629M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003630L: iss_storagedev@hp.com
3631S: Supported
3632F: Documentation/scsi/hpsa.txt
3633F: drivers/scsi/hpsa*.[ch]
3634F: include/linux/cciss*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003635F: include/uapi/linux/cciss*.h
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003636
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003637HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003638M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003639L: iss_storagedev@hp.com
3640S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003641F: Documentation/blockdev/cciss.txt
3642F: drivers/block/cciss*
3643F: include/linux/cciss_ioctl.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003644F: include/uapi/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003645
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003647L: linux-fsdevel@vger.kernel.org
3648S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003649F: Documentation/filesystems/hfs.txt
3650F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651
3652HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003653M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654L: linux-nvidia@lists.surfsouth.com
3655W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003657F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003659HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003660M: Pavel Machek <pavel@ucw.cz>
3661M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003662L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003663S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003664F: arch/x86/power/
3665F: drivers/base/power/
3666F: kernel/power/
3667F: include/linux/suspend.h
3668F: include/linux/freezer.h
3669F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003670F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003671
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003672HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003673M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003674L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003675T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003677F: drivers/hid/
3678F: include/linux/hid*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003679F: include/uapi/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003680
Ingo Molnar38bed542007-02-22 09:09:34 +01003681HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003682M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003683T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003685F: Documentation/timers/
3686F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003687F: kernel/time/clockevents.c
3688F: kernel/time/tick*.*
3689F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003690F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003691F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003692
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003695S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003696F: drivers/net/hamradio/dmascc.c
3697F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003699HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003700M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003701W: http://www.highpoint-tech.com
3702S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003703F: Documentation/scsi/hptiop.txt
3704F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003705
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003707M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708L: linux-hippi@sunsite.dk
3709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003710F: include/linux/hippidevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003711F: include/uapi/linux/if_hippi.h
Joe Perches679655d2009-04-07 20:44:32 -07003712F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003713F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714
Jouni Malinenff1d2762005-05-12 22:54:16 -04003715HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003716M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003717L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003718L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003719W: http://hostap.epitest.fi/
3720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003721F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003722
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003723HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05003724L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003725S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003726F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003727
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003728HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003729M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003730S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003731F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003732
Joe Perches7d2c86b2009-04-07 20:59:01 -07003733HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003734M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003736F: Documentation/timers/hpet.txt
3737F: drivers/char/hpet.c
3738F: include/linux/hpet.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003739F: include/uapi/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003740
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003741HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003742M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003744F: arch/x86/kernel/hpet.c
3745F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003746
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003748M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003751F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752
Joe Perches7d2c86b2009-04-07 20:59:01 -07003753HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003754M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003755W: http://www.pharscape.org
3756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003757F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003758
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003759HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003760M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003761L: linux-input@vger.kernel.org
3762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003763F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003764
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003766M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003768F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003770Hyper-V CORE AND DRIVERS
3771M: K. Y. Srinivasan <kys@microsoft.com>
3772M: Haiyang Zhang <haiyangz@microsoft.com>
3773L: devel@linuxdriverproject.org
3774S: Maintained
3775F: drivers/hv/
3776F: drivers/hid/hid-hyperv.c
3777F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003778
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003779I2C OVER PARALLEL PORT
3780M: Jean Delvare <khali@linux-fr.org>
3781L: linux-i2c@vger.kernel.org
3782S: Maintained
3783F: Documentation/i2c/busses/i2c-parport
3784F: Documentation/i2c/busses/i2c-parport-light
3785F: drivers/i2c/busses/i2c-parport.c
3786F: drivers/i2c/busses/i2c-parport-light.c
3787
3788I2C/SMBUS CONTROLLER DRIVERS FOR PC
3789M: Jean Delvare <khali@linux-fr.org>
3790L: linux-i2c@vger.kernel.org
3791S: Maintained
3792F: Documentation/i2c/busses/i2c-ali1535
3793F: Documentation/i2c/busses/i2c-ali1563
3794F: Documentation/i2c/busses/i2c-ali15x3
3795F: Documentation/i2c/busses/i2c-amd756
3796F: Documentation/i2c/busses/i2c-amd8111
3797F: Documentation/i2c/busses/i2c-i801
3798F: Documentation/i2c/busses/i2c-nforce2
3799F: Documentation/i2c/busses/i2c-piix4
3800F: Documentation/i2c/busses/i2c-sis5595
3801F: Documentation/i2c/busses/i2c-sis630
3802F: Documentation/i2c/busses/i2c-sis96x
3803F: Documentation/i2c/busses/i2c-via
3804F: Documentation/i2c/busses/i2c-viapro
3805F: drivers/i2c/busses/i2c-ali1535.c
3806F: drivers/i2c/busses/i2c-ali1563.c
3807F: drivers/i2c/busses/i2c-ali15x3.c
3808F: drivers/i2c/busses/i2c-amd756.c
3809F: drivers/i2c/busses/i2c-amd756-s4882.c
3810F: drivers/i2c/busses/i2c-amd8111.c
3811F: drivers/i2c/busses/i2c-i801.c
3812F: drivers/i2c/busses/i2c-isch.c
3813F: drivers/i2c/busses/i2c-nforce2.c
3814F: drivers/i2c/busses/i2c-nforce2-s4985.c
3815F: drivers/i2c/busses/i2c-piix4.c
3816F: drivers/i2c/busses/i2c-sis5595.c
3817F: drivers/i2c/busses/i2c-sis630.c
3818F: drivers/i2c/busses/i2c-sis96x.c
3819F: drivers/i2c/busses/i2c-via.c
3820F: drivers/i2c/busses/i2c-viapro.c
3821
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003822I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003823M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003824L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003825S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003826F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003827
Jean Delvare5b543962005-08-15 19:51:02 +02003828I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003829M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003830M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003831L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003832W: http://i2c.wiki.kernel.org/
3833T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003834T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003836F: Documentation/i2c/
3837F: drivers/i2c/
3838F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003839F: include/linux/i2c-*.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08003840F: include/uapi/linux/i2c.h
3841F: include/uapi/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003843I2C-TAOS-EVM DRIVER
3844M: Jean Delvare <khali@linux-fr.org>
3845L: linux-i2c@vger.kernel.org
3846S: Maintained
3847F: Documentation/i2c/busses/i2c-taos-evm
3848F: drivers/i2c/busses/i2c-taos-evm.c
3849
Till Harbaume8c76ee2007-05-01 23:26:35 +02003850I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003851M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003852L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003853W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003855F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003856
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003858M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003860F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861
3862i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003863M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003864T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865S: Maintained
3866
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003868M: Tony Luck <tony.luck@intel.com>
3869M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003871T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003873F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
Kent Yoder956c2032012-09-07 04:17:01 +08003875IBM Power in-Nest Crypto Acceleration
3876M: Kent Yoder <key@linux.vnet.ibm.com>
3877L: linux-crypto@vger.kernel.org
3878S: Supported
3879F: drivers/crypto/nx/
3880
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003881IBM Power 842 compression accelerator
3882M: Robert Jennings <rcj@linux.vnet.ibm.com>
3883S: Supported
3884F: drivers/crypto/nx/nx-842.c
3885F: include/linux/nx842.h
3886
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003888M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003890F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891
Santiago Leon9d348af2010-09-03 18:29:53 +00003892IBM Power Virtual Ethernet Device Driver
3893M: Santiago Leon <santil@linux.vnet.ibm.com>
3894L: netdev@vger.kernel.org
3895S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003896F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003897
Robert Jennings4b7652c2012-07-31 12:34:36 -05003898IBM Power Virtual SCSI/FC Device Drivers
3899M: Robert Jennings <rcj@linux.vnet.ibm.com>
3900L: linux-scsi@vger.kernel.org
3901S: Supported
3902F: drivers/scsi/ibmvscsi/
3903X: drivers/scsi/ibmvscsi/ibmvstgt.c
3904
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905IBM ServeRAID RAID DRIVER
3906P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003907M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003909S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003910F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003912ICH LPC AND GPIO DRIVER
3913M: Peter Tyser <ptyser@xes-inc.com>
3914S: Maintained
3915F: drivers/mfd/lpc_ich.c
3916F: drivers/gpio/gpio-ich.c
3917
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003918IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003919M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003921Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003922T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003924F: Documentation/ide/
3925F: drivers/ide/
3926F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927
Ike Panhc6cb8c132011-08-25 22:28:45 +08003928IDEAPAD LAPTOP EXTRAS DRIVER
3929M: Ike Panhc <ike.pan@canonical.com>
3930L: platform-driver-x86@vger.kernel.org
3931W: http://launchpad.net/ideapad-laptop
3932S: Maintained
3933F: drivers/platform/x86/ideapad-laptop.c
3934
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003935IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003936M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003937L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003939F: Documentation/cdrom/ide-cd
3940F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
Andy Henroid27471fd2008-10-09 11:45:22 -07003942IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003943M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003944L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003945S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003946F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003947
Sergey Lapin02cf2282009-06-08 12:18:50 +00003948IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003949M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003950M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003951L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003952W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003953T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003954S: Maintained
3955F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003956F: net/mac802154/
Cesar Eduardo Barros251741b2013-01-04 15:35:30 -08003957F: drivers/net/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003958
Sean Young40ad4a32012-11-19 10:32:53 -03003959IGUANAWORKS USB IR TRANSCEIVER
3960M: Sean Young <sean@mess.org>
3961L: linux-media@vger.kernel.org
3962S: Maintained
3963F: drivers/media/rc/iguanair.c
3964
Ameya Palande9545f862012-01-10 09:00:58 -08003965IIO SUBSYSTEM AND DRIVERS
3966M: Jonathan Cameron <jic23@cam.ac.uk>
3967L: linux-iio@vger.kernel.org
3968S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003969F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003970F: drivers/staging/iio/
3971
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003972IKANOS/ADI EAGLE ADSL USB DRIVER
3973M: Matthieu Castet <castet.matthieu@free.fr>
3974M: Stanislaw Gruszka <stf_xl@wp.pl>
3975S: Maintained
3976F: drivers/usb/atm/ueagle-atm.c
3977
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01003978INDUSTRY PACK SUBSYSTEM (IPACK)
3979M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
3980M: Jens Taprogge <jens.taprogge@taprogge.org>
3981M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3982L: industrypack-devel@lists.sourceforge.net
3983W: http://industrypack.sourceforge.net
3984S: Maintained
3985F: drivers/ipack/
3986
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003987INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003988M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003989S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003990F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003991
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003993L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003994S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003995F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
3997INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003998M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003999M: Sean Hefty <sean.hefty@intel.com>
4000M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004001L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07004002W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004003Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07004004T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004006F: Documentation/infiniband/
4007F: drivers/infiniband/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004008F: include/uapi/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
Robert Lovec9f04f52005-07-15 12:21:07 -04004010INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07004011M: John McCutchan <john@johnmccutchan.com>
4012M: Robert Love <rlove@rlove.org>
4013M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04004014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004015F: Documentation/filesystems/inotify.txt
4016F: fs/notify/inotify/
4017F: include/linux/inotify.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004018F: include/uapi/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04004019
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004020INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004021M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4022M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004023L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004024Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07004025T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004027F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004028F: include/linux/input.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004029F: include/uapi/linux/input.h
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07004030F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004031
Henrik Rydberg3267a872010-06-24 19:10:40 -07004032INPUT MULTITOUCH (MT) PROTOCOL
4033M: Henrik Rydberg <rydberg@euromail.se>
4034L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004035T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07004036S: Maintained
4037F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01004038F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07004039K: \b(ABS|SYN)_MT_
4040
Dave Jiang4ac13e12011-07-29 17:16:55 -07004041INTEL C600 SERIES SAS CONTROLLER DRIVER
4042M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07004043M: Lukasz Dorau <lukasz.dorau@intel.com>
4044M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004045M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07004046L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07004047T: git git://git.code.sf.net/p/intel-sas/isci
4048S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07004049F: drivers/scsi/isci/
Dave Jiang4ac13e12011-07-29 17:16:55 -07004050
Len Brown26717172010-03-08 14:07:30 -05004051INTEL IDLE DRIVER
4052M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02004053L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004054T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05004055S: Supported
4056F: drivers/idle/intel_idle.c
4057
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004058INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08004059M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004060L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004062F: Documentation/fb/intelfb.txt
4063F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004064
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004066M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004067L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004069F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304071INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004072M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05004073L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304074W: http://www.lesswatts.org/projects/acpi/
4075S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004076F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304077
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004079M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004081F: arch/x86/kernel/microcode_core.c
4082F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004084INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004085M: Dan Williams <djbw@fb.com>
4086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004087F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004088
David Woodhouse6c8909b2008-10-18 16:12:17 +01004089INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004090M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004091L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004092T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004093S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004094F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004095F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004096
Dan Williamsb3e5f262007-08-07 10:26:35 -07004097INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004098M: Dan Williams <djbw@fb.com>
4099S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004100F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004101
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004102INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004103M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004105F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4106F: arch/arm/mach-ixp4xx/include/mach/npe.h
4107F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4108F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004109F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004110F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004111
Michael Buesch844dd052006-06-26 00:24:59 -07004112INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004113M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004115F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004116
Jeff Kirsher0d164402010-10-05 01:15:17 +00004117INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004118M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4119M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4120M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004121M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4122M: Don Skidmore <donald.c.skidmore@intel.com>
4123M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004124M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004125M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004126M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004127M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004128L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004129W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004130W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004131T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4132T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004134F: Documentation/networking/e100.txt
4135F: Documentation/networking/e1000.txt
4136F: Documentation/networking/e1000e.txt
4137F: Documentation/networking/igb.txt
4138F: Documentation/networking/igbvf.txt
4139F: Documentation/networking/ixgb.txt
4140F: Documentation/networking/ixgbe.txt
4141F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004142F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004144INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4145M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004146L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004148F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004149F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004150F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004151
Shane Wang4bd96a72010-03-10 14:36:10 +08004152INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004153M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4154M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004155M: Shane Wang <shane.wang@intel.com>
4156L: tboot-devel@lists.sourceforge.net
4157W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004158T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004159S: Supported
4160F: Documentation/intel_txt.txt
4161F: include/linux/tboot.h
4162F: arch/x86/kernel/tboot.c
4163
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004164INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004165M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004166M: linux-wimax@intel.com
4167L: wimax@linuxwimax.org
4168S: Supported
4169W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004170F: Documentation/wimax/README.i2400m
4171F: drivers/net/wimax/i2400m/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004172F: include/uapi/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004173
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004174INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4175M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004176L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004177S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004178F: drivers/net/wireless/iwlegacy/
4179
Zhu Yib481de92007-09-25 17:54:57 -07004180INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004181M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004182M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004183M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004184L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004185W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07004186T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004187S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004188F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004189
Tomas Winklerde8fe022012-05-09 16:39:02 +03004190INTEL MANAGEMENT ENGINE (mei)
4191M: Tomas Winkler <tomas.winkler@intel.com>
4192L: linux-kernel@vger.kernel.org
4193S: Supported
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004194F: include/uapi/linux/mei.h
Tomas Winklerde8fe022012-05-09 16:39:02 +03004195F: drivers/misc/mei/*
Cesar Eduardo Barrose07950a12013-01-04 15:35:36 -08004196F: Documentation/misc-devices/mei/*
Tomas Winklerde8fe022012-05-09 16:39:02 +03004197
Ralf Baechlecb109a02007-08-30 23:56:30 -07004198IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004199M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200L: linux-mips@linux-mips.org
4201S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004202F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203
Ralf Baechlecb109a02007-08-30 23:56:30 -07004204IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004205M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004206L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004207S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004208F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004209
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004210IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004211M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004213F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
Francois Romieu1202d6f2007-09-17 17:13:55 -07004215IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004216M: Francois Romieu <romieu@fr.zoreil.com>
4217M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004218L: netdev@vger.kernel.org
4219S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004220F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004221
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004222IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004223M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004224L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004226F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004227
Corey Minyard4409ebe2006-04-20 02:43:12 -07004228IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004229M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004230L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004231W: http://openipmi.sourceforge.net/
4232S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004233F: Documentation/IPMI.txt
4234F: drivers/char/ipmi/
4235F: include/linux/ipmi*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004236F: include/uapi/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004237
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004238IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004239M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004240L: linux-scsi@vger.kernel.org
4241W: http://www.adaptec.com/
4242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004243F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004244
4245IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004246M: Wensong Zhang <wensong@linux-vs.org>
4247M: Simon Horman <horms@verge.net.au>
4248M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004249L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004250L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004252F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004253F: include/net/ip_vs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004254F: include/uapi/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004255F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256
Randy Dunlape7839f22008-10-12 16:11:45 -07004257IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004258M: Jiri Kosina <jkosina@suse.cz>
4259M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004260S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004261F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004262
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004263IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004264M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004265L: netdev@vger.kernel.org
4266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004267F: include/net/ipx.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004268F: include/uapi/linux/ipx.h
Joe Perches679655d2009-04-07 20:44:32 -07004269F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004270
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004272M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004273L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004274L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004276S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004277T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004278F: Documentation/networking/irda.txt
4279F: drivers/net/irda/
4280F: include/net/irda/
4281F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004283IRQ SUBSYSTEM
4284M: Thomas Gleixner <tglx@linutronix.de>
4285S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004286T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004287F: kernel/irq/
4288
Grant Likely7ab3a832012-02-14 14:06:47 -07004289IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4290M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4291M: Grant Likely <grant.likely@secretlab.ca>
4292T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4293S: Maintained
4294F: Documentation/IRQ-domain.txt
4295F: include/linux/irqdomain.h
4296F: kernel/irq/irqdomain.c
4297
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004298ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004299M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004301F: Documentation/isapnp.txt
4302F: drivers/pnp/isapnp/
4303F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004304
Hans Verkuild39b84202012-11-23 07:07:02 -03004305ISA RADIO MODULE
4306M: Hans Verkuil <hverkuil@xs4all.nl>
4307L: linux-media@vger.kernel.org
4308T: git git://linuxtv.org/media_tree.git
4309W: http://linuxtv.org
4310S: Maintained
4311F: drivers/media/radio/radio-isa*
4312
Harry Wei71a6d0a2011-05-11 15:13:33 -07004313iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4314M: Peter Jones <pjones@redhat.com>
4315M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4316S: Maintained
4317F: drivers/firmware/iscsi_ibft*
4318
Mike Christie14816b1e2007-11-28 16:22:06 -08004319ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004320M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004321L: open-iscsi@googlegroups.com
4322W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004323T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004325F: drivers/scsi/*iscsi*
4326F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004327
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004329M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004330L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004331L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004333T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004335F: Documentation/isdn/
4336F: drivers/isdn/
4337F: include/linux/isdn.h
4338F: include/linux/isdn/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004339F: include/uapi/linux/isdn.h
4340F: include/uapi/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341
4342ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004343M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004344L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345W: http://www.melware.de
4346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004347F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348
Jean Delvared6248702010-03-05 22:17:20 +01004349IT87 HARDWARE MONITORING DRIVER
4350M: Jean Delvare <khali@linux-fr.org>
4351L: lm-sensors@lm-sensors.org
4352S: Maintained
4353F: Documentation/hwmon/it87
4354F: drivers/hwmon/it87.c
4355
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004356IT913X MEDIA DRIVER
4357M: Malcolm Priestley <tvboxspy@gmail.com>
4358L: linux-media@vger.kernel.org
4359W: http://linuxtv.org/
4360Q: http://patchwork.linuxtv.org/project/linux-media/list/
4361S: Maintained
4362F: drivers/media/usb/dvb-usb-v2/it913x*
4363
4364IT913X FE MEDIA DRIVER
4365M: Malcolm Priestley <tvboxspy@gmail.com>
4366L: linux-media@vger.kernel.org
4367W: http://linuxtv.org/
4368Q: http://patchwork.linuxtv.org/project/linux-media/list/
4369S: Maintained
4370F: drivers/media/dvb-frontends/it913x-fe*
4371
Hans Verkuil91821ff2007-12-02 09:35:33 -03004372IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004373M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004374L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004375L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004376T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004377W: http://www.ivtvdriver.org
4378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004379F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004380F: drivers/media/pci/ivtv/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004381F: include/uapi/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004382
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004383IX2505V MEDIA DRIVER
4384M: Malcolm Priestley <tvboxspy@gmail.com>
4385L: linux-media@vger.kernel.org
4386W: http://linuxtv.org/
4387Q: http://patchwork.linuxtv.org/project/linux-media/list/
4388S: Maintained
4389F: drivers/media/dvb-frontends/ix2505v*
4390
Guenter Roeck4453d732010-08-09 17:21:08 -07004391JC42.4 TEMPERATURE SENSOR DRIVER
4392M: Guenter Roeck <linux@roeck-us.net>
4393L: lm-sensors@lm-sensors.org
4394S: Maintained
4395F: drivers/hwmon/jc42.c
4396F: Documentation/hwmon/jc42
4397
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004398JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004399M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004400L: jfs-discussion@lists.sourceforge.net
4401W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004402T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004404F: Documentation/filesystems/jfs.txt
4405F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004406
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004407JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004408M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004409L: netdev@vger.kernel.org
4410S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004411F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004412
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004414M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004415L: linux-mtd@lists.infradead.org
4416W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004418F: fs/jffs2/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004419F: include/uapi/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420
Josh Triplettde456d32006-07-30 03:04:00 -07004421JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004422M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004423M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004424L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004425S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004426F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004427F: include/linux/jbd.h
4428
4429JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4430M: "Theodore Ts'o" <tytso@mit.edu>
4431L: linux-ext4@vger.kernel.org
4432S: Maintained
4433F: fs/jbd2/
4434F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004435
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004436JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004437M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004438L: linux-serial@vger.kernel.org
4439S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004440F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004441
Clemens Ladischaf399172011-01-10 16:32:54 +01004442K10TEMP HARDWARE MONITORING DRIVER
4443M: Clemens Ladisch <clemens@ladisch.de>
4444L: lm-sensors@lm-sensors.org
4445S: Maintained
4446F: Documentation/hwmon/k10temp
4447F: drivers/hwmon/k10temp.c
4448
Rudolf Marek4660cb32006-10-08 22:01:26 +02004449K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004450M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004451L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004453F: Documentation/hwmon/k8temp
4454F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455
4456KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004457M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004458L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004459S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004460F: Documentation/kbuild/kconfig-language.txt
4461F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462
Vivek Goyalea6c2082006-05-20 14:59:55 -07004463KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004464M: Vivek Goyal <vgoyal@redhat.com>
4465M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004466L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004467W: http://lse.sourceforge.net/kdump/
4468S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004469F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004470
Hans Verkuilf41bf022012-11-23 07:04:36 -03004471KEENE FM RADIO TRANSMITTER DRIVER
4472M: Hans Verkuil <hverkuil@xs4all.nl>
4473L: linux-media@vger.kernel.org
4474T: git git://linuxtv.org/media_tree.git
4475W: http://linuxtv.org
4476S: Maintained
4477F: drivers/media/radio/radio-keene*
4478
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004480M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004481L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004483F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484
Michal Marek70fb7ba2010-01-29 14:22:43 +01004485KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004486M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004487T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4488T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004489L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004491F: Documentation/kbuild/
4492F: Makefile
4493F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004494F: scripts/basic/
4495F: scripts/mk*
4496F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497
4498KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004499L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004500W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004501S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004503KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004504M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004505L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506W: http://nfs.sourceforge.net/
NeilBrown98fac23f2007-01-26 00:56:57 -08004507S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004508F: fs/nfsd/
4509F: include/linux/nfsd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004510F: include/uapi/linux/nfsd/
Joe Perches679655d2009-04-07 20:44:32 -07004511F: fs/lockd/
4512F: fs/nfs_common/
4513F: net/sunrpc/
4514F: include/linux/lockd/
4515F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004516F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517
Avi Kivity426d62e2006-12-13 00:34:03 -08004518KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004519M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004520M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004521L: kvm@vger.kernel.org
4522W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004523S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004524F: Documentation/*/kvm.txt
4525F: arch/*/kvm/
4526F: arch/*/include/asm/kvm*
4527F: include/linux/kvm*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004528F: include/uapi/linux/kvm*
Joe Perches679655d2009-04-07 20:44:32 -07004529F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004530
Joerg Roedelad8003d2008-09-10 20:01:07 +02004531KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004532M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004533L: kvm@vger.kernel.org
4534W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004536F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004537F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004538
Hollis Blanchard513014b2008-04-16 23:28:08 -05004539KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004540M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004541L: kvm-ppc@vger.kernel.org
4542W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004543T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004544S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004545F: arch/powerpc/include/asm/kvm*
4546F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004547
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004548KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004549M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004550L: kvm-ia64@vger.kernel.org
4551W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004552S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004553F: Documentation/ia64/kvm.txt
4554F: arch/ia64/include/asm/kvm*
4555F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004556
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004557KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004558M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004559M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004560M: linux390@de.ibm.com
4561L: linux-s390@vger.kernel.org
4562W: http://www.ibm.com/developerworks/linux/linux390/
4563S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004564F: Documentation/s390/kvm.txt
4565F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004566F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004567F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004568
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004569KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004570M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004571W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004572L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004574F: include/linux/kexec.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004575F: include/uapi/linux/kexec.h
Joe Perches679655d2009-04-07 20:44:32 -07004576F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004577
David Howellse9714612010-03-29 23:42:09 +01004578KEYS/KEYRINGS:
4579M: David Howells <dhowells@redhat.com>
4580L: keyrings@linux-nfs.org
4581S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004582F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004583F: include/linux/key.h
4584F: include/linux/key-type.h
4585F: include/keys/
4586F: security/keys/
4587
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004588KEYS-TRUSTED
4589M: David Safford <safford@watson.ibm.com>
4590M: Mimi Zohar <zohar@us.ibm.com>
4591L: linux-security-module@vger.kernel.org
4592L: keyrings@linux-nfs.org
4593S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004594F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004595F: include/keys/trusted-type.h
4596F: security/keys/trusted.c
4597F: security/keys/trusted.h
4598
4599KEYS-ENCRYPTED
4600M: Mimi Zohar <zohar@us.ibm.com>
4601M: David Safford <safford@watson.ibm.com>
4602L: linux-security-module@vger.kernel.org
4603L: keyrings@linux-nfs.org
4604S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004605F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004606F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004607F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004608
Jason Wessel5b778da2010-05-20 21:04:28 -05004609KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004610M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004611W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004612L: kgdb-bugreport@lists.sourceforge.net
4613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004614F: Documentation/DocBook/kgdb.tmpl
4615F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004616F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004617F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004618F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004619F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004620
Pekka Enberg456db8c2008-04-28 22:47:29 +03004621KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004622M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004623M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004624S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004625F: Documentation/kmemcheck.txt
4626F: arch/x86/include/asm/kmemcheck.h
4627F: arch/x86/mm/kmemcheck/
4628F: include/linux/kmemcheck.h
4629F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004630
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004631KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004632M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004633S: Maintained
4634F: Documentation/kmemleak.txt
4635F: include/linux/kmemleak.h
4636F: mm/kmemleak.c
4637F: mm/kmemleak-test.c
4638
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004639KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004640M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4641M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4642M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004643M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004645F: Documentation/kprobes.txt
4646F: include/linux/kprobes.h
4647F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004648
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004649KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004650M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004651W: http://miguelojeda.es/auxdisplay.htm
4652W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004654F: Documentation/auxdisplay/ks0108
4655F: drivers/auxdisplay/ks0108.c
4656F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004657
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004660S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004661F: Documentation/networking/lapb-module.txt
4662F: include/*/lapb.h
4663F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664
4665LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004666M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667L: linux-scsi@vger.kernel.org
4668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004669F: Documentation/scsi/53c700.txt
4670F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671
Richard Purdie263de9b2006-05-15 09:44:16 -07004672LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004673M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004674M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004675L: linux-leds@vger.kernel.org
4676T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004678F: drivers/leds/
4679F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004680
Jean Delvareb0461a42011-06-15 15:08:46 -07004681LEGACY EEPROM DRIVER
4682M: Jean Delvare <khali@linux-fr.org>
4683S: Maintained
4684F: Documentation/misc-devices/eeprom
4685F: drivers/misc/eeprom/eeprom.c
4686
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004688M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689L: legousb-devel@lists.sourceforge.net
4690W: http://legousb.sourceforge.net/
4691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004692F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
Michael Krufky055616a2012-10-02 00:56:06 -03004694LG2160 MEDIA DRIVER
4695M: Michael Krufky <mkrufky@linuxtv.org>
4696L: linux-media@vger.kernel.org
4697W: http://linuxtv.org/
4698W: http://github.com/mkrufky
4699Q: http://patchwork.linuxtv.org/project/linux-media/list/
4700T: git git://linuxtv.org/mkrufky/tuners.git
4701S: Maintained
4702F: drivers/media/dvb-frontends/lg2160.*
4703
Michael Krufky6f0e7722012-10-02 00:56:00 -03004704LGDT3305 MEDIA DRIVER
4705M: Michael Krufky <mkrufky@linuxtv.org>
4706L: linux-media@vger.kernel.org
4707W: http://linuxtv.org/
4708W: http://github.com/mkrufky
4709Q: http://patchwork.linuxtv.org/project/linux-media/list/
4710T: git git://linuxtv.org/mkrufky/tuners.git
4711S: Maintained
4712F: drivers/media/dvb-frontends/lgdt3305.*
4713
Rusty Russell568a17f2007-10-25 14:12:24 +10004714LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004715M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004716L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004717W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004718S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004719F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004720F: arch/x86/lguest/
4721F: drivers/lguest/
4722F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004723F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004724
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004726M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727W: http://www.ibm.com/linux/ltc/projects/ppc
4728S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004729F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004731LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004732M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4733M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004735L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004736Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004737T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004739F: Documentation/powerpc/
4740F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741
4742LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004743M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004745L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004747F: arch/powerpc/platforms/powermac/
4748F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749
Grant Likely77a76362008-07-12 12:11:43 -06004750LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004751M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004752L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004753T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004755F: arch/powerpc/platforms/512x/
4756F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757
4758LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004759M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004760M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004762L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004763T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004765F: arch/powerpc/platforms/40x/
4766F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767
Grant Likely260c02a2007-10-02 12:15:34 +10004768LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004769M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004770W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004771L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004772T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004774F: arch/powerpc/*/*virtex*
4775F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776
Tom Rinie93adf12005-07-26 12:49:53 -07004777LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004778M: Vitaly Bordug <vitb@kernel.crashing.org>
4779M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004780W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004781L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004782S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004783F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004784
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004786M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004787W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004788L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004789S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004790F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004791F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792
Olof Johanssonab06ff32006-09-06 14:44:54 -05004793LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004794M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004795L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004796S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004797F: arch/powerpc/platforms/pasemi/
4798F: drivers/*/*pasemi*
4799F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004800
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004802M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004803L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804S: Supported
4805
Harry Weia23ce6d2011-02-11 16:52:20 +01004806LIS3LV02D ACCELEROMETER DRIVER
4807M: Eric Piel <eric.piel@tremplin-utc.net>
4808S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004809F: Documentation/misc-devices/lis3lv02d
4810F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004811F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004812
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004813LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004814M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004816F: include/linux/llc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08004817F: include/uapi/linux/llc.h
Joe Perches679655d2009-04-07 20:44:32 -07004818F: include/net/llc*
4819F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004820
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004821LM73 HARDWARE MONITOR DRIVER
4822M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4823L: lm-sensors@lm-sensors.org
4824S: Maintained
4825F: drivers/hwmon/lm73.c
4826
Jean Delvare156e2d12011-07-25 21:46:11 +02004827LM78 HARDWARE MONITOR DRIVER
4828M: Jean Delvare <khali@linux-fr.org>
4829L: lm-sensors@lm-sensors.org
4830S: Maintained
4831F: Documentation/hwmon/lm78
4832F: drivers/hwmon/lm78.c
4833
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004835M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004836L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004838F: Documentation/hwmon/lm83
4839F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840
4841LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004842M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004843L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004845F: Documentation/hwmon/lm90
4846F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004848LME2510 MEDIA DRIVER
4849M: Malcolm Priestley <tvboxspy@gmail.com>
4850L: linux-media@vger.kernel.org
4851W: http://linuxtv.org/
4852Q: http://patchwork.linuxtv.org/project/linux-media/list/
4853S: Maintained
4854F: drivers/media/usb/dvb-usb-v2/lmedm04*
4855
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004856LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004857M: Peter Zijlstra <peterz@infradead.org>
4858M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004859T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004861F: Documentation/lockdep*.txt
4862F: Documentation/lockstat.txt
4863F: include/linux/lockdep.h
4864F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004865
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004866LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004867M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004868L: linux-ntfs-dev@lists.sourceforge.net
4869W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004871F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004872F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873
Joern Engelef6ada32009-11-20 22:17:12 +01004874LogFS
4875M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304876M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004877L: logfs@logfs.org
4878W: logfs.org
4879S: Maintained
4880F: fs/logfs/
4881
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004882LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304883M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4884M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004885M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004886L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004887L: linux-scsi@vger.kernel.org
4888W: http://www.lsilogic.com/support
4889S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004890F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304891F: drivers/scsi/mpt2sas/
4892F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004893
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004895M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896L: linux-scsi@vger.kernel.org
4897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004898F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899
Guenter Roecke5f5c992010-06-25 11:59:54 -07004900LTC4261 HARDWARE MONITOR DRIVER
4901M: Guenter Roeck <linux@roeck-us.net>
4902L: lm-sensors@lm-sensors.org
4903S: Maintained
4904F: Documentation/hwmon/ltc4261
4905F: drivers/hwmon/ltc4261.c
4906
Mike Frysinger81365c32008-10-29 14:01:12 -07004907LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004908M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004909M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004910M: Cyril Hrubis <chrubis@suse.cz>
4911M: Caspar Zhang <caspar@casparzhang.com>
4912M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004913L: ltp-list@lists.sourceforge.net (subscribers-only)
4914W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004915T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004916T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004917S: Maintained
4918
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004919M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004920M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004921L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004922L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4923W: http://www.linux-m32r.org/
4924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004925F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004926
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004928M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929L: linux-m68k@lists.linux-m68k.org
4930W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004931T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004933F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004934F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935
4936M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004937M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004939L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004941F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942
4943M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004944M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945W: http://www.tazenda.demon.co.uk/phil/linux-hp
4946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004947F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004949M88RS2000 MEDIA DRIVER
4950M: Malcolm Priestley <tvboxspy@gmail.com>
4951L: linux-media@vger.kernel.org
4952W: http://linuxtv.org/
4953Q: http://patchwork.linuxtv.org/project/linux-media/list/
4954S: Maintained
4955F: drivers/media/dvb-frontends/m88rs2000*
4956
Alexey Klimov07a092f2012-11-12 02:57:32 -03004957MA901 MASTERKIT USB FM RADIO DRIVER
4958M: Alexey Klimov <klimov.linux@gmail.com>
4959L: linux-media@vger.kernel.org
4960T: git git://linuxtv.org/media_tree.git
4961S: Maintained
4962F: drivers/media/radio/radio-ma901.c
4963
Jiri Benc64a327a2007-05-05 11:47:08 -07004964MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004965M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004966L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004967W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004968T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4969T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004971F: Documentation/networking/mac80211-injection.txt
4972F: include/net/mac80211.h
4973F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004974
Stefano Brivio1036d862007-12-23 04:46:27 +01004975MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004976M: Stefano Brivio <stefano.brivio@polimi.it>
4977M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004978L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004979W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004980T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4981T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004983F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004984
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004985MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004986M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004987L: netdev@vger.kernel.org
4988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004989F: drivers/net/macvlan.c
4990F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004991
Michael Kerriskfaf16682005-07-31 22:34:47 -07004992MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004993M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004994W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004995L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004996S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004997
stephen hemminger44c14c12012-04-02 12:59:47 +00004998MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4999M: Mirko Lindner <mlindner@marvell.com>
5000M: Stephen Hemminger <shemminger@vyatta.com>
5001L: netdev@vger.kernel.org
5002S: Maintained
5003F: drivers/net/ethernet/marvell/sk*
5004
Stefano Brivio74cda162007-11-19 20:27:46 +01005005MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005006M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01005007L: libertas-dev@lists.infradead.org
5008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005009F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01005010
Dale Farnsworthb60d6972006-01-16 16:45:45 -07005011MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005012M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005013L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00005014S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07005015F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07005016F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02005018MARVELL MVNETA ETHERNET DRIVER
5019M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5020L: netdev@vger.kernel.org
5021S: Maintained
5022F: drivers/net/ethernet/marvell/mvneta.*
5023
Bing Zhaofcad5842011-07-13 13:11:58 -07005024MARVELL MWIFIEX WIRELESS DRIVER
5025M: Bing Zhao <bzhao@marvell.com>
5026L: linux-wireless@vger.kernel.org
5027S: Maintained
5028F: drivers/net/wireless/mwifiex/
5029
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005030MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01005031M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005032L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02005033S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02005034F: drivers/net/wireless/mwl8k.c
5035
Pierre Ossman2a695672009-03-16 19:52:26 +01005036MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005037M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005038S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07005039F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01005040
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005042L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07005043S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005044F: drivers/video/matrox/matroxfb_*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005045F: include/uapi/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046
Guenter Roeckca462082012-06-01 23:28:23 -07005047MAX16065 HARDWARE MONITOR DRIVER
5048M: Guenter Roeck <linux@roeck-us.net>
5049L: lm-sensors@lm-sensors.org
5050S: Maintained
5051F: Documentation/hwmon/max16065
5052F: drivers/hwmon/max16065.c
5053
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005054MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07005055M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005056L: lm-sensors@lm-sensors.org
5057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005058F: Documentation/hwmon/max6650
5059F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02005060
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03005061MAXIRADIO FM RADIO RECEIVER DRIVER
5062M: Hans Verkuil <hverkuil@xs4all.nl>
5063L: linux-media@vger.kernel.org
5064T: git git://linuxtv.org/media_tree.git
5065W: http://linuxtv.org
5066S: Maintained
5067F: drivers/media/radio/radio-maxiradio*
5068
Joe Perches127c49a2009-04-08 08:34:04 -07005069MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005070M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07005071P: LinuxTV.org Project
5072L: linux-media@vger.kernel.org
5073W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005074Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005075T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07005076S: Maintained
5077F: Documentation/dvb/
5078F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005079F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005080F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02005081F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07005082F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005083F: include/uapi/linux/dvb/
5084F: include/uapi/linux/videodev2.h
5085F: include/uapi/linux/media.h
5086F: include/uapi/linux/v4l2-*
5087F: include/uapi/linux/meye.h
5088F: include/uapi/linux/ivtv*
5089F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005090
Hans Verkuil6149a932012-11-23 07:21:19 -03005091MEDIAVISION PRO MOVIE STUDIO DRIVER
5092M: Hans Verkuil <hverkuil@xs4all.nl>
5093L: linux-media@vger.kernel.org
5094T: git git://linuxtv.org/media_tree.git
5095W: http://linuxtv.org
5096S: Odd Fixes
5097F: drivers/media/parport/pms*
5098
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005099MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005100M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005101L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005102W: http://megaraid.lsilogic.com
5103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005104F: Documentation/scsi/megaraid.txt
5105F: drivers/scsi/megaraid.*
5106F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005107
Amir Vadai2c46c9d2012-12-02 03:49:21 +00005108MELLANOX ETHERNET DRIVER (mlx4_en)
5109M: Amir Vadai <amirv@mellanox.com>
5110L: netdev@vger.kernel.org
5111S: Supported
5112W: http://www.mellanox.com
5113Q: http://patchwork.ozlabs.org/project/netdev/list/
5114F: drivers/net/ethernet/mellanox/mlx4/en_*
5115
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005116MEMORY MANAGEMENT
5117L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005118W: http://www.linux-mm.org
5119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005120F: include/linux/mm.h
5121F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005122
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005123MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005124M: Johannes Weiner <hannes@cmpxchg.org>
5125M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005126M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005127M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005128L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005129L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005131F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005132F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005133
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005134MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005135M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005137W: http://www.linux-mtd.infradead.org/
5138Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005139T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005141F: drivers/mtd/
5142F: include/linux/mtd/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005143F: include/uapi/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144
Michal Simekc6375b02009-03-27 14:25:52 +01005145MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005146M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005147L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005148W: http://www.monstr.eu/fdt/
5149T: git git://git.monstr.eu/linux-2.6-microblaze.git
5150S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005151F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152
5153MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005154M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005156F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157
5158MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005159M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005161W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005162T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005163Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005164S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005165F: Documentation/mips/
5166F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167
Hans Verkuil08b76202012-11-23 07:15:42 -03005168MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5169M: Hans Verkuil <hverkuil@xs4all.nl>
5170L: linux-media@vger.kernel.org
5171T: git git://linuxtv.org/media_tree.git
5172W: http://linuxtv.org
5173S: Odd Fixes
5174F: drivers/media/radio/radio-miropcm20*
5175
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005177M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005179F: include/linux/module.h
5180F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181
5182MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005184S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005185F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005186F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005187F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188
Jiri Slabyb9705b62008-04-30 00:53:48 -07005189MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005190M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005192F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005193F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005194
Alexey Klimov889b2f82012-11-16 17:43:59 -03005195MR800 AVERMEDIA USB FM RADIO DRIVER
5196M: Alexey Klimov <klimov.linux@gmail.com>
5197L: linux-media@vger.kernel.org
5198T: git git://linuxtv.org/media_tree.git
5199S: Maintained
5200F: drivers/media/radio/radio-mr800.c
5201
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005202MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07005203M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005204L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005206F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005207
Anisse Astier0f1006b2009-12-17 11:28:49 +01005208MSI WMI SUPPORT
5209M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd09448532010-02-11 10:40:13 -05005210L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005211S: Supported
5212F: drivers/platform/x86/msi-wmi.c
5213
Laurent Pinchart0e837fb2012-12-10 20:38:23 -03005214MT9M032 SENSOR DRIVER
5215M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5216L: linux-media@vger.kernel.org
5217T: git git://linuxtv.org/media_tree.git
5218S: Maintained
5219F: drivers/media/i2c/mt9m032.c
5220F: include/media/mt9m032.h
5221
5222MT9P031 SENSOR DRIVER
5223M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5224L: linux-media@vger.kernel.org
5225T: git git://linuxtv.org/media_tree.git
5226S: Maintained
5227F: drivers/media/i2c/mt9p031.c
5228F: include/media/mt9p031.h
5229
5230MT9T001 SENSOR DRIVER
5231M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5232L: linux-media@vger.kernel.org
5233T: git git://linuxtv.org/media_tree.git
5234S: Maintained
5235F: drivers/media/i2c/mt9t001.c
5236F: include/media/mt9t001.h
5237
5238MT9V032 SENSOR DRIVER
5239M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5240L: linux-media@vger.kernel.org
5241T: git git://linuxtv.org/media_tree.git
5242S: Maintained
5243F: drivers/media/i2c/mt9v032.c
5244F: include/media/mt9v032.h
5245
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005246MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005247M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005248T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005249S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005250F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005251
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005252MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005253M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005254L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005255T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5256S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005257F: drivers/mmc/
5258F: include/linux/mmc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005259F: include/uapi/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005260
David Brownell15a05802007-08-08 09:12:54 -07005261MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005262S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005263F: drivers/mmc/host/mmc_spi.c
5264F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005265
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005267M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005269F: Documentation/sound/oss/MultiSound
5270F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271
Jiri Slabyd7354102006-12-08 02:38:35 -08005272MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005273S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005274F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005275F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005276
Felipe Balbi550a7372008-07-24 12:27:36 +03005277MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005278M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005279L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005280T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005282F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005283
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005284MXL5007T MEDIA DRIVER
5285M: Michael Krufky <mkrufky@linuxtv.org>
5286L: linux-media@vger.kernel.org
5287W: http://linuxtv.org/
5288W: http://github.com/mkrufky
5289Q: http://patchwork.linuxtv.org/project/linux-media/list/
5290T: git git://linuxtv.org/mkrufky/tuners.git
5291S: Maintained
5292F: drivers/media/tuners/mxl5007t.*
5293
Brice Goglin2d3cf582008-05-17 12:45:36 +02005294MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005295M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005296L: netdev@vger.kernel.org
5297W: http://www.myri.com/scs/download-Myri10GE.html
5298S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005299F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005300
Linus Torvalds1da177e2005-04-16 15:20:36 -07005301NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005302S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005303F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304
Daniel Mack23dc05a2011-05-18 11:28:38 +02005305NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5306M: Daniel Mack <zonque@gmail.com>
5307S: Maintained
5308L: alsa-devel@alsa-project.org
5309W: http://www.native-instruments.com
5310F: sound/usb/caiaq/
5311
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005313M: Petr Vandrovec <petr@vandrovec.name>
5314S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005315F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316
5317NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005318M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319L: linux-scsi@vger.kernel.org
5320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005321F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005323NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005324M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005325L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005326W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005327S: Supported
5328F: drivers/infiniband/hw/nes/
5329
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005330NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05005331M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07005332L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005334F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005335
Jon Masonb2f5a052010-07-15 08:47:27 +00005336NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005337M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005338L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005339S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005340F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005341F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005342F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005343
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345P: Harald Welte
5346P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005347M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005348M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005349L: netfilter-devel@vger.kernel.org
5350L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005351L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352W: http://www.netfilter.org/
5353W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005354T: git git://1984.lsi.us.es/nf
5355T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005357F: include/linux/netfilter*
5358F: include/linux/netfilter/
5359F: include/net/netfilter/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005360F: include/uapi/linux/netfilter*
5361F: include/uapi/linux/netfilter/
Joe Perches679655d2009-04-07 20:44:32 -07005362F: net/*/netfilter.c
5363F: net/*/netfilter/
5364F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365
Paul Moore4cc67732006-09-25 15:57:13 -07005366NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005367M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005368W: http://netlabel.sf.net
5369L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005370S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005371F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005372F: include/net/netlabel.h
5373F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005374
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005376M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005378W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005380F: include/net/netrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005381F: include/uapi/linux/netrom.h
Joe Perches679655d2009-04-07 20:44:32 -07005382F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005384NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005385M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005387F: Documentation/blockdev/nbd.txt
5388F: drivers/block/nbd.c
5389F: include/linux/nbd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005390F: include/uapi/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391
Neil Horman6e436502009-10-05 03:56:55 +00005392NETWORK DROP MONITOR
5393M: Neil Horman <nhorman@tuxdriver.com>
5394L: netdev@vger.kernel.org
5395S: Maintained
5396W: https://fedorahosted.org/dropwatch/
5397F: net/core/drop_monitor.c
5398
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005400M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005401L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005402W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005403Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005404T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5405T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005407F: net/
5408F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005409F: include/linux/in.h
5410F: include/linux/net.h
5411F: include/linux/netdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005412F: include/uapi/linux/in.h
5413F: include/uapi/linux/net.h
5414F: include/uapi/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415
5416NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005417M: "David S. Miller" <davem@davemloft.net>
5418M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005419M: James Morris <jmorris@namei.org>
5420M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5421M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005422L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005423T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005425F: net/ipv4/
5426F: net/ipv6/
5427F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005428F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429
David S. Miller73b76562012-10-16 14:08:40 -04005430NETWORKING [IPSEC]
5431M: Steffen Klassert <steffen.klassert@secunet.com>
5432M: Herbert Xu <herbert@gondor.apana.org.au>
5433M: "David S. Miller" <davem@davemloft.net>
5434L: netdev@vger.kernel.org
5435T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5436S: Maintained
5437F: net/xfrm/
5438F: net/key/
5439F: net/ipv4/xfrm*
5440F: net/ipv6/xfrm*
5441F: include/uapi/linux/xfrm.h
5442F: include/net/xfrm.h
5443
James Morris10e2ff12007-08-25 14:41:28 -07005444NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005445M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005446L: netdev@vger.kernel.org
5447S: Maintained
5448
John W. Linville29f8f632006-01-18 14:52:48 -08005449NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005450M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005451L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005452Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005453T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005454S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005455F: net/mac80211/
5456F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005457F: net/wireless/
5458F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005459F: include/linux/wireless.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005460F: include/uapi/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005461F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005462F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005463
Joe Perches788873a2009-04-16 09:38:45 +00005464NETWORKING DRIVERS
5465L: netdev@vger.kernel.org
5466W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005467Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005468T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5469T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005470S: Odd Fixes
5471F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005472F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005473F: include/linux/netdevice.h
5474F: include/linux/arcdevice.h
5475F: include/linux/etherdevice.h
5476F: include/linux/fcdevice.h
5477F: include/linux/fddidevice.h
5478F: include/linux/hippidevice.h
5479F: include/linux/inetdevice.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005480F: include/uapi/linux/if_*
5481F: include/uapi/linux/netdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005482
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005483NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005484M: Sony Chacko <sony.chacko@qlogic.com>
5485M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005486L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005487W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005488S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005489F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005490
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005491NFC SUBSYSTEM
5492M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5493M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5494M: Samuel Ortiz <sameo@linux.intel.com>
5495L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005496L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005497S: Maintained
5498F: net/nfc/
Ilan Elias55eb94f2011-09-18 11:19:34 +03005499F: include/net/nfc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005500F: include/uapi/linux/nfc.h
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005501F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005502F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005504NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005505M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005506L: linux-nfs@vger.kernel.org
5507W: http://client.linux-nfs.org
5508T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005510F: fs/lockd/
5511F: fs/nfs/
5512F: fs/nfs_common/
5513F: net/sunrpc/
5514F: include/linux/lockd/
5515F: include/linux/nfs*
5516F: include/linux/sunrpc/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005517F: include/uapi/linux/nfs*
5518F: include/uapi/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519
5520NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005521M: Jan-Pascal van Best <janpascal@vanbest.org>
5522M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005523L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005525F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005527NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005528M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005529L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005530W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005531T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005532S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005533F: Documentation/filesystems/nilfs2.txt
5534F: fs/nilfs2/
5535F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005536
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005538M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005541F: Documentation/scsi/NinjaSCSI.txt
5542F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543
5544NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005545M: GOTO Masanori <gotom@debian.or.jp>
5546M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005549F: Documentation/scsi/NinjaSCSI.txt
5550F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005553M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005555W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005556T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005557S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005558F: Documentation/filesystems/ntfs.txt
5559F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005561NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005562M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005563L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005565F: drivers/video/riva/
5566F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567
Tony Lindgrenf5525782009-05-28 13:23:53 -07005568OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005569M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005570L: linux-omap@vger.kernel.org
5571W: http://www.muru.com/linux/omap/
5572W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005573Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005574T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005575S: Maintained
Felipe Contreras4e04d5a32009-09-21 17:04:25 -07005576F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005577F: drivers/i2c/busses/i2c-omap.c
5578F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005579
Tony Lindgren50f29fb2012-12-16 11:29:59 -08005580OMAP DEVICE TREE SUPPORT
5581M: Benoît Cousson <b-cousson@ti.com>
5582M: Tony Lindgren <tony@atomide.com>
5583L: linux-omap@vger.kernel.org
5584L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5585S: Maintained
5586F: arch/arm/boot/dts/*omap*
5587F: arch/arm/boot/dts/*am3*
5588
Tony Lindgrenf5525782009-05-28 13:23:53 -07005589OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005590M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005591L: linux-omap@vger.kernel.org
5592S: Maintained
5593F: arch/arm/*omap*/*clock*
5594
5595OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005596M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005597L: linux-omap@vger.kernel.org
5598S: Maintained
5599F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005600F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005601
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005602OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5603M: Rajendra Nayak <rnayak@ti.com>
5604M: Paul Walmsley <paul@pwsan.com>
5605L: linux-omap@vger.kernel.org
5606S: Maintained
5607F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5608F: arch/arm/mach-omap2/powerdomain44xx.c
5609F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5610F: arch/arm/mach-omap2/clockdomain44xx.c
5611
Tony Lindgrenf5525782009-05-28 13:23:53 -07005612OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005613M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005614M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005615L: alsa-devel@alsa-project.org (subscribers-only)
5616L: linux-omap@vger.kernel.org
5617S: Maintained
5618F: sound/soc/omap/
5619
5620OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005621M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005622L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005623L: linux-omap@vger.kernel.org
5624S: Maintained
5625F: drivers/video/omap/
5626
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005627OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005628M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005629L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005630L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005631S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005632F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005633F: Documentation/arm/OMAP/DSS
5634
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005635OMAP HARDWARE SPINLOCK SUPPORT
5636M: Ohad Ben-Cohen <ohad@wizery.com>
5637L: linux-omap@vger.kernel.org
5638S: Maintained
5639F: drivers/hwspinlock/omap_hwspinlock.c
5640F: arch/arm/mach-omap2/hwspinlock.c
5641
Tony Lindgrenf5525782009-05-28 13:23:53 -07005642OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005643M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005644L: linux-omap@vger.kernel.org
5645S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005646F: drivers/mmc/host/omap.c
5647
5648OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305649M: Venkatraman S <svenkatr@ti.com>
5650L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005651L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305652S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005653F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005654
5655OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005656M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005657S: Maintained
5658F: drivers/char/hw_random/omap-rng.c
5659
Paul Walmsleyf400c822010-12-06 19:08:54 -07005660OMAP HWMOD SUPPORT
5661M: Benoît Cousson <b-cousson@ti.com>
5662M: Paul Walmsley <paul@pwsan.com>
5663L: linux-omap@vger.kernel.org
5664S: Maintained
5665F: arch/arm/mach-omap2/omap_hwmod.c
5666F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5667
5668OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5669M: Benoît Cousson <b-cousson@ti.com>
5670L: linux-omap@vger.kernel.org
5671S: Maintained
5672F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5673
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005674OMAP IMAGE SIGNAL PROCESSOR (ISP)
5675M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5676L: linux-media@vger.kernel.org
5677S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005678F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005679
Tony Lindgrenf5525782009-05-28 13:23:53 -07005680OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005681M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005682L: linux-usb@vger.kernel.org
5683L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005684T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005685S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005686F: drivers/usb/*/*omap*
5687F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005688
Kevin Hilman6d994712012-07-16 10:05:07 -07005689OMAP GPIO DRIVER
5690M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5691M: Kevin Hilman <khilman@ti.com>
5692L: linux-omap@vger.kernel.org
5693S: Maintained
5694F: drivers/gpio/gpio-omap.c
5695
Bob Copeland0ad122d2008-07-25 19:45:18 -07005696OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005697M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005698L: linux-karma-devel@lists.sourceforge.net
5699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005700F: Documentation/filesystems/omfs.txt
5701F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005702
Harald Weltec1986ee2005-11-13 16:06:29 -08005703OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005704M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005706F: drivers/char/pcmcia/cm4000_cs.c
5707F: include/linux/cm4000_cs.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005708F: include/uapi/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005709
Harald Welte77c44ab2005-11-13 16:06:26 -08005710OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005711M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005713F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005714
Jonathan Corbet77d51402007-03-22 19:44:17 -03005715OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005716M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005717L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005718T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005719S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005720F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005721
Thomas Gleixner431bca72007-05-02 09:31:35 +02005722ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005723M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005724L: linux-mtd@lists.infradead.org
5725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005726F: drivers/mtd/onenand/
5727F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005728
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005730M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731L: osst-users@lists.sourceforge.net
5732L: linux-scsi@vger.kernel.org
5733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005734F: drivers/scsi/osst*
5735F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005737OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005738M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005739L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005741F: Documentation/i2c/busses/i2c-ocores
5742F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005743
Grant Likely860c44c2009-10-26 16:49:49 -07005744OPEN FIRMWARE AND FLATTENED DEVICE TREE
5745M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005746M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005747L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005748W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005749T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005750S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005751F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005752F: drivers/of
5753F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005754F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005755K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005756K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005757
Jonas Bonn19f9d392011-06-04 22:00:38 +03005758OPENRISC ARCHITECTURE
5759M: Jonas Bonn <jonas@southpole.se>
5760W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005761L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005762S: Maintained
5763T: git git://openrisc.net/~jonas/linux
5764F: arch/openrisc
5765
Jesse Grossccb13522011-10-25 19:26:31 -07005766OPENVSWITCH
5767M: Jesse Gross <jesse@nicira.com>
5768L: dev@openvswitch.org
5769W: http://openvswitch.org
5770T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5771S: Maintained
5772F: net/openvswitch/
5773
Clemens Ladischaf399172011-01-10 16:32:54 +01005774OPL4 DRIVER
5775M: Clemens Ladisch <clemens@ladisch.de>
5776L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5777T: git git://git.alsa-project.org/alsa-kernel.git
5778S: Maintained
5779F: sound/drivers/opl4/
5780
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005782M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783L: oprofile-list@lists.sf.net
5784S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005785F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005786F: arch/*/oprofile/
5787F: drivers/oprofile/
5788F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005790ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005791M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005792M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005793L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5794W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005795T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005796S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005797F: Documentation/filesystems/ocfs2.txt
5798F: Documentation/filesystems/dlmfs.txt
5799F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005800
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005802L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005803W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005804W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005805S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005806F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005808OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005809M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005810M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005811L: osd-dev@open-osd.org
5812W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005813T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005814S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005815F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005816F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005817F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005818
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005819P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005820M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005821L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005822W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005824F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005825
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005826PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005827M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005828L: netdev@vger.kernel.org
5829S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005830F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005831
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005832PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005833M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005834L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005836F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005837
Steffen Klassert48fc2672010-08-13 10:10:46 -04005838PADATA PARALLEL EXECUTION MECHANISM
5839M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005840L: linux-crypto@vger.kernel.org
5841S: Maintained
5842F: kernel/padata.c
5843F: include/linux/padata.h
5844F: Documentation/padata.txt
5845
Harald Welte709ee532008-09-23 17:46:57 +02005846PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005847M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05005848L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005850F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005851
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005852PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005853M: David Howells <dhowells@redhat.com>
5854M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005855L: linux-am33-list@redhat.com (moderated for non-subscribers)
5856W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005858F: Documentation/mn10300/
5859F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005860
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005862L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005863S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005864F: drivers/parport/
5865F: include/linux/parport*.h
5866F: drivers/char/ppdev.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08005867F: include/uapi/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005869PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005870M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005871M: Chris Wright <chrisw@sous-sol.org>
5872M: Alok Kataria <akataria@vmware.com>
5873M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005874L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005875S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005876F: Documentation/ia64/paravirt_ops.txt
5877F: arch/*/kernel/paravirt*
5878F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005879
Linus Torvalds1da177e2005-04-16 15:20:36 -07005880PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005881M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005882L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883W: http://www.torque.net/linux-pp.html
5884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005885F: Documentation/blockdev/paride.txt
5886F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887
5888PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005889M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005890M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005891L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005893Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005894T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005896F: arch/parisc/
5897F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898
Jim Cromie1662d322006-10-06 00:43:59 -07005899PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005900M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005901L: lm-sensors@lm-sensors.org
5902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005903F: Documentation/hwmon/pc87360
5904F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005905
5906PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005907M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005909F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005910
Jean Delvare1ad107f2010-08-14 21:09:00 +02005911PC87427 HARDWARE MONITORING DRIVER
5912M: Jean Delvare <khali@linux-fr.org>
5913L: lm-sensors@lm-sensors.org
5914S: Maintained
5915F: Documentation/hwmon/pc87427
5916F: drivers/hwmon/pc87427.c
5917
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005918PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005919M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005920S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005921F: drivers/leds/leds-pca9532.c
5922F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005923
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005924PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005925M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005926L: linux-i2c@vger.kernel.org
5927S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005928F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005929
Wolfram Sanga1867d32009-09-18 22:45:51 +02005930PCA9564/PCA9665 I2C BUS DRIVER
5931M: Wolfram Sang <w.sang@pengutronix.de>
5932L: linux-i2c@vger.kernel.org
5933S: Maintained
5934F: drivers/i2c/algos/i2c-algo-pca.c
5935F: drivers/i2c/busses/i2c-pca-*
5936F: include/linux/i2c-algo-pca.h
5937F: include/linux/i2c-pca-platform.h
5938
Khalid Aziz3971dae2012-04-12 12:49:13 -07005939PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005940M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005941S: Maintained
5942F: drivers/firmware/pcdp.*
5943
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005944PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005945M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005946L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005947S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005948F: Documentation/PCI/pci-error-recovery.txt
5949F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005950
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005952M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005953L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005954Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005955T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005957F: Documentation/PCI/
5958F: drivers/pci/
5959F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005962P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005963L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005964W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005965T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005967F: Documentation/pcmcia/
5968F: drivers/pcmcia/
5969F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970
5971PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005972M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005973L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005975F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976
Steffen Klassert48fc2672010-08-13 10:10:46 -04005977PCRYPT PARALLEL CRYPTO ENGINE
5978M: Steffen Klassert <steffen.klassert@secunet.com>
5979L: linux-crypto@vger.kernel.org
5980S: Maintained
5981F: crypto/pcrypt.c
5982F: include/crypto/pcrypt.h
5983
Tejun Heoe72df0b2010-12-10 17:02:49 +01005984PER-CPU MEMORY ALLOCATOR
5985M: Tejun Heo <tj@kernel.org>
5986M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005987T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5988S: Maintained
5989F: include/linux/percpu*.h
5990F: mm/percpu*.c
5991F: arch/*/include/asm/percpu.h
5992
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005993PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005994M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005996F: include/linux/delayacct.h
5997F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005998
Ingo Molnar57c0c152009-09-21 12:20:38 +02005999PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006000M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6001M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01006002M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02006003M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006004T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006005S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09006006F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02006007F: include/linux/perf_event.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006008F: include/uapi/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01006009F: arch/*/kernel/perf_event*.c
6010F: arch/*/kernel/*/perf_event*.c
6011F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02006012F: arch/*/include/asm/perf_event.h
Vincent Legolla0032362009-10-13 14:48:14 +02006013F: arch/*/kernel/perf_callchain.c
6014F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10006015
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006016PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07006017M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006018L: linux-abi-devel@lists.sourceforge.net
6019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006020F: include/linux/personality.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006021F: include/uapi/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01006022
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006023PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00006024M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006025S: Supported
6026F: Documentation/networking/phonet.txt
6027F: include/linux/phonet.h
6028F: include/net/phonet/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006029F: include/uapi/linux/phonet.h
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00006030F: net/phonet/
6031
Linus Torvalds1da177e2005-04-16 15:20:36 -07006032PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006033M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034L: linux-mtd@lists.infradead.org
6035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006036F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037
Bruno Prémontefdbb102012-07-30 21:39:03 +02006038PICOLCD HID DRIVER
6039M: Bruno Prémont <bonbons@linux-vserver.org>
6040L: linux-input@vger.kernel.org
6041S: Maintained
6042F: drivers/hid/hid-picolcd*
6043
Jamie Ilesa53bfa02011-12-12 20:28:42 +00006044PICOXCELL SUPPORT
6045M: Jamie Iles <jamie@jamieiles.com>
6046L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6047T: git git://github.com/jamieiles/linux-2.6-ji.git
6048S: Supported
6049F: arch/arm/mach-picoxcell
6050F: drivers/*/picoxcell*
6051F: drivers/*/*/picoxcell*
6052
Linus Walleij2744e8a2011-05-02 20:50:54 +02006053PIN CONTROL SUBSYSTEM
6054M: Linus Walleij <linus.walleij@linaro.org>
6055S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07006056F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006057F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02006058
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02006059PIN CONTROLLER - ATMEL AT91
6060M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6061L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6062S: Maintained
6063F: drivers/pinctrl/pinctrl-at91.c
6064
Viresh Kumardeda8282012-03-28 22:27:07 +05306065PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006066M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05306067L: spear-devel@list.st.com
6068L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6069W: http://www.st.com/spear
6070S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02006071F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05306072
Peter Osterlund249a6772005-09-27 21:45:30 -07006073PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02006074M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07006075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006076F: drivers/block/pktcdvd.c
6077F: include/linux/pktcdvd.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006078F: include/uapi/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07006079
GuanXuetaob31d8272011-01-16 00:35:49 +08006080PKUNITY SOC DRIVERS
6081M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6082W: http://mprc.pku.edu.cn/~guanxuetao/linux
6083S: Maintained
6084T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6085F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08006086F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08006087F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08006088F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08006089
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006090PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07006091M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07006092L: lm-sensors@lm-sensors.org
6093W: http://www.lm-sensors.org/
6094W: http://www.roeck-us.net/linux/drivers/
6095T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6096S: Maintained
6097F: Documentation/hwmon/pmbus
6098F: drivers/hwmon/pmbus/
6099F: include/linux/i2c/pmbus.h
6100
Anil Ravindranath89a36812009-08-25 17:35:18 -07006101PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07006102M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07006103L: linux-scsi@vger.kernel.org
6104W: http://www.pmc-sierra.com/
6105S: Supported
6106F: drivers/scsi/pmcraid.*
6107
jack wangdbf9bfe2009-10-14 16:19:21 +08006108PMC SIERRA PM8001 DRIVER
6109M: jack_wang@usish.com
6110M: lindar_liu@usish.com
6111L: linux-scsi@vger.kernel.org
6112S: Supported
6113F: drivers/scsi/pm8001/
6114
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07006116M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006117T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006119F: fs/timerfd.c
6120F: include/linux/timer*
6121F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122
Anton Vorontsov3be86142007-07-15 04:43:36 +04006123POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006124M: Anton Vorontsov <cbou@mail.ru>
6125M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07006126T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04006127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006128F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07006129F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04006130
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006132M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07006133M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006135F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136
Vitaly Wool999445d2007-01-04 13:07:03 +01006137PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006138M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006139L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01006140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006141F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01006142
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07006144M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145L: linux-ppp@vger.kernel.org
6146S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006147F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148
6149PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07006150M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006152F: net/atm/pppoatm.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006153F: include/uapi/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154
6155PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006156M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006157S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006158F: drivers/net/ppp/pppoe.c
6159F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006160
James Chapmana6d23702007-06-27 15:53:17 -07006161PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006162M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006163S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006164F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006165F: include/linux/if_pppol2tp.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006166F: include/uapi/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006167
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006168PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006169M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006170W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6171L: linuxpps@ml.enneenne.com (subscribers-only)
6172S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006173F: Documentation/pps/
6174F: drivers/pps/
6175F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006176
Harry Wei71a6d0a2011-05-11 15:13:33 -07006177PPTP DRIVER
6178M: Dmitry Kozlov <xeb@mail.ru>
6179L: netdev@vger.kernel.org
6180S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006181F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006182W: http://sourceforge.net/projects/accel-pptp
6183
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006185M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186L: kpreempt-tech@lists.sourceforge.net
6187W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6188S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006189F: Documentation/preempt-locking.txt
6190F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191
6192PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006193M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006194L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006195W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006196S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006197F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006199PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006200M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006201L: linux-ide@vger.kernel.org
6202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006203F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006204
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006205PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006206M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006207L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006208L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006209S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006210F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006211
Geoff Levandf58a9d12006-11-23 00:46:51 +01006212PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006213M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006214L: linuxppc-dev@lists.ozlabs.org
6215L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006217F: arch/powerpc/boot/ps3*
6218F: arch/powerpc/include/asm/lv1call.h
6219F: arch/powerpc/include/asm/ps3*.h
6220F: arch/powerpc/platforms/ps3/
6221F: drivers/*/ps3*
6222F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006223F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006224F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006225F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006226
Jim Pariscffb4add2009-01-06 11:32:10 +00006227PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006228M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006229L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006230S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006231F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006232
Anton Vorontsov8defe592012-08-03 18:07:20 -07006233PSTORE FILESYSTEM
6234M: Anton Vorontsov <cbouatmailru@gmail.com>
6235M: Colin Cross <ccross@android.com>
6236M: Kees Cook <keescook@chromium.org>
6237M: Tony Luck <tony.luck@intel.com>
6238S: Maintained
6239T: git git://git.infradead.org/users/cbou/linux-pstore.git
6240F: fs/pstore/
6241F: include/linux/pstore*
6242F: drivers/firmware/efivars.c
6243F: drivers/acpi/apei/erst.c
6244
Richard Cochran7fbc4152012-03-10 01:55:53 +00006245PTP HARDWARE CLOCK SUPPORT
6246M: Richard Cochran <richardcochran@gmail.com>
6247S: Maintained
6248W: http://linuxptp.sourceforge.net/
6249F: Documentation/ABI/testing/sysfs-ptp
6250F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006251F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006252F: drivers/net/phy/dp83640*
6253F: drivers/ptp/*
6254F: include/linux/ptp_cl*
6255
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006256PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006257M: Roland McGrath <roland@redhat.com>
6258M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006259S: Maintained
6260F: include/asm-generic/syscall.h
6261F: include/linux/ptrace.h
6262F: include/linux/regset.h
6263F: include/linux/tracehook.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006264F: include/uapi/linux/ptrace.h
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006265F: kernel/ptrace.c
6266
Michael Krufky83202042006-07-03 00:24:18 -07006267PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006268M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006269L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006270L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006271W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006272T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006274F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006275F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006276
Hans de Goede39532e62012-11-04 17:05:59 -03006277PWC WEBCAM DRIVER
6278M: Hans de Goede <hdegoede@redhat.com>
6279L: linux-media@vger.kernel.org
6280T: git git://linuxtv.org/media_tree.git
6281S: Maintained
6282F: drivers/media/usb/pwc/*
6283
Thierry Reding200efed2012-03-27 13:16:18 +02006284PWM SUBSYSTEM
6285M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006286L: linux-kernel@vger.kernel.org
6287S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006288W: http://gitorious.org/linux-pwm
6289T: git git://gitorious.org/linux-pwm/linux-pwm.git
6290F: Documentation/pwm.txt
6291F: Documentation/devicetree/bindings/pwm/
6292F: include/linux/pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006293F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006294F: drivers/video/backlight/pwm_bl.c
6295F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006296
Eric Miao30ec2612008-06-12 15:21:41 -07006297PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006298M: Eric Miao <eric.y.miao@gmail.com>
6299M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006300M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006301L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006302T: git git://github.com/hzhuang1/linux.git
6303T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006305F: arch/arm/mach-pxa/
6306F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006307F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006308F: drivers/usb/gadget/pxa2*
6309F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006310F: sound/arm/pxa*
6311F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006313MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006314M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006315M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006316L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006317T: git git://github.com/hzhuang1/linux.git
6318T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006319S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006320F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006321
Pierre Ossman272f1332007-05-14 21:25:26 +02006322PXA MMCI DRIVER
6323S: Orphan
6324
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006325PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006326M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006327L: rtc-linux@googlegroups.com
6328S: Maintained
6329
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006330QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006331M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006332L: linux-rdma@vger.kernel.org
6333S: Supported
6334F: drivers/infiniband/hw/qib/
6335
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006336QLOGIC QLA1280 SCSI DRIVER
6337M: Michael Reed <mdr@sgi.com>
6338L: linux-scsi@vger.kernel.org
6339S: Maintained
6340F: drivers/scsi/qla1280.[ch]
6341
Linus Torvalds1da177e2005-04-16 15:20:36 -07006342QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006343M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006344M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345L: linux-scsi@vger.kernel.org
6346S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006347F: Documentation/scsi/LICENSE.qla2xxx
6348F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006349
Ravi Anand883c98f2010-04-28 11:45:49 +05306350QLOGIC QLA4XXX iSCSI DRIVER
6351M: Ravi Anand <ravi.anand@qlogic.com>
6352M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6353M: iscsi-driver@qlogic.com
6354L: linux-scsi@vger.kernel.org
6355S: Supported
6356F: drivers/scsi/qla4xxx/
6357
Ron Mercer5a4faa872006-07-25 00:40:21 -07006358QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006359M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006360M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006361M: linux-driver@qlogic.com
6362L: netdev@vger.kernel.org
6363S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006364F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006365F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006366
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006367QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006368M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006369M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006370M: linux-driver@qlogic.com
6371L: netdev@vger.kernel.org
6372S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006373F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006374
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006375QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006376M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006377M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006378M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006379L: netdev@vger.kernel.org
6380S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006381F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006382
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006384M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385W: http://www.alarsen.net/linux/qnx4fs/
6386S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006387F: fs/qnx4/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006388F: include/uapi/linux/qnx4_fs.h
6389F: include/uapi/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390
Antti Palosaari91952bc2012-10-01 12:28:46 -03006391QT1010 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/tuners/qt1010*
6400
Richard Kuo4f4567c2011-10-31 18:56:38 -05006401QUALCOMM HEXAGON ARCHITECTURE
6402M: Richard Kuo <rkuo@codeaurora.org>
6403L: linux-hexagon@vger.kernel.org
6404S: Supported
6405F: arch/hexagon/
6406
Hans Verkuil35e35402012-11-23 07:02:29 -03006407QUICKCAM PARALLEL PORT WEBCAMS
6408M: Hans Verkuil <hverkuil@xs4all.nl>
6409L: linux-media@vger.kernel.org
6410T: git git://linuxtv.org/media_tree.git
6411W: http://linuxtv.org
6412S: Odd Fixes
6413F: drivers/media/parport/*-qcam*
6414
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006415RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006416M: Yehuda Sadeh <yehuda@inktank.com>
6417M: Sage Weil <sage@inktank.com>
6418M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006419M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006420W: http://ceph.com/
6421T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006422S: Supported
6423F: drivers/block/rbd.c
6424F: drivers/block/rbd_types.h
6425
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006427M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006428L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006430F: drivers/video/aty/radeon*
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006431F: include/uapi/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006432
Hans de Goedec6c9b342012-11-04 17:03:58 -03006433RADIOSHARK RADIO DRIVER
6434M: Hans de Goede <hdegoede@redhat.com>
6435L: linux-media@vger.kernel.org
6436T: git git://linuxtv.org/media_tree.git
6437S: Maintained
6438F: drivers/media/radio/radio-shark.c
6439
6440RADIOSHARK2 RADIO DRIVER
6441M: Hans de Goede <hdegoede@redhat.com>
6442L: linux-media@vger.kernel.org
6443T: git git://linuxtv.org/media_tree.git
6444S: Maintained
6445F: drivers/media/radio/radio-shark2.c
6446F: drivers/media/radio/radio-tea5777.c
6447
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006449M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006450L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006452F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453
Randy Dunlape7839f22008-10-12 16:11:45 -07006454RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006455P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006456M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006457M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006458M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006459L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006460L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006461W: http://rt2x00.serialmonkey.com/
6462S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006463T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006464F: drivers/net/wireless/rt2x00/
6465
Nick Piggin9db55792008-02-08 04:19:49 -08006466RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006467M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006469F: Documentation/blockdev/ramdisk.txt
6470F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006471
Matt Mackall9e95ce22005-04-16 15:25:56 -07006472RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006473M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006475F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006476
Matt Porter394b7012005-11-07 01:00:15 -08006477RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006478M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006479M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006481F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006482
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006483RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006484L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006485S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006486F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006487
6488RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006489M: Josh Triplett <josh@freedesktop.org>
6490M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006491S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006492T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006493F: Documentation/RCU/torture.txt
6494F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006495
Florian Fainellic1f766b2008-02-06 22:39:44 +01006496RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006497M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006498S: Maintained
6499
Florian Fainellidb17f3952007-12-19 11:30:30 +01006500RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006501M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f3952007-12-19 11:30:30 +01006502L: netdev@vger.kernel.org
6503S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006504F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f3952007-12-19 11:30:30 +01006505
Andy Grovera09ed662009-02-24 15:30:41 +00006506RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006507M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006508L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006509S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006510F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006511
Josh Triplett595182b2006-10-04 02:17:21 -07006512READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006513M: Dipankar Sarma <dipankar@in.ibm.com>
6514M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006515W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006516S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006517T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006518F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006519X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006520F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006521F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006522X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006523
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006524REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006525M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo764654932006-12-10 02:19:06 -08006526L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006527Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006529F: Documentation/rtc.txt
6530F: drivers/rtc/
6531F: include/linux/rtc.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006532F: include/uapi/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006533
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006535L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006537F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006538
Mark Brownb83a3132011-05-11 19:59:58 +02006539REGISTER MAP ABSTRACTION
6540M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6541T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6542S: Supported
6543F: drivers/base/regmap/
6544F: include/linux/regmap.h
6545
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006546REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6547M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006548T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006549S: Maintained
6550F: drivers/remoteproc/
6551F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006552F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006553
Ivo van Doorne08976452008-04-12 19:23:55 +02006554RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006555M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006556L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006557W: http://wireless.kernel.org/
6558T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6559T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006560S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006561F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006562F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006563
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006564RICOH SMARTMEDIA/XD DRIVER
6565M: Maxim Levitsky <maximlevitsky@gmail.com>
6566S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006567F: drivers/mtd/nand/r852.c
6568F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006569
Maxim Levitsky92634122011-03-25 01:56:59 -07006570RICOH R5C592 MEMORYSTICK DRIVER
6571M: Maxim Levitsky <maximlevitsky@gmail.com>
6572S: Maintained
6573F: drivers/memstick/host/r592.*
6574
Linus Torvalds1da177e2005-04-16 15:20:36 -07006575ROCKETPORT DRIVER
6576P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006577W: http://www.comtrol.com
6578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006579F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006580F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581
6582ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006583M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006584L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006585W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006587F: include/net/rose.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006588F: include/uapi/linux/rose.h
Joe Perches679655d2009-04-07 20:44:32 -07006589F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006590
Antti Palosaari91952bc2012-10-01 12:28:46 -03006591RTL2830 MEDIA DRIVER
6592M: Antti Palosaari <crope@iki.fi>
6593L: linux-media@vger.kernel.org
6594W: http://linuxtv.org/
6595W: http://palosaari.fi/linux/
6596Q: http://patchwork.linuxtv.org/project/linux-media/list/
6597T: git git://linuxtv.org/anttip/media_tree.git
6598S: Maintained
6599F: drivers/media/dvb-frontends/rtl2830*
6600
Larry Finger59840482008-11-12 17:13:09 -06006601RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006602M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006603L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006604W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006605T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006606S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006607F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006608
Larry Finger59840482008-11-12 17:13:09 -06006609RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006610M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006611M: Hin-Tak Leung <htl10@users.sourceforge.net>
6612M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006613L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006614W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006615T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006616S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006617F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006618
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006619RTL8192CE WIRELESS DRIVER
6620M: Larry Finger <Larry.Finger@lwfinger.net>
6621M: Chaoming Li <chaoming_li@realsil.com.cn>
6622L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006623W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006624T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6625S: Maintained
6626F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006627F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006628
6629S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006630M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006631L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006633F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006634
Linus Torvalds1da177e2005-04-16 15:20:36 -07006635S390
Joe Perches8b58be82009-07-29 15:04:30 -07006636M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6637M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006639L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006640W: http://www.ibm.com/developerworks/linux/linux390/
6641S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006642F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006643F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006644F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006645F: Documentation/s390/
6646F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006647
6648S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006649M: Ursula Braun <ursula.braun@de.ibm.com>
6650M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006651M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006652L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006653W: http://www.ibm.com/developerworks/linux/linux390/
6654S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006655F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006656
Felix Beckfeed9b62009-03-26 15:24:23 +01006657S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006658M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006659M: linux390@de.ibm.com
6660L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006661W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006662S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006663F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006664
Heiko Carstens5238da42006-02-11 17:56:01 -08006665S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006666M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006667M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006668L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006669W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006671F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672
Ursula Braundd96df22007-09-19 13:09:02 +02006673S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006674M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006675M: linux390@de.ibm.com
6676L: linux-s390@vger.kernel.org
6677W: http://www.ibm.com/developerworks/linux/linux390/
6678S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006679F: drivers/s390/net/*iucv*
6680F: include/net/iucv/
6681F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006682
Ben Dooks4dde7f72008-06-30 22:40:38 +01006683S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006684M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006685L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006686S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006687F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006688
Hans Verkuil1f15a222012-11-23 07:45:29 -03006689SAA6588 RDS RECEIVER DRIVER
6690M: Hans Verkuil <hverkuil@xs4all.nl>
6691L: linux-media@vger.kernel.org
6692T: git git://linuxtv.org/media_tree.git
6693W: http://linuxtv.org
6694S: Odd Fixes
6695F: drivers/media/i2c/saa6588*
6696
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006697SAA7134 VIDEO4LINUX DRIVER
6698M: Mauro Carvalho Chehab <mchehab@redhat.com>
6699L: linux-media@vger.kernel.org
6700W: http://linuxtv.org
6701T: git git://linuxtv.org/media_tree.git
6702S: Odd fixes
6703F: Documentation/video4linux/saa7134/
6704F: drivers/media/pci/saa7134/
6705
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006707M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006708L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006709T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006710S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006711F: drivers/media/common/saa7146/
6712F: drivers/media/pci/saa7146/
6713F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006714
Corentin Chary92304a42011-12-05 12:38:35 -05006715SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006716M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006717L: platform-driver-x86@vger.kernel.org
6718S: Maintained
6719F: drivers/platform/x86/samsung-laptop.c
6720
Mark Brown4a109cc2010-09-24 10:50:46 +01006721SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006722M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006723L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6724S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006725F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006726
Jingoo Han0d89a282011-12-19 11:09:35 +09006727SAMSUNG FRAMEBUFFER DRIVER
6728M: Jingoo Han <jg1.han@samsung.com>
6729L: linux-fbdev@vger.kernel.org
6730S: Maintained
6731F: drivers/video/s3c-fb.c
6732
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006733SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6734M: Sangbeom Kim <sbkim73@samsung.com>
6735L: linux-kernel@vger.kernel.org
6736S: Supported
6737F: drivers/mfd/sec*.c
6738F: drivers/regulator/s2m*.c
6739F: drivers/regulator/s5m*.c
6740F: drivers/rtc/rtc-sec.c
6741F: include/linux/mfd/samsung/
6742
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006743SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6744M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6745L: linux-media@vger.kernel.org
6746L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6747S: Maintained
6748F: drivers/media/platform/s3c-camif/
6749F: include/media/s3c_camif.h
6750
Alan Coxca749e22011-03-18 13:56:14 +00006751SERIAL DRIVERS
6752M: Alan Cox <alan@linux.intel.com>
6753L: linux-serial@vger.kernel.org
6754S: Maintained
6755F: drivers/tty/serial
6756
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306757SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006758M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306759S: Maintained
6760F: include/linux/dw_dmac.h
6761F: drivers/dma/dw_dmac_regs.h
6762F: drivers/dma/dw_dmac.c
6763
Thomas Gleixner88606e82010-12-14 21:37:13 +01006764TIMEKEEPING, NTP
6765M: John Stultz <johnstul@us.ibm.com>
6766M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006767T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006768S: Supported
6769F: include/linux/clocksource.h
6770F: include/linux/time.h
6771F: include/linux/timex.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006772F: include/uapi/linux/time.h
6773F: include/uapi/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006774F: kernel/time/clocksource.c
6775F: kernel/time/time*.c
6776F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006777F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006778
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006779TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006780M: Huang Shijie <shijie8@gmail.com>
6781M: Kang Yong <kangyong@telegent.com>
6782M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006783S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006784F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006785
Linus Torvalds1da177e2005-04-16 15:20:36 -07006786SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006787M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006789F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006790
6791SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006792M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006793M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006794T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006795S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006796F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006797F: include/linux/sched.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006798F: include/uapi/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006799
Chen Liqin6bcf6732009-06-13 15:24:33 +08006800SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006801M: Chen Liqin <liqin.chen@sunplusct.com>
6802M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006803W: http://www.sunplusct.com
6804S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006805F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006806
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006808M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006809L: linux-scsi@vger.kernel.org
6810W: http://www.kernel.dk
6811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006812F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006813
Roland Dreierfb50a832010-10-07 09:54:53 -07006814SCSI RDMA PROTOCOL (SRP) INITIATOR
6815M: David Dillow <dillowda@ornl.gov>
6816L: linux-rdma@vger.kernel.org
6817S: Supported
6818W: http://www.openfabrics.org
6819Q: http://patchwork.kernel.org/project/linux-rdma/list/
6820T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6821F: drivers/infiniband/ulp/srp/
6822F: include/scsi/srp.h
6823
Linus Torvalds1da177e2005-04-16 15:20:36 -07006824SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006825M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006826L: linux-scsi@vger.kernel.org
6827W: http://www.torque.net/sg
6828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006829F: drivers/scsi/sg.c
6830F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006831
6832SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006833M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006834L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006835T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6836T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6837T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006839F: drivers/scsi/
6840F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006841
6842SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006843M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844L: linux-scsi@vger.kernel.org
6845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006846F: Documentation/scsi/st.txt
6847F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848
6849SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006850M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006851M: Sridhar Samudrala <sri@us.ibm.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006852M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006853L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006854W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006856F: Documentation/networking/sctp.txt
6857F: include/linux/sctp.h
6858F: include/net/sctp/
6859F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006860
6861SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006862M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006863S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006864F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006865F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006866F: drivers/watchdog/scx200_wdt.c
6867F: drivers/i2c/busses/scx200*
6868F: drivers/mtd/maps/scx200_docflash.c
6869F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006870
6871SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006872M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006874F: drivers/char/scx200_gpio.c
6875F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006876
6877SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006878M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006880F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006881
Sascha Sommer6a369132008-07-15 14:21:29 +02006882SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006883M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006884L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006886F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006887
Randy Dunlape7839f22008-10-12 16:11:45 -07006888SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006889M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006890L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006891T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6892S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006893F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006894F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006895
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006896SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006897M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006898L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006899L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006900S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006901F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902
Ben Dooks0d1bb412009-06-14 13:52:37 +01006903SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006904M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006905L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006906S: Maintained
6907F: drivers/mmc/host/sdhci-s3c.c
6908
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006909SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006910M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006911L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006912L: linux-mmc@vger.kernel.org
6913S: Maintained
6914F: drivers/mmc/host/sdhci-spear.c
6915
James Morris8711cca2008-12-04 03:19:45 +11006916SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006917M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006918L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006919T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006920W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006921S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006922F: security/
James Morris8711cca2008-12-04 03:19:45 +11006923
Linus Torvalds1da177e2005-04-16 15:20:36 -07006924SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006925M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006926S: Supported
6927
6928SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006929M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006930M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006931M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006932L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006933W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006934T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006935S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006936F: include/linux/selinux*
6937F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006938F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006939
John Johansenc1c124e2010-07-29 14:48:09 -07006940APPARMOR SECURITY MODULE
6941M: John Johansen <john.johansen@canonical.com>
6942L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6943W: apparmor.wiki.kernel.org
6944T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6945S: Supported
6946F: security/apparmor/
6947
Jiri Slabycef2cf02007-05-08 00:31:45 -07006948SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006949M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006951F: drivers/misc/phantom.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08006952F: include/uapi/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006953
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006954SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006955M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006956L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006957T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006958S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006959F: drivers/ata/
6960F: include/linux/ata.h
6961F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006962
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306963SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006964M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006965L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006966W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006967S: Supported
6968F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306969
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006970SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006971M: Sathya Perla <sathya.perla@emulex.com>
6972M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6973M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006974L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006975W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006976S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006977F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006978
Ben Hutchings8ceee662008-04-27 12:55:59 +01006979SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006980M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006981M: Ben Hutchings <bhutchings@solarflare.com>
6982L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006983S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006984F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006985
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006986SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006987M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006989F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006990
6991SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006992M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006993L: linux-ia64@vger.kernel.org
6994S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006995F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006996F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006997F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006998
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07007000M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007001L: linux-visws-devel@lists.sf.net
7002W: http://linux-visws.sf.net
7003S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07007004F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007005
Jack Steiner75312612008-08-15 00:40:42 -07007006SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007007M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07007008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007009F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07007010
Hans Verkuil49cc6292012-11-30 07:13:29 -03007011SI470X FM RADIO RECEIVER I2C DRIVER
7012M: Hans Verkuil <hverkuil@xs4all.nl>
7013L: linux-media@vger.kernel.org
7014T: git git://linuxtv.org/media_tree.git
7015W: http://linuxtv.org
7016S: Odd Fixes
7017F: drivers/media/radio/si470x/radio-si470x-i2c.c
7018
7019SI470X FM RADIO RECEIVER USB DRIVER
7020M: Hans Verkuil <hverkuil@xs4all.nl>
7021L: linux-media@vger.kernel.org
7022T: git git://linuxtv.org/media_tree.git
7023W: http://linuxtv.org
7024S: Maintained
7025F: drivers/media/radio/si470x/radio-si470x-common.c
7026F: drivers/media/radio/si470x/radio-si470x.h
7027F: drivers/media/radio/si470x/radio-si470x-usb.c
7028
Guennadi Liakhovetskib618b692012-11-29 06:57:30 -03007029SH_VEU V4L2 MEM2MEM DRIVER
7030M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7031L: linux-media@vger.kernel.org
7032S: Maintained
7033F: drivers/media/platform/sh_veu.c
7034F: include/media/sh_veu.h
7035
7036SH_VOU V4L2 OUTPUT DRIVER
7037M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7038L: linux-media@vger.kernel.org
7039S: Maintained
7040F: drivers/media/platform/sh_vou.c
7041F: include/media/sh_vou.h
7042
Len Brown6349d992009-08-14 15:07:14 -04007043SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07007044M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04007045L: sfi-devel@simplefirmware.org
7046W: http://simplefirmware.org/
7047T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007048S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07007049F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04007050F: drivers/sfi/
7051F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007052
Linus Torvalds1da177e2005-04-16 15:20:36 -07007053SIMTEC EB110ATX (Chalice CATS)
7054P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007055P: Vincent Sanders <vince@simtec.co.uk>
7056M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007057W: http://www.simtec.co.uk/products/EB110ATX/
7058S: Supported
7059
7060SIMTEC EB2410ITX (BAST)
7061P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08007062P: Vincent Sanders <vince@simtec.co.uk>
7063M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064W: http://www.simtec.co.uk/products/EB2410ITX/
7065S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08007066F: arch/arm/mach-s3c2410/mach-bast.c
7067F: arch/arm/mach-s3c2410/bast-ide.c
7068F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007070TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08007071M: Sekhar Nori <nsekhar@ti.com>
7072M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05307073L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05307074T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08007075Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007076S: Supported
7077F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01007078F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07007079
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03007080TI DAVINCI SERIES MEDIA DRIVER
7081M: Manjunath Hadli <manjunath.hadli@ti.com>
7082M: Prabhakar Lad <prabhakar.lad@ti.com>
7083L: linux-media@vger.kernel.org
7084L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7085W: http://linuxtv.org/
7086Q: http://patchwork.linuxtv.org/project/linux-media/list/
7087T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
7088S: Supported
7089F: drivers/media/platform/davinci/
7090F: include/media/davinci/
7091
Francois Romieu92aab3c2005-07-30 13:11:18 +02007092SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007093M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02007094L: netdev@vger.kernel.org
7095S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007096F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02007097
Linus Torvalds1da177e2005-04-16 15:20:36 -07007098SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007099M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007100W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07007101L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007102S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07007103F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007104
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007105SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007106M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01007107L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007109F: Documentation/i2c/busses/i2c-sis96x
7110F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007111
Linus Torvalds1da177e2005-04-16 15:20:36 -07007112SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007113M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007114W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007116F: Documentation/fb/sisfb.txt
7117F: drivers/video/sis/
7118F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007119
7120SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007121M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007122W: http://www.winischhofer.at/linuxsisusbvga.shtml
7123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007124F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007125
Christoph Lameter415ad262007-07-26 10:40:56 -07007126SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07007127M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02007128M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07007129M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07007130L: linux-mm@kvack.org
7131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007132F: include/linux/sl?b*.h
7133F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07007134
Paul E. McKenney9fab97872012-05-07 09:36:34 -07007135SLEEPABLE READ-COPY UPDATE (SRCU)
7136M: Lai Jiangshan <laijs@cn.fujitsu.com>
7137M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7138W: http://www.rdrop.com/users/paulmck/RCU/
7139S: Supported
7140T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7141F: include/linux/srcu*
7142F: kernel/srcu*
7143
Casey Schaufler66372842012-05-23 18:34:52 -07007144SMACK SECURITY MODULE
7145M: Casey Schaufler <casey@schaufler-ca.com>
7146L: linux-security-module@vger.kernel.org
7147W: http://schaufler-ca.com
7148T: git git://git.gitorious.org/smack-next/kernel.git
7149S: Maintained
7150F: Documentation/security/Smack.txt
7151F: security/smack/
7152
Linus Torvalds1da177e2005-04-16 15:20:36 -07007153SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04007154M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04007155S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07007156F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157
Sakari Ailuse8e31622012-11-12 18:14:39 -03007158SMIA AND SMIA++ IMAGE SENSOR DRIVER
7159M: Sakari Ailus <sakari.ailus@iki.fi>
7160L: linux-media@vger.kernel.org
7161S: Maintained
7162F: drivers/media/i2c/smiapp
7163F: include/media/smiapp.h
7164F: drivers/media/i2c/smiapp-pll.c
7165F: drivers/media/i2c/smiapp-pll.h
7166
Guenter Roeck920fa1f2010-08-09 17:21:06 -07007167SMM665 HARDWARE MONITOR DRIVER
7168M: Guenter Roeck <linux@roeck-us.net>
7169L: lm-sensors@lm-sensors.org
7170S: Maintained
7171F: Documentation/hwmon/smm665
7172F: drivers/hwmon/smm665.c
7173
Steve Glendinning9df73052010-08-14 21:08:54 +02007174SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007175M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007176L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007177S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007178F: Documentation/hwmon/emc2103
7179F: drivers/hwmon/emc2103.c
7180
Hans de Goedea98d5062011-03-21 17:59:36 +01007181SMSC SCH5627 HARDWARE MONITOR DRIVER
7182M: Hans de Goede <hdegoede@redhat.com>
7183L: lm-sensors@lm-sensors.org
7184S: Supported
7185F: Documentation/hwmon/sch5627
7186F: drivers/hwmon/sch5627.c
7187
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007188SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007189M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007190L: lm-sensors@lm-sensors.org
7191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007192F: Documentation/hwmon/smsc47b397
7193F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007194
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007195SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007196M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007197L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007199F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007200F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007201
Steve Glendinning2cb37722008-12-11 20:54:30 -08007202SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007203M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007204L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007205S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007206F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007207
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007208SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007209M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007210L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007211S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007212F: drivers/video/smscufx.c
7213
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007214SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07007215M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007216L: linux-altix@sgi.com
7217L: linux-ia64@vger.kernel.org
7218W: http://www.sgi.com/altix
7219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007220F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007221
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007222SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007223M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007224L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007225T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007226S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007227F: include/media/soc*
7228F: drivers/media/i2c/soc_camera/
7229F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007230
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007231SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007232M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007234F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007235
Linus Torvalds1da177e2005-04-16 15:20:36 -07007236SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007237M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007238L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007239S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007240F: drivers/md/
7241F: include/linux/raid/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007242F: include/uapi/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007243
Linus Torvalds1da177e2005-04-16 15:20:36 -07007244SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007245M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007246L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007247S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007248F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249
Michael Buesch61e115a2007-09-18 15:12:50 -04007250SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007251M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007252L: netdev@vger.kernel.org
7253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007254F: drivers/ssb/
7255F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007256
Linus Torvalds1da177e2005-04-16 15:20:36 -07007257SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007258M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05007259L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007260W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007262F: Documentation/laptops/sony-laptop.txt
7263F: drivers/char/sonypi.c
7264F: drivers/platform/x86/sony-laptop.c
7265F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007266
Alex Dubovbaf85322008-02-09 10:20:54 -08007267SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007268M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007269W: http://tifmxx.berlios.de/
7270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007271F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007272
Linus Torvalds1da177e2005-04-16 15:20:36 -07007273SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007274M: Jaroslav Kysela <perex@perex.cz>
7275M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007276L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007277W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007278T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007279T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007280S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007281F: Documentation/sound/
7282F: include/sound/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007283F: include/uapi/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007284F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007285
Mark Brownbd903bd2008-11-19 19:16:05 +00007286SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01007287M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007288M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007289T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007290L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007291W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007292S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007293F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007294F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007295
Sam Ravnborg473321f2009-01-04 15:47:49 -08007296SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007297M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007298L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007299Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007300T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7301T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007303F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007304F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007305
David S. Miller6404fcc2010-03-16 01:00:17 -07007306SPARC SERIAL DRIVERS
7307M: "David S. Miller" <davem@davemloft.net>
7308L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007309T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7310T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007311S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007312F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007313F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007314F: drivers/tty/serial/sunhv.c
7315F: drivers/tty/serial/sunsab.c
7316F: drivers/tty/serial/sunsab.h
7317F: drivers/tty/serial/sunsu.c
7318F: drivers/tty/serial/sunzilog.c
7319F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007320
Christopher Li389325b2012-04-05 14:25:14 -07007321SPARSE CHECKER
7322M: "Christopher Li" <sparse@chrisli.org>
7323L: linux-sparse@vger.kernel.org
7324W: https://sparse.wiki.kernel.org/
7325T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7326T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7327S: Maintained
7328F: include/linux/compiler.h
7329
viresh kumarfc0c1952010-04-01 12:31:21 +01007330SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007331M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307332M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007333L: spear-devel@list.st.com
7334L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007335W: http://www.st.com/spear
7336S: Maintained
7337F: arch/arm/plat-spear/
7338
Viresh Kumar71e09a92012-04-20 22:39:48 +05307339SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007340M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307341M: Shiraz Hashim <shiraz.hashim@st.com>
7342L: spear-devel@list.st.com
7343L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7344W: http://www.st.com/spear
7345S: Maintained
7346F: arch/arm/mach-spear13xx/
7347
viresh kumarfc0c1952010-04-01 12:31:21 +01007348SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007349M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307350M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007351L: spear-devel@list.st.com
7352L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007353W: http://www.st.com/spear
7354S: Maintained
7355F: arch/arm/mach-spear3xx/
7356
7357SPEAR6XX MACHINE SUPPORT
7358M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307359M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007360M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007361L: spear-devel@list.st.com
7362L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007363W: http://www.st.com/spear
7364S: Maintained
7365F: arch/arm/mach-spear6xx/
7366
7367SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007368M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007369L: spear-devel@list.st.com
7370L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007371W: http://www.st.com/spear
7372S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307373F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007374
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007375SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007376M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007377L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007378Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007379T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007381F: Documentation/spi/
7382F: drivers/spi/
7383F: include/linux/spi/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007384F: include/uapi/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007385
Jim Lewis2752e4012006-09-29 02:01:19 -07007386SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007387M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7388M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e4012006-09-29 02:01:19 -07007389L: netdev@vger.kernel.org
7390S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007391F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007392F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07007393
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007394SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007395M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007396L: linuxppc-dev@lists.ozlabs.org
7397L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007398W: http://www.ibm.com/developerworks/power/cell/
7399S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007400F: Documentation/filesystems/spufs.txt
7401F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007402
Phillip Lougherfc555842009-01-05 08:46:29 +00007403SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007404M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007405L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7406W: http://squashfs.org.uk
7407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007408F: Documentation/filesystems/squashfs.txt
7409F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007410
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007412M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007414F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007415
Linus Torvalds26e9a392008-10-17 09:50:12 -07007416STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007417M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007418L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007419S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007420
Linus Torvalds26e9a392008-10-17 09:50:12 -07007421STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007422M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007423T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007424L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007425S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007426F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007427
Joe Perchesc8c8b102011-07-05 09:42:12 -07007428STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7429M: Henk de Groot <pe1dnn@amsat.org>
7430S: Odd Fixes
7431F: drivers/staging/wlags49_h2/
7432F: drivers/staging/wlags49_h25/
7433
Joe Perchesc9555152011-07-05 09:42:01 -07007434STAGING - ASUS OLED
7435M: Jakub Schmidtke <sjakub@gmail.com>
7436S: Odd Fixes
7437F: drivers/staging/asus_oled/
7438
Joe Perchesebd3d012011-07-05 09:42:02 -07007439STAGING - COMEDI
7440M: Ian Abbott <abbotti@mev.co.uk>
7441M: Mori Hess <fmhess@users.sourceforge.net>
7442S: Odd Fixes
7443F: drivers/staging/comedi/
7444
Joe Perches8ca572c2011-07-05 09:42:03 -07007445STAGING - CRYSTAL HD VIDEO DECODER
7446M: Naren Sankar <nsankar@broadcom.com>
7447M: Jarod Wilson <jarod@wilsonet.com>
7448M: Scott Davilla <davilla@4pi.com>
7449M: Manu Abraham <abraham.manu@gmail.com>
7450S: Odd Fixes
7451F: drivers/staging/crystalhd/
7452
Joe Perches0f16ffc2011-07-05 09:42:04 -07007453STAGING - ECHO CANCELLER
7454M: Steve Underwood <steveu@coppice.org>
7455M: David Rowe <david@rowetel.com>
7456S: Odd Fixes
7457F: drivers/staging/echo/
7458
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007459STAGING - ET131X NETWORK DRIVER
7460M: Mark Einon <mark.einon@gmail.com>
7461S: Odd Fixes
7462F: drivers/staging/et131x/
7463
Joe Perchesa0138162011-07-05 15:21:34 -07007464STAGING - FLARION FT1000 DRIVERS
7465M: Marek Belisko <marek.belisko@gmail.com>
7466S: Odd Fixes
7467F: drivers/staging/ft1000/
7468
Joe Perchesec3fab92011-07-05 09:42:05 -07007469STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7470M: David Täht <d@teklibre.com>
7471S: Odd Fixes
7472F: drivers/staging/frontier/
7473
Joe Perches6c1bb422011-07-05 09:42:07 -07007474STAGING - INDUSTRIAL IO
7475M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007476L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007477S: Odd Fixes
7478F: drivers/staging/iio/
7479
Joe Perchesa0138162011-07-05 15:21:34 -07007480STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7481M: Jarod Wilson <jarod@wilsonet.com>
7482W: http://www.lirc.org/
7483S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007484F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007485
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007486STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007487M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007488M: Marc Dietrich <marvin24@gmx.de>
7489L: ac100@lists.launchpad.net (moderated for non-subscribers)
7490S: Maintained
7491F: drivers/staging/nvec/
7492
Joe Perchesa0138162011-07-05 15:21:34 -07007493STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7494M: Andres Salomon <dilinger@queued.net>
7495M: Chris Ball <cjb@laptop.org>
7496M: Jon Nettleton <jon.nettleton@gmail.com>
7497W: http://wiki.laptop.org/go/DCON
7498S: Odd Fixes
7499F: drivers/staging/olpc_dcon/
7500
Chris Kelly94cfdd12012-03-14 10:55:42 +00007501STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007502M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007503M: Chris Kelly <ckelly@ozmodevices.com>
7504S: Maintained
7505F: drivers/staging/ozwpan/
7506
Joe Perchesa0138162011-07-05 15:21:34 -07007507STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007508M: Willy Tarreau <willy@meta-x.org>
7509S: Odd Fixes
7510F: drivers/staging/panel/
7511
Joe Perchesa0138162011-07-05 15:21:34 -07007512STAGING - REALTEK RTL8712U DRIVERS
7513M: Larry Finger <Larry.Finger@lwfinger.net>
7514M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7515S: Odd Fixes
7516F: drivers/staging/rtl8712/
7517
Joe Perches9629fa82011-07-05 09:42:09 -07007518STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7519M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7520S: Odd Fixes
Cesar Eduardo Barros9df0a242013-01-04 15:35:43 -08007521F: drivers/staging/sm7xxfb/
Joe Perches9629fa82011-07-05 09:42:09 -07007522
Joe Perchesa0138162011-07-05 15:21:34 -07007523STAGING - SOFTLOGIC 6x10 MPEG CODEC
7524M: Ben Collins <bcollins@bluecherry.net>
7525S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007526F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007527
7528STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7529M: William Hubbs <w.d.hubbs@gmail.com>
7530M: Chris Brannon <chris@the-brannons.com>
7531M: Kirk Reiser <kirk@braille.uwo.ca>
7532M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7533L: speakup@braille.uwo.ca
7534W: http://www.linux-speakup.org/
7535S: Odd Fixes
7536F: drivers/staging/speakup/
7537
7538STAGING - TI DSP BRIDGE DRIVERS
7539M: Omar Ramirez Luna <omar.ramirez@ti.com>
7540S: Odd Fixes
7541F: drivers/staging/tidspbridge/
7542
Joe Perchesa0138162011-07-05 15:21:34 -07007543STAGING - USB ENE SM/MS CARD READER DRIVER
7544M: Al Cho <acho@novell.com>
7545S: Odd Fixes
7546F: drivers/staging/keucr/
7547
Joe Perchesb3e871c2011-07-05 09:42:10 -07007548STAGING - VIA VT665X DRIVERS
7549M: Forest Bond <forest@alittletooquiet.net>
7550S: Odd Fixes
7551F: drivers/staging/vt665?/
7552
Joe Perches81a9a522011-07-05 09:42:11 -07007553STAGING - WINBOND IS89C35 WLAN USB DRIVER
7554M: Pavel Machek <pavel@ucw.cz>
7555S: Odd Fixes
7556F: drivers/staging/winbond/
7557
Joe Perches709bcb02011-07-05 09:42:13 -07007558STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007559M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007560S: Odd Fixes
7561F: drivers/staging/xgifb/
7562
Linus Torvalds1da177e2005-04-16 15:20:36 -07007563STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007564M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007565S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007566F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007567
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007568SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007569M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007570W: http://sammy.net/sun3/
7571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007572F: arch/m68k/kernel/*sun3*
7573F: arch/m68k/sun3*/
7574F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007575F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007576
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007577SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007578M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007579L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007580W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007581Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007582T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007583S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007584F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007585F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007586F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007587
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007588SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007589M: Len Brown <len.brown@intel.com>
7590M: Pavel Machek <pavel@ucw.cz>
7591M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007592L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007593S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007594F: Documentation/power/
7595F: arch/x86/kernel/acpi/
7596F: drivers/base/power/
7597F: kernel/power/
7598F: include/linux/suspend.h
7599F: include/linux/freezer.h
7600F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007601
7602SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007603M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007604L: linux-video@atrey.karlin.mff.cuni.cz
7605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007606F: Documentation/svga.txt
7607F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007608
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007609SWIOTLB SUBSYSTEM
7610M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7611L: linux-kernel@vger.kernel.org
7612S: Supported
7613F: lib/swiotlb.c
7614F: arch/*/kernel/pci-swiotlb.c
7615F: include/linux/swiotlb.h
7616
Linus Torvalds1da177e2005-04-16 15:20:36 -07007617SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007618M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007620F: Documentation/filesystems/sysv-fs.txt
7621F: fs/sysv/
7622F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007623
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007624TARGET SUBSYSTEM
7625M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7626L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007627L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007628L: http://groups.google.com/group/linux-iscsi-target-dev
7629W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007630T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007631S: Supported
7632F: drivers/target/
7633F: include/target/
7634F: Documentation/target/
7635
Alan Cox4e688522008-04-30 00:52:11 -07007636TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007637M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007639F: Documentation/accounting/taskstats*
7640F: include/linux/taskstats*
7641F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007642
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007643TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007644M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007645L: netdev@vger.kernel.org
7646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007647F: include/net/pkt_cls.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007648F: include/uapi/linux/pkt_cls.h
Joe Perches679655d2009-04-07 20:44:32 -07007649F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007650
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007651TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007652M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7653M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007654W: http://tcp-lp-mod.sourceforge.net/
7655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007656F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007657
Antti Palosaari91952bc2012-10-01 12:28:46 -03007658TDA10071 MEDIA DRIVER
7659M: Antti Palosaari <crope@iki.fi>
7660L: linux-media@vger.kernel.org
7661W: http://linuxtv.org/
7662W: http://palosaari.fi/linux/
7663Q: http://patchwork.linuxtv.org/project/linux-media/list/
7664T: git git://linuxtv.org/anttip/media_tree.git
7665S: Maintained
7666F: drivers/media/dvb-frontends/tda10071*
7667
7668TDA18212 MEDIA DRIVER
7669M: Antti Palosaari <crope@iki.fi>
7670L: linux-media@vger.kernel.org
7671W: http://linuxtv.org/
7672W: http://palosaari.fi/linux/
7673Q: http://patchwork.linuxtv.org/project/linux-media/list/
7674T: git git://linuxtv.org/anttip/media_tree.git
7675S: Maintained
7676F: drivers/media/tuners/tda18212*
7677
7678TDA18218 MEDIA DRIVER
7679M: Antti Palosaari <crope@iki.fi>
7680L: linux-media@vger.kernel.org
7681W: http://linuxtv.org/
7682W: http://palosaari.fi/linux/
7683Q: http://patchwork.linuxtv.org/project/linux-media/list/
7684T: git git://linuxtv.org/anttip/media_tree.git
7685S: Maintained
7686F: drivers/media/tuners/tda18218*
7687
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007688TDA18271 MEDIA DRIVER
7689M: Michael Krufky <mkrufky@linuxtv.org>
7690L: linux-media@vger.kernel.org
7691W: http://linuxtv.org/
7692W: http://github.com/mkrufky
7693Q: http://patchwork.linuxtv.org/project/linux-media/list/
7694T: git git://linuxtv.org/mkrufky/tuners.git
7695S: Maintained
7696F: drivers/media/tuners/tda18271*
7697
Michael Krufkye48307a2012-10-02 00:56:33 -03007698TDA827x MEDIA DRIVER
7699M: Michael Krufky <mkrufky@linuxtv.org>
7700L: linux-media@vger.kernel.org
7701W: http://linuxtv.org/
7702W: http://github.com/mkrufky
7703Q: http://patchwork.linuxtv.org/project/linux-media/list/
7704T: git git://linuxtv.org/mkrufky/tuners.git
7705S: Maintained
7706F: drivers/media/tuners/tda8290.*
7707
Michael Krufky66cf9212012-10-02 00:56:28 -03007708TDA8290 MEDIA DRIVER
7709M: Michael Krufky <mkrufky@linuxtv.org>
7710L: linux-media@vger.kernel.org
7711W: http://linuxtv.org/
7712W: http://github.com/mkrufky
7713Q: http://patchwork.linuxtv.org/project/linux-media/list/
7714T: git git://linuxtv.org/mkrufky/tuners.git
7715S: Maintained
7716F: drivers/media/tuners/tda8290.*
7717
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007718TDA9840 MEDIA DRIVER
7719M: Hans Verkuil <hverkuil@xs4all.nl>
7720L: linux-media@vger.kernel.org
7721T: git git://linuxtv.org/media_tree.git
7722W: http://linuxtv.org
7723S: Maintained
7724F: drivers/media/i2c/tda9840*
7725
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007726TEA5761 TUNER DRIVER
7727M: Mauro Carvalho Chehab <mchehab@redhat.com>
7728L: linux-media@vger.kernel.org
7729W: http://linuxtv.org
7730T: git git://linuxtv.org/media_tree.git
7731S: Odd fixes
7732F: drivers/media/tuners/tea5761.*
7733
7734TEA5767 TUNER DRIVER
7735M: Mauro Carvalho Chehab <mchehab@redhat.com>
7736L: linux-media@vger.kernel.org
7737W: http://linuxtv.org
7738T: git git://linuxtv.org/media_tree.git
7739S: Maintained
7740F: drivers/media/tuners/tea5767.*
7741
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007742TEA6415C MEDIA DRIVER
7743M: Hans Verkuil <hverkuil@xs4all.nl>
7744L: linux-media@vger.kernel.org
7745T: git git://linuxtv.org/media_tree.git
7746W: http://linuxtv.org
7747S: Maintained
7748F: drivers/media/i2c/tea6415c*
7749
7750TEA6420 MEDIA DRIVER
7751M: Hans Verkuil <hverkuil@xs4all.nl>
7752L: linux-media@vger.kernel.org
7753T: git git://linuxtv.org/media_tree.git
7754W: http://linuxtv.org
7755S: Maintained
7756F: drivers/media/i2c/tea6420*
7757
Jiri Pirko3d249d42011-11-11 22:16:48 +00007758TEAM DRIVER
7759M: Jiri Pirko <jpirko@redhat.com>
7760L: netdev@vger.kernel.org
7761S: Supported
7762F: drivers/net/team/
7763F: include/linux/if_team.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007764F: include/uapi/linux/if_team.h
Jiri Pirko3d249d42011-11-11 22:16:48 +00007765
Sean Young40ad4a32012-11-19 10:32:53 -03007766TECHNOTREND USB IR RECEIVER
7767M: Sean Young <sean@mess.org>
7768L: linux-media@vger.kernel.org
7769S: Maintained
7770F: drivers/media/rc/ttusbir.c
7771
Erik Gilling84b94142010-06-09 15:35:53 -07007772TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007773M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007774L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007775Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7776T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007777S: Supported
7778F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007779F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007780F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007781
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007782TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007783M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007784L: netdev@vger.kernel.org
7785S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007786F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007787
Alan Cox4e688522008-04-30 00:52:11 -07007788Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007789M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007790S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007791F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007792
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007793TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007794M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007795M: Max Filippov <jcmvbkbc@gmail.com>
7796L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007798F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007799
Zhang Ruid3fb6952012-11-15 08:58:27 +08007800THERMAL
7801M: Zhang Rui <rui.zhang@intel.com>
7802L: linux-pm@vger.kernel.org
7803T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7804S: Supported
7805F: drivers/thermal/
7806F: include/linux/thermal.h
7807
Alan Cox4e688522008-04-30 00:52:11 -07007808THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007809M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007810L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05007811L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007812W: http://ibm-acpi.sourceforge.net
7813W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007814T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007816F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007817
Alex Dubov4020f2d2006-10-04 02:15:37 -07007818TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007819M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007821F: drivers/misc/tifm*
7822F: drivers/mmc/host/tifm_sd.c
7823F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007824
M R Swami Reddy152ad442012-04-02 20:02:31 +05307825TI LM49xxx FAMILY ASoC CODEC DRIVERS
7826M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307827M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307828L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7829S: Maintained
7830F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307831F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307832
Kim, Milo0edd8072012-12-17 16:01:17 -08007833TI LP855x BACKLIGHT DRIVER
7834M: Milo Kim <milo.kim@ti.com>
7835S: Maintained
7836F: Documentation/backlight/lp855x-driver.txt
7837F: drivers/video/backlight/lp855x_bl.c
7838F: include/linux/platform_data/lp855x.h
7839
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007840TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007841M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007842L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7843S: Maintained
7844F: sound/soc/codecs/twl4030*
7845
Luciano Coelho90921012011-11-20 21:40:41 +02007846TI WILINK WIRELESS DRIVERS
7847M: Luciano Coelho <coelho@ti.com>
7848L: linux-wireless@vger.kernel.org
7849W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7850W: http://wireless.kernel.org/en/users/Drivers/wl1251
7851T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7852S: Maintained
7853F: drivers/net/wireless/ti/
7854F: include/linux/wl12xx.h
7855
Per Lidene86eaa32006-01-12 16:45:18 +01007856TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007857M: Jon Maloy <jon.maloy@ericsson.com>
7858M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007859L: netdev@vger.kernel.org (core kernel code)
7860L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007861W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007862S: Maintained
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007863F: include/uapi/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007864F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007865
Chris Metcalf867e3592010-05-28 23:09:12 -04007866TILE ARCHITECTURE
7867M: Chris Metcalf <cmetcalf@tilera.com>
7868W: http://www.tilera.com/scm/
7869S: Supported
7870F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007871F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007872F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007873F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007874
Linus Torvalds1da177e2005-04-16 15:20:36 -07007875TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007876M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007877L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007878W: http://sourceforge.net/projects/tlan/
7879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007880F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007881F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007882
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007883TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007884M: Kentaro Takeda <takedakn@nttdata.co.jp>
7885M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007886L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7887L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007888L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7889L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7890W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007891T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007893F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007894
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007895TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007896M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007897L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007898S: Maintained
7899F: drivers/platform/x86/topstar-laptop.c
7900
Linus Torvalds1da177e2005-04-16 15:20:36 -07007901TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05007902L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007903S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007904F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007905
7906TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007907M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007908L: tlinux-users@tce.toshiba-dme.co.jp
7909W: http://www.buzzard.org.uk/toshiba/
7910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007911F: drivers/char/toshiba.c
7912F: include/linux/toshiba.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007913F: include/uapi/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007914
Pierre Ossmand719f902009-03-24 21:06:09 +01007915TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007916M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007917M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007918L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007919S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007920F: drivers/mmc/host/tmio_mmc*
7921F: drivers/mmc/host/sh_mobile_sdhi.c
7922F: include/linux/mmc/tmio.h
7923F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007924
Hugh Dickins98f32602009-05-21 20:33:58 +01007925TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007926M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007927L: linux-mm@kvack.org
7928S: Maintained
7929F: include/linux/shmem_fs.h
7930F: mm/shmem.c
7931
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02007932TM6000 VIDEO4LINUX DRIVER
7933M: Mauro Carvalho Chehab <mchehab@redhat.com>
7934L: linux-media@vger.kernel.org
7935W: http://linuxtv.org
7936T: git git://linuxtv.org/media_tree.git
7937S: Odd fixes
7938F: drivers/media/usb/tm6000/
7939
Alan Cox4e688522008-04-30 00:52:11 -07007940TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007941M: Kent Yoder <key@linux.vnet.ibm.com>
7942M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007943W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007944M: Marcel Selhorst <tpmdd@selhorst.net>
7945M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007946W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007947L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007949F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007950
Joe Perchesd6f005a2009-10-26 16:49:40 -07007951TRACING
7952M: Steven Rostedt <rostedt@goodmis.org>
7953M: Frederic Weisbecker <fweisbec@gmail.com>
7954M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007955T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007956S: Maintained
7957F: Documentation/trace/ftrace.txt
7958F: arch/*/*/*/ftrace.h
7959F: arch/*/kernel/ftrace.c
7960F: include/*/ftrace.h
7961F: include/linux/trace*.h
7962F: include/trace/
7963F: kernel/trace/
7964
Linus Torvalds1da177e2005-04-16 15:20:36 -07007965TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007966M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007967T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007968S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007969K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007970
Alan Cox4e688522008-04-30 00:52:11 -07007971TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007972M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01007973M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08007974S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007975T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007976F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007977F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007978F: include/linux/serial_core.h
7979F: include/linux/serial.h
7980F: include/linux/tty.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08007981F: include/uapi/linux/serial_core.h
7982F: include/uapi/linux/serial.h
7983F: include/uapi/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007984
Antti Palosaari91952bc2012-10-01 12:28:46 -03007985TUA9001 MEDIA DRIVER
7986M: Antti Palosaari <crope@iki.fi>
7987L: linux-media@vger.kernel.org
7988W: http://linuxtv.org/
7989W: http://palosaari.fi/linux/
7990Q: http://patchwork.linuxtv.org/project/linux-media/list/
7991T: git git://linuxtv.org/anttip/media_tree.git
7992S: Maintained
7993F: drivers/media/tuners/tua9001*
7994
Grant Grundler740db6d2008-02-17 11:53:49 -07007995TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007996M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007997L: netdev@vger.kernel.org
7998S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007999F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008000
8001TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00008002M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008003W: http://vtun.sourceforge.net/tun
8004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008005F: Documentation/networking/tuntap.txt
8006F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008007
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008008TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008009M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008011F: drivers/tc/
8012F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08008013
Linus Torvalds1da177e2005-04-16 15:20:36 -07008014U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008015M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008016L: linux-scsi@vger.kernel.org
8017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008018F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008019
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008020UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008021M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03008022M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008023L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008024T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008025W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008027F: Documentation/filesystems/ubifs.txt
8028F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008029
Alan Coxcc2020e2008-05-19 14:21:51 +01008030UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07008031M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01008032W: http://www.uclinux.org/
8033L: uclinux-dev@uclinux.org (subscribers-only)
8034S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07008035F: arch/m68k/*/*_no.*
8036F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01008037
Robert P. J. Day14fadca2009-04-21 12:24:47 -07008038UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07008039M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01008040W: http://uclinux-h8.sourceforge.jp/
8041S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07008042F: arch/h8300/
8043F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07008044F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01008045
Linus Torvalds1da177e2005-04-16 15:20:36 -07008046UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008047M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008049F: Documentation/filesystems/udf.txt
8050F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008051
Alan Coxcc2020e2008-05-19 14:21:51 +01008052UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008053M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01008054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008055F: Documentation/filesystems/ufs.txt
8056F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01008057
David Herrmann0a09d3a2012-06-10 15:16:28 +02008058UHID USERSPACE HID IO DRIVER:
8059M: David Herrmann <dh.herrmann@googlemail.com>
8060L: linux-input@vger.kernel.org
8061S: Maintained
8062F: drivers/hid/uhid.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008063F: include/uapi/linux/uhid.h
David Herrmann0a09d3a2012-06-10 15:16:28 +02008064
David Vrabel18332a82008-09-17 16:34:44 +01008065ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01008066L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01008067S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00008068F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07008069F: include/linux/uwb.h
8070F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01008071
GuanXuetaob31d8272011-01-16 00:35:49 +08008072UNICORE32 ARCHITECTURE:
8073M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8074W: http://mprc.pku.edu.cn/~guanxuetao/linux
8075S: Maintained
8076T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8077F: arch/unicore32/
8078
Tony Finchd8379ab2009-11-27 15:50:30 +00008079UNIFDEF
8080M: Tony Finch <dot@dotat.at>
8081W: http://dotat.at/prog/unifdef
8082S: Maintained
8083F: scripts/unifdef.c
8084
Linus Torvalds1da177e2005-04-16 15:20:36 -07008085UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008086M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087W: http://www.kernel.dk
8088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008089F: Documentation/cdrom/
8090F: drivers/cdrom/cdrom.c
8091F: include/linux/cdrom.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008092F: include/uapi/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008093
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05308094UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8095M: Vinayak Holikatti <vinholikatti@gmail.com>
8096M: Santosh Y <santoshsy@gmail.com>
8097L: linux-scsi@vger.kernel.org
8098S: Supported
8099F: Documentation/scsi/ufs.txt
8100F: drivers/scsi/ufs/
8101
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008102UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03008103M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008104W: http://www.linux-mtd.infradead.org/
8105L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03008106T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008107S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07008108F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07008109F: include/linux/mtd/ubi.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008110F: include/uapi/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008111
Richard Weinberger76ac66e2012-09-26 17:51:50 +02008112UNSORTED BLOCK IMAGES (UBI) Fastmap
8113M: Richard Weinberger <richard@nod.at>
8114L: linux-mtd@lists.infradead.org
8115S: Maintained
8116F: drivers/mtd/ubi/fastmap.c
8117
Linus Torvalds1da177e2005-04-16 15:20:36 -07008118USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008119M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07008120L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008122F: Documentation/usb/acm.txt
8123F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008124
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02008125USB AR5523 WIRELESS DRIVER
8126M: Pontus Fuchs <pontus.fuchs@gmail.com>
8127L: linux-wireless@vger.kernel.org
8128S: Maintained
8129F: drivers/net/wireless/ath/ar5523/
8130
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02008131USB ATTACHED SCSI
8132M: Matthew Wilcox <willy@linux.intel.com>
8133M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
8134L: linux-usb@vger.kernel.org
8135L: linux-scsi@vger.kernel.org
8136S: Supported
8137F: drivers/usb/storage/uas.c
8138
Linus Torvalds1da177e2005-04-16 15:20:36 -07008139USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008140M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008141L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008143F: drivers/net/usb/cdc_*.c
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008144F: include/uapi/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008145
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008146USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008147M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008148L: linux-usb@vger.kernel.org
8149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008150F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02008151
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008152USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008153M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008154L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008155W: http://www.linux-usb.org/usbnet
8156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008157F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01008158
Alan Coxcc2020e2008-05-19 14:21:51 +01008159USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008160M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01008161L: rio500-users@lists.sourceforge.net
8162W: http://rio500.sourceforge.net
8163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008164F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01008165
Linus Torvalds1da177e2005-04-16 15:20:36 -07008166USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008167M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008168L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008170F: Documentation/usb/ehci.txt
8171F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008172
David Brownell69ae9e32006-11-14 02:03:31 -08008173USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03008174M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008175L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008176W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03008177T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008179F: drivers/usb/gadget/
8180F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08008181
Jiri Kosina2dea64b2007-07-11 12:12:11 +02008182USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07008183M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008184L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07008185T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008186S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07008187F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07008188F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008189
matt mooney857aab32011-06-17 15:50:46 -07008190USB/IP DRIVERS
8191M: Matt Mooney <mfm@muteddisk.com>
8192L: linux-usb@vger.kernel.org
8193S: Maintained
8194F: drivers/staging/usbip/
8195
Olav Kongas959eea22005-11-03 17:38:14 +02008196USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008197M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008198L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008200F: drivers/usb/host/isp116x*
8201F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008202
Linus Torvalds1da177e2005-04-16 15:20:36 -07008203USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008204M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008205L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008207F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008208
8209USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008210M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008211L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008212L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008213S: Maintained
8214W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008215F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008216
Clemens Ladischaf399172011-01-10 16:32:54 +01008217USB MIDI DRIVER
8218M: Clemens Ladisch <clemens@ladisch.de>
8219L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8220T: git git://git.alsa-project.org/alsa-kernel.git
8221S: Maintained
8222F: sound/usb/midi.*
8223
Linus Torvalds1da177e2005-04-16 15:20:36 -07008224USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008225M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008226L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008228F: Documentation/usb/ohci.txt
8229F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008230
Matthias Urlichsba460e42005-07-14 00:33:47 -07008231USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008232M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008233L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008235F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008236
Linus Torvalds1da177e2005-04-16 15:20:36 -07008237USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008238M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008239L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008240L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008241W: http://pegasus2.sourceforge.net/
8242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008243F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008244
Felipe Balbid3ad5582012-05-21 16:24:49 +03008245USB PHY LAYER
8246M: Felipe Balbi <balbi@ti.com>
8247L: linux-usb@vger.kernel.org
8248T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8249S: Maintained
8250F: drivers/usb/phy/
8251F: drivers/usb/otg/
8252
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008253USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008254M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008255L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008257F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008258
8259USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008260M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008261L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008262L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008263W: http://pegasus2.sourceforge.net/
8264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008265F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008266
Alan Cox4e688522008-04-30 00:52:11 -07008267USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008268M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008269L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008271F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008272
8273USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008274M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008275L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008276S: Maintained
8277W: http://geocities.com/i0xox0i
8278W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008279F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008280
Linus Torvalds1da177e2005-04-16 15:20:36 -07008281USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008282M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008283W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008285F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008286
8287USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008288M: Peter Berger <pberger@brimson.com>
8289M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008290L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008292F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008293
8294USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008295M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008296L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008297S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008298F: Documentation/usb/usb-serial.txt
8299F: drivers/usb/serial/generic.c
8300F: drivers/usb/serial/usb-serial.c
8301F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008302
Linus Torvalds1da177e2005-04-16 15:20:36 -07008303USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008304M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008305L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008307F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008308
8309USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008310M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008311L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008313F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008314
8315USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008316M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008317L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008318W: http://www.connecttech.com
8319S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008320F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008321
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008322USB SMSC75XX ETHERNET DRIVER
8323M: Steve Glendinning <steve.glendinning@shawell.net>
8324L: netdev@vger.kernel.org
8325S: Maintained
8326F: drivers/net/usb/smsc75xx.*
8327
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008328USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008329M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008330L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008332F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008333
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008334USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008335M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008336L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008337L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008338T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008339W: http://www.linux-projects.org
8340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008341F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008342F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008343
8344USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008345M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008346L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008347W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008348T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008349S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008350F: Documentation/usb/
8351F: drivers/net/usb/
8352F: drivers/usb/
8353F: include/linux/usb.h
8354F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008355
8356USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008357M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008358L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008360F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008361
David Brownell69ae9e32006-11-14 02:03:31 -08008362USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008363M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008364L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008365W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008367F: drivers/net/usb/usbnet.c
8368F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008369
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008370USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008371M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008372L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008373L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008374T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008375W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008376S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008377F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008378F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008379
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008380USB VISION DRIVER
8381M: Hans Verkuil <hverkuil@xs4all.nl>
8382L: linux-media@vger.kernel.org
8383T: git git://linuxtv.org/media_tree.git
8384W: http://linuxtv.org
8385S: Odd Fixes
8386F: drivers/media/usb/usbvision/
8387
Laurent Pinchart8282da42012-10-04 02:32:42 +02008388USB WEBCAM GADGET
8389M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8390L: linux-usb@vger.kernel.org
8391S: Maintained
8392F: drivers/usb/gadget/*uvc*.c
8393F: drivers/usb/gadget/webcam.c
8394
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008395USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008396M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008397L: linux-wireless@vger.kernel.org
8398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008399F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008400
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008401USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008402M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008403L: linux-usb@vger.kernel.org
8404S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008405F: drivers/usb/host/xhci*
8406F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008407
Linus Torvalds1da177e2005-04-16 15:20:36 -07008408USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008409L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008410W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008411S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008412F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008413
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008414USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008415M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008416L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008417L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008418T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008419W: http://royale.zerezo.com/zr364xx/
8420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008421F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008422F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008423
Randy Dunlape7839f22008-10-12 16:11:45 -07008424USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008425M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008426M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008427L: user-mode-linux-devel@lists.sourceforge.net
8428L: user-mode-linux-user@lists.sourceforge.net
8429W: http://user-mode-linux.sourceforge.net
8430S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008431F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008432F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008433F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008434F: fs/hostfs/
8435F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008436
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008437USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008438M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008439M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008441F: Documentation/DocBook/uio-howto.tmpl
8442F: drivers/uio/
8443F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008444
Karel Zak256cccb2012-06-01 10:13:09 +02008445UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008446M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008447L: util-linux@vger.kernel.org
8448W: http://en.wikipedia.org/wiki/Util-linux
8449T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008450S: Maintained
8451
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008452UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008453M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008454L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008455W: http://dev.gentoo.org/~spock/projects/uvesafb/
8456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008457F: Documentation/fb/uvesafb.txt
8458F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008459
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008460VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008461M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008463F: Documentation/filesystems/vfat.txt
8464F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008465
Alex Williamsoncba33452012-07-31 08:16:22 -06008466VFIO DRIVER
8467M: Alex Williamson <alex.williamson@redhat.com>
8468L: kvm@vger.kernel.org
8469S: Maintained
8470F: Documentation/vfio.txt
8471F: drivers/vfio/
8472F: include/linux/vfio.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008473F: include/uapi/linux/vfio.h
Alex Williamsoncba33452012-07-31 08:16:22 -06008474
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008475VIDEOBUF2 FRAMEWORK
8476M: Pawel Osciak <pawel@osciak.com>
8477M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008478M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008479L: linux-media@vger.kernel.org
8480S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008481F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008482F: include/media/videobuf2-*
8483
Amit Shah9a824462010-03-23 18:23:09 +05308484VIRTIO CONSOLE DRIVER
8485M: Amit Shah <amit.shah@redhat.com>
8486L: virtualization@lists.linux-foundation.org
8487S: Maintained
8488F: drivers/char/virtio_console.c
8489F: include/linux/virtio_console.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008490F: include/uapi/linux/virtio_console.h
Amit Shah9a824462010-03-23 18:23:09 +05308491
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308492VIRTIO CORE, NET AND BLOCK DRIVERS
8493M: Rusty Russell <rusty@rustcorp.com.au>
8494M: "Michael S. Tsirkin" <mst@redhat.com>
8495L: virtualization@lists.linux-foundation.org
8496S: Maintained
8497F: drivers/virtio/
8498F: drivers/net/virtio_net.c
8499F: drivers/block/virtio_blk.c
8500F: include/linux/virtio_*.h
8501
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008502VIRTIO HOST (VHOST)
8503M: "Michael S. Tsirkin" <mst@redhat.com>
8504L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008505L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008506L: netdev@vger.kernel.org
8507S: Maintained
8508F: drivers/vhost/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008509F: include/uapi/linux/vhost.h
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008510
Linus Torvalds1da177e2005-04-16 15:20:36 -07008511VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008512M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008513S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008514F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008515
Harald Weltef0bf7f62009-06-17 20:22:39 +02008516VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008517M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008518M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008519S: Maintained
8520F: drivers/mmc/host/via-sdmmc.c
8521
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008522VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008523M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008524L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008525S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008526F: include/linux/via-core.h
8527F: include/linux/via-gpio.h
8528F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008529F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008530
Francois Romieu01f20732007-01-26 00:57:17 -08008531VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008532M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008533L: netdev@vger.kernel.org
8534S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008535F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008536
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008537VIVI VIRTUAL VIDEO DRIVER
8538M: Hans Verkuil <hverkuil@xs4all.nl>
8539L: linux-media@vger.kernel.org
8540T: git git://linuxtv.org/media_tree.git
8541W: http://linuxtv.org
8542S: Maintained
8543F: drivers/media/platform/vivi*
8544
Patrick McHardybe7f8272007-10-23 20:26:36 -07008545VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008546M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008547L: netdev@vger.kernel.org
8548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008549F: drivers/net/macvlan.c
8550F: include/linux/if_*vlan.h
8551F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008552
Florian Fainelli55e331c2009-06-16 15:33:53 -07008553VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008554M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008555L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008556S: Maintained
8557F: drivers/vlynq/vlynq.c
8558F: include/linux/vlynq.h
8559
Martyn Welch390beae2012-05-03 17:52:36 +01008560VME SUBSYSTEM
8561M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008562M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008563M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8564L: devel@driverdev.osuosl.org
8565S: Maintained
8566T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8567F: Documentation/vme_api.txt
8568F: drivers/staging/vme/
8569F: drivers/vme/
8570F: include/linux/vme*
8571
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008572VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008573M: Shreyas Bhatewara <sbhatewara@vmware.com>
8574M: "VMware, Inc." <pv-drivers@vmware.com>
8575L: netdev@vger.kernel.org
8576S: Maintained
8577F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008578
Alok Kataria851b1642009-10-13 14:51:05 -07008579VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008580M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008581M: VMware PV-Drivers <pv-drivers@vmware.com>
8582L: linux-scsi@vger.kernel.org
8583S: Maintained
8584F: drivers/scsi/vmw_pvscsi.c
8585F: drivers/scsi/vmw_pvscsi.h
8586
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008587VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008588M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008589M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008590W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008591W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008592T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008593S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008594F: drivers/regulator/
8595F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008596
Juerg Haefligerab413192006-09-24 20:54:04 +02008597VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008598M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008599L: lm-sensors@lm-sensors.org
8600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008601F: Documentation/hwmon/vt1211
8602F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008603
Roger Lucas1de9e372005-11-26 20:20:05 +01008604VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008605M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008606L: lm-sensors@lm-sensors.org
8607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008608F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008609
Tony Olech88095e72011-05-14 16:48:13 -04008610VUB300 USB to SDIO/SD/MMC bridge chip
8611M: Tony Olech <tony.olech@elandigitalsystems.com>
8612L: linux-mmc@vger.kernel.org
8613L: linux-usb@vger.kernel.org
8614S: Supported
8615F: drivers/mmc/host/vub300.c
8616
Linus Torvalds1da177e2005-04-16 15:20:36 -07008617W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008618M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008620F: Documentation/w1/
8621F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008622
Charles Spirakis13927072006-07-05 18:05:15 +02008623W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008624M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008625L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008627F: Documentation/hwmon/w83791d
8628F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008629
Rudolf Marek61db0112006-12-12 18:18:30 +01008630W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008631M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008632L: lm-sensors@lm-sensors.org
8633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008634F: Documentation/hwmon/w83793
8635F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008636
Jean Delvaree3760b42010-10-28 20:31:49 +02008637W83795 HARDWARE MONITORING DRIVER
8638M: Jean Delvare <khali@linux-fr.org>
8639L: lm-sensors@lm-sensors.org
8640S: Maintained
8641F: drivers/hwmon/w83795.c
8642
Linus Torvalds1da177e2005-04-16 15:20:36 -07008643W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008644M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008646F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008647
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008648WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008649M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008650L: linux-watchdog@vger.kernel.org
8651W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008652T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008654F: Documentation/watchdog/
8655F: drivers/watchdog/
8656F: include/linux/watchdog.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008657F: include/uapi/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008658
Linus Torvalds1da177e2005-04-16 15:20:36 -07008659WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008660M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008661L: linux-scsi@vger.kernel.org
8662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008663F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008664
David Herrmannb22e00f2011-09-06 13:50:40 +02008665WIIMOTE HID DRIVER
8666M: David Herrmann <dh.herrmann@googlemail.com>
8667L: linux-input@vger.kernel.org
8668S: Maintained
8669F: drivers/hid/hid-wiimote*
8670
David Härdemane258b802009-09-21 17:04:53 -07008671WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008672M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008673S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008674F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008675
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008676WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008677M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008678M: linux-wimax@intel.com
8679L: wimax@linuxwimax.org
8680S: Supported
8681W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008682F: Documentation/wimax/README.wimax
Joe Perches315987d2010-08-09 17:20:50 -07008683F: include/linux/wimax/debug.h
8684F: include/net/wimax.h
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008685F: include/uapi/linux/wimax.h
Joe Perches315987d2010-08-09 17:20:50 -07008686F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008687
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008688WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008689M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008691F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008692
Linus Torvalds1da177e2005-04-16 15:20:36 -07008693WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008694M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008695L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008696W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008697S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008698F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008699
Mark Brownfebf1df2008-04-02 00:51:09 -04008700WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008701M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8702M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008703L: linux-input@vger.kernel.org
8704T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8705W: http://opensource.wolfsonmicro.com/node/7
8706S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008707F: drivers/input/touchscreen/*wm97*
8708F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008709
Mark Brown055bcbc2010-08-13 14:18:12 +01008710WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008711M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008712L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008713T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008714T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008715W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008716S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008717F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008718F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008719F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008720F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008721F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008722F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008723F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008724F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008725F: drivers/input/misc/wm831x-on.c
8726F: drivers/input/touchscreen/wm831x-ts.c
8727F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008728F: drivers/mfd/arizona*
8729F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008730F: drivers/power/wm83*.c
8731F: drivers/rtc/rtc-wm83*.c
8732F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008733F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008734F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008735F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008736F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008737F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008738F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008739F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008740F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008741F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008742F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008743
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008744WORKQUEUE
8745M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008746T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8747S: Maintained
8748F: include/linux/workqueue.h
8749F: kernel/workqueue.c
8750F: Documentation/workqueue.txt
8751
Linus Torvalds1da177e2005-04-16 15:20:36 -07008752X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008753M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008754L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008755S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008756F: Documentation/networking/x25*
8757F: include/net/x25*
8758F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008759
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008760X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008761M: Thomas Gleixner <tglx@linutronix.de>
8762M: Ingo Molnar <mingo@redhat.com>
8763M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008764M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008765T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008766S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008767F: Documentation/x86/
8768F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008769
Matthew Garrettd09448532010-02-11 10:40:13 -05008770X86 PLATFORM DRIVERS
8771M: Matthew Garrett <mjg@redhat.com>
8772L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008773T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -05008774S: Maintained
8775F: drivers/platform/x86
8776
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008777X86 MCE INFRASTRUCTURE
8778M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008779M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008780L: linux-edac@vger.kernel.org
8781S: Maintained
8782F: arch/x86/kernel/cpu/mcheck/*
8783
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008784XC2028/3028 TUNER DRIVER
8785M: Mauro Carvalho Chehab <mchehab@redhat.com>
8786L: linux-media@vger.kernel.org
8787W: http://linuxtv.org
8788T: git git://linuxtv.org/media_tree.git
8789S: Maintained
8790F: drivers/media/tuners/tuner-xc2028.*
8791
Ian Campbellc4468082011-04-27 15:26:46 -07008792XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008793M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008794M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008795L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8796L: virtualization@lists.linux-foundation.org
8797S: Supported
8798F: arch/x86/xen/
8799F: drivers/*/xen-*front.c
8800F: drivers/xen/
8801F: arch/x86/include/asm/xen/
8802F: include/xen/
Cesar Eduardo Barrosc117ab82013-01-04 15:35:22 -08008803F: include/uapi/xen/
Ian Campbellc4468082011-04-27 15:26:46 -07008804
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008805XEN HYPERVISOR ARM
8806M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8807L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8808S: Supported
8809F: arch/arm/xen/
8810F: arch/arm/include/asm/xen/
8811
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008812XEN NETWORK BACKEND DRIVER
8813M: Ian Campbell <ian.campbell@citrix.com>
8814L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8815L: netdev@vger.kernel.org
8816S: Supported
8817F: drivers/net/xen-netback/*
8818
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008819XEN PCI SUBSYSTEM
8820M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008821L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008822S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008823F: arch/x86/pci/*xen*
8824F: drivers/pci/*xen*
8825
8826XEN SWIOTLB SUBSYSTEM
8827M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008828L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008829S: Supported
8830F: arch/x86/xen/*swiotlb*
8831F: drivers/xen/*swiotlb*
8832
Linus Torvalds1da177e2005-04-16 15:20:36 -07008833XFS FILESYSTEM
8834P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008835M: Ben Myers <bpm@sgi.com>
8836M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008837M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008838L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008839W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008840T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008841S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008842F: Documentation/filesystems/xfs.txt
8843F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008844
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008845XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008846M: Anirudha Sarangi <anirudh@xilinx.com>
8847M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008848S: Maintained
8849F: drivers/net/ethernet/xilinx/xilinx_axienet*
8850
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008851XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008852M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008853W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008855F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008856
Peter Korsgaard238b8722006-12-06 20:35:17 -08008857XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008858M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008859L: linux-serial@vger.kernel.org
8860S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008861F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008862
Linus Torvalds1da177e2005-04-16 15:20:36 -07008863YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008864M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008865L: linux-hams@vger.kernel.org
8866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008867F: drivers/net/hamradio/yam*
8868F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008869
Henkaf64a5e2005-10-12 15:02:56 +02008870YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008871M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008872L: usbb2k-api-dev@nongnu.org
8873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008874F: Documentation/input/yealink.txt
8875F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008876
Linus Torvalds1da177e2005-04-16 15:20:36 -07008877Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008878M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008879W: http://yaina.de/jreuter/
8880W: http://www.qsl.net/dl1bke/
8881L: linux-hams@vger.kernel.org
8882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008883F: Documentation/networking/z8530drv.txt
8884F: drivers/net/hamradio/*scc.c
8885F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008886
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008887ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008888M: Daniel Drake <dsd@gentoo.org>
8889M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008890W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008891L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008892L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008894F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008895
Linus Torvalds1da177e2005-04-16 15:20:36 -07008896ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008897L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008898L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008899W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008900T: Mercurial http://linuxtv.org/hg/v4l-dvb
8901S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008902F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008903
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008904ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008905M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008906S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008907F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008908
Linus Torvalds1da177e2005-04-16 15:20:36 -07008909THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008910M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008911L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008912Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008913T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008914S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008915F: *
8916F: */