blob: 599934c2403a46ac54e23cbed5c47193d926e5e7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500225L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700226W: http://piie.net/?section=acerhdf
227S: Maintained
228F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200229
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230ACER WMI LAPTOP EXTRAS
Carlos Corbachod9269a72011-05-02 09:57:18 +0100231M: Joey Lee <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700237M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200238M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500239L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400240W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800241Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400242T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700244F: drivers/acpi/
245F: drivers/pnp/pnpacpi/
246F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700247F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248
Len Brown8b59a452007-01-08 19:03:28 -0500249ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500251L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300252W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700254F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700262
Len Brown359acec2007-02-10 01:59:24 -0500263ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500269
Carlos Corbachobff431e2008-02-05 02:17:04 +0000270ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500271L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700273F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100275AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700276M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200277W: http://wiki.parisc-linux.org/AD1889
278L: linux-parisc@vger.kernel.org
279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700280F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
283M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100284L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700285W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000286S: Supported
287F: drivers/misc/ad525x_dpot.c
288
289AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/regulator/ad5398.c
295
296AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/input/misc/ad714x.c
302
303AD7877 TOUCHSCREEN DRIVER
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/touchscreen/ad7877.c
309
310AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7879.c
316
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700317ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
318M: Jiri Kosina <jkosina@suse.cz>
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200323L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/hwmon/adm1025
326F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330L: lm-sensors@lm-sensors.org
331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333
Michael Wucc0b88c2007-08-31 01:15:25 -0400334ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400335L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200336W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400339
Sakari Ailuse8e31622012-11-12 18:14:39 -0300340ADP1653 FLASH CONTROLLER DRIVER
341M: Sakari Ailus <sakari.ailus@iki.fi>
342L: linux-media@vger.kernel.org
343S: Maintained
344F: drivers/media/i2c/adp1653.c
345F: include/media/adp1653.h
346
Michael Hennerich527a1a82010-10-28 11:31:28 +0000347ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
348M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100349L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700350W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000351S: Supported
352F: drivers/mfd/adp5520.c
353F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700354F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800355F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000356F: drivers/input/keyboard/adp5520-keys.c
357
358ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
359M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100360L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700361W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362S: Supported
363F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800364F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000365
366ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
367M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100368L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700369W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000370S: Supported
371F: drivers/video/backlight/adp8860_bl.c
372
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100373ADS1015 HARDWARE MONITOR DRIVER
374M: Dirk Eibach <eibach@gdsys.de>
375L: lm-sensors@lm-sensors.org
376S: Maintained
377F: Documentation/hwmon/ads1015
378F: drivers/hwmon/ads1015.c
379F: include/linux/i2c/ads1015.h
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700382M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700384F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Jean Delvareb058b852009-12-09 20:36:08 +0100386ADT7475 HARDWARE MONITOR DRIVER
387M: Jean Delvare <khali@linux-fr.org>
388L: lm-sensors@lm-sensors.org
389S: Maintained
390F: Documentation/hwmon/adt7475
391F: drivers/hwmon/adt7475.c
392
Michael Hennerich527a1a82010-10-28 11:31:28 +0000393ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
394M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100395L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700396W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000397S: Supported
398F: drivers/input/misc/adxl34x.c
399
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400400ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400402L: linux-scsi@vger.kernel.org
403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700404F: Documentation/scsi/advansys.txt
405F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700408M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700410F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Antti Palosaari91952bc2012-10-01 12:28:46 -0300412AF9013 MEDIA DRIVER
413M: Antti Palosaari <crope@iki.fi>
414L: linux-media@vger.kernel.org
415W: http://linuxtv.org/
416W: http://palosaari.fi/linux/
417Q: http://patchwork.linuxtv.org/project/linux-media/list/
418T: git git://linuxtv.org/anttip/media_tree.git
419S: Maintained
420F: drivers/media/dvb-frontends/af9013*
421
422AF9033 MEDIA DRIVER
423M: Antti Palosaari <crope@iki.fi>
424L: linux-media@vger.kernel.org
425W: http://linuxtv.org/
426W: http://palosaari.fi/linux/
427Q: http://patchwork.linuxtv.org/project/linux-media/list/
428T: git git://linuxtv.org/anttip/media_tree.git
429S: Maintained
430F: drivers/media/dvb-frontends/af9033*
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200433L: linux-fsdevel@vger.kernel.org
434S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700435F: Documentation/filesystems/affs.txt
436F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700439M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700440L: linux-afs@lists.infradead.org
441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700442F: fs/afs/
443F: include/net/af_rxrpc.h
444F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700448T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/char/agp/
451F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455L: linux-scsi@vger.kernel.org
456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/scsi/aha152x*
458F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Hannes Reinecke64624d42007-10-19 10:32:29 +0200460AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700461M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200462L: linux-scsi@vger.kernel.org
463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700464F: drivers/scsi/aic7xxx/
465F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200466
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700467AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700468M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700469L: linux-aio@kvack.org
470S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700471F: fs/aio.c
472F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700475M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700476L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477W: http://www.linux-usb.org/SpeedTouch/
478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700479F: drivers/usb/atm/speedtch.c
480F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Pierre Ossman272f1332007-05-14 21:25:26 +0200482ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700483M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700485F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200486
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000487ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700488M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100489L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700491F: Documentation/i2c/busses/i2c-ali1563
492F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700495M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700496M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500497M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700498S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700499L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700500F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Tobias Klauseradf92512011-02-09 10:58:29 +0100502ALTERA UART/JTAG UART SERIAL DRIVERS
503M: Tobias Klauser <tklauser@distanz.ch>
504L: linux-serial@vger.kernel.org
505L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
506S: Maintained
507F: drivers/tty/serial/altera_uart.c
508F: drivers/tty/serial/altera_jtaguart.c
509F: include/linux/altera_uart.h
510F: include/linux/altera_jtaguart.h
511
Andreas Herrmann512d1022011-05-25 20:43:31 +0200512AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100513M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200514L: lm-sensors@lm-sensors.org
515S: Maintained
516F: Documentation/hwmon/fam15h_power
517F: drivers/hwmon/fam15h_power.c
518
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700519AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700520M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700521L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700524
Jordan Crousef90b8112006-01-06 00:12:14 -0800525AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800526P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700527L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800528W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
529S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700530F: drivers/char/hw_random/geode-rng.c
531F: drivers/crypto/geode*
532F: drivers/video/geode/
533F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800534
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200535AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200536M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200537L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100538T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200539S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800540F: drivers/iommu/amd_iommu*.[ch]
541F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200542
Peter Orubae7f5b302008-07-28 18:44:11 +0200543AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100544M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700545L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700547F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200548
Stelian Pop284f42b2006-12-12 18:18:31 +0100549AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700550M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100551S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200552F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100553
Tom Tuckerf94b5332006-09-22 15:22:48 -0700554AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700555M: Tom Tucker <tom@opengridcomputing.com>
556M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700557L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700559F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700560
Michael Hennerich527a1a82010-10-28 11:31:28 +0000561ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200562M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100563L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000564L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700565W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000566S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100567F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200568F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000569F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000570F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100571F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000572
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400573ANALOG DEVICES INC ASOC DRIVERS
574L: uclinux-dist-devel@blackfin.uclinux.org
575L: alsa-devel@alsa-project.org (moderated for non-subscribers)
576W: http://blackfin.uclinux.org/
577S: Supported
578F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400579
Johannes Berg42269062006-07-25 16:15:50 +0200580AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700581M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000582L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700583L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700585F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200588M: Jiri Kosina <jkosina@suse.cz>
589S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700590F: arch/x86/kernel/apm_32.c
591F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200592F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700594APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700595M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700596L: linux-input@vger.kernel.org
597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700598F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700599
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700600APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200601M: Henrik Rydberg <rydberg@euromail.se>
602L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700604F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700607M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700609F: drivers/net/appletalk/
610F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Viresh Kumara4801672011-02-22 15:46:07 +0530612ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700613M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530614L: linux-ide@vger.kernel.org
615S: Maintained
616F: include/linux/pata_arasan_cf_data.h
617F: drivers/ata/pata_arasan_cf.c
618
Jaya Kumar1154ea72005-06-21 17:17:04 -0700619ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700620M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700622F: drivers/video/arcfb.c
623F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700626M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700628F: arch/arm/lib/floppydma.S
629F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Will Deacon6f965212011-07-01 14:38:53 +0100631ARM PMU PROFILING AND DEBUGGING
632M: Will Deacon <will.deacon@arm.com>
633S: Maintained
634F: arch/arm/kernel/perf_event*
635F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100636F: arch/arm/include/asm/pmu.h
637F: arch/arm/kernel/hw_breakpoint.c
638F: arch/arm/include/asm/hw_breakpoint.h
639
Russell Kingd4275352009-04-16 14:05:27 +0100640ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700641M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700642L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100643W: http://www.arm.linux.org.uk/
644S: Maintained
645F: arch/arm/
646
Stephen Boydd323c2432012-10-24 11:00:29 -0700647ARM SUB-ARCHITECTURES
648L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
649S: MAINTAINED
650F: arch/arm/mach-*/
651F: arch/arm/plat-*/
652T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
653
Russell Kingcefbf4e2009-11-22 17:40:28 +0000654ARM PRIMECELL AACI PL041 DRIVER
655M: Russell King <linux@arm.linux.org.uk>
656S: Maintained
657F: sound/arm/aaci.*
658
659ARM PRIMECELL CLCD PL110 DRIVER
660M: Russell King <linux@arm.linux.org.uk>
661S: Maintained
662F: drivers/video/amba-clcd.*
663
664ARM PRIMECELL KMI PL050 DRIVER
665M: Russell King <linux@arm.linux.org.uk>
666S: Maintained
667F: drivers/input/serio/ambakmi.*
668F: include/linux/amba/kmi.h
669
Russell King2761f5c2007-05-24 06:56:08 +0200670ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200671S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700672F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200673
Russell Kingcefbf4e2009-11-22 17:40:28 +0000674ARM PRIMECELL BUS SUPPORT
675M: Russell King <linux@arm.linux.org.uk>
676S: Maintained
677F: drivers/amba/
678F: include/linux/amba/bus.h
679
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800680ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700681M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700682L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683S: Maintained
684
Sergey Lapin9c784f92008-08-03 02:29:48 +0100685ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700686M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700687L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100688S: Maintained
689
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800690ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700691M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700692L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800693S: Maintained
694
Maxime Ripard1b106692012-11-15 21:51:26 +0100695ARM/Allwinner A1X SoC support
696M: Maxime Ripard <maxime.ripard@free-electrons.com>
697L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
698S: Maintained
699F: arch/arm/mach-sunxi/
700
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800701ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700702M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800703M: Nicolas Ferre <nicolas.ferre@atmel.com>
704M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700705L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200706W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800707W: http://www.linux4sam.org
708S: Supported
709F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100710
Rob Herring986cf2e2011-06-22 11:28:53 -0500711ARM/CALXEDA HIGHBANK ARCHITECTURE
712M: Rob Herring <rob.herring@calxeda.com>
713L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
714S: Maintained
715F: arch/arm/mach-highbank/
716
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300717ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
718M: Anton Vorontsov <avorontsov@mvista.com>
719S: Maintained
720F: arch/arm/mach-cns3xxx/
721T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
722
Alexander Shiyan386ab512012-11-17 17:57:24 +0400723ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
724M: Alexander Shiyan <shc_work@mail.ru>
725L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
726S: Odd Fixes
727F: arch/arm/mach-clps711x/
728
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800729ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100730M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000731M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800733S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100734F: arch/arm/mach-ep93xx/
735F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800736
737ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700738M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700739L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800740S: Maintained
741
Russell Kingd4275352009-04-16 14:05:27 +0100742ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700743M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700744L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700745S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100746F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700747F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100748
Mike Rapoportd48134e2008-08-20 09:03:26 +0100749ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700750M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700751L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100752S: Maintained
753
Hubert Feurstein94150092009-10-07 08:36:07 +0100754ARM/CONTEC MICRO9 MACHINE SUPPORT
755M: Hubert Feurstein <hubert.feurstein@contec.at>
756S: Maintained
757F: arch/arm/mach-ep93xx/micro9.c
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700760M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761S: Maintained
762
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200763ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100764M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700765L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100766T: git git://git.berlios.de/gemini-board
767S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300768F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200769
Barry Songa990cbd2011-07-12 21:44:10 +0800770ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
771M: Barry Song <baohua.song@csr.com>
772L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
773S: Maintained
774F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800775F: drivers/dma/sirf-dma.c
776F: drivers/i2c/busses/i2c-sirf.c
777F: drivers/pinctrl/pinctrl-sirf.c
778F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800779
Russell Kingd4275352009-04-16 14:05:27 +0100780ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700781M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700782L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100783W: http://www.arm.linux.org.uk/
784S: Maintained
785F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700786F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100787
Russell Kinga9da4f72008-07-12 21:42:04 +0100788ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700789M: Daniel Ribeiro <drwyrm@gmail.com>
790M: Stefan Schmidt <stefan@openezx.org>
791M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200792L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100793W: http://www.openezx.org/
794S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200795T: topgit git://git.openezx.org/openezx.git
796F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100797
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200798ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100799M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700800L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100801S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700802T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300803F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200804
Russell Kingd4275352009-04-16 14:05:27 +0100805ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700806M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700807L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100808W: http://www.arm.linux.org.uk/
809S: Maintained
810F: arch/arm/include/asm/hardware/dec21285.h
811F: arch/arm/mach-footbridge/
812
Sascha Hauer86183a52008-07-24 23:50:35 +0200813ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700814M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700815L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200816S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700817T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100818F: arch/arm/mach-imx/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700819F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200820
Shawn Guo8bcb9762011-10-07 22:24:18 +0800821ARM/FREESCALE IMX6
822M: Shawn Guo <shawn.guo@linaro.org>
823L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
824S: Maintained
825T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
826F: arch/arm/mach-imx/*imx6*
827
Shawn Guoa9866a092011-10-21 11:53:34 +0800828ARM/FREESCALE MXS ARM ARCHITECTURE
829M: Shawn Guo <shawn.guo@linaro.org>
830L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
831S: Maintained
832T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
833F: arch/arm/mach-mxs/
834
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800835ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700836M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700837L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800838S: Maintained
839
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100840ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700841M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700842L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100843S: Maintained
844
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200845ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700846M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100847M: Paul Parsons <lost.distance@yahoo.com>
848L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200849S: Maintained
850F: arch/arm/mach-pxa/hx4700.c
851F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100852F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200853
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100854ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700855M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200856W: www.jlime.com
857S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700858T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
859F: arch/arm/mach-sa1100/jornada720.c
860F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100861
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200862ARM/IGEP MACHINE SUPPORT
863M: Enric Balletbo i Serra <eballetbo@gmail.com>
864M: Javier Martinez Canillas <javier@dowhile0.org>
865L: linux-omap@vger.kernel.org
866L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
867S: Maintained
868F: arch/arm/mach-omap2/board-igep0020.c
869
Marek Vasut403d2972010-05-22 00:29:39 +0200870ARM/INCOME PXA270 SUPPORT
871M: Marek Vasut <marek.vasut@gmail.com>
872L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
873S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700874F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200875
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800876ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700877M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700878M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700879L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700880S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100881
882ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700883M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700884L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700885S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800886
887ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700888M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700889M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700890L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700891S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800892
893ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700894M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700895M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700896L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700897S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800898
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800899ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700900M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700901L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800902S: Maintained
903
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200904ARM/INTEL IXP4XX ARM ARCHITECTURE
905M: Imre Kaloz <kaloz@openwrt.org>
906M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100907L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200908S: Maintained
909F: arch/arm/mach-ixp4xx/
910
Joe Perches838553c2010-10-26 14:22:59 -0700911ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100912M: Jonathan Cameron <jic23@cam.ac.uk>
913L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
914S: Maintained
915F: arch/arm/mach-pxa/stargate2.c
916F: drivers/pcmcia/pxa2xx_stargate2.c
917
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800918ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700919M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700920M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700921L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700922S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800923
924ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700925M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700926L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800927S: Maintained
928
929ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700930M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700931L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800932S: Maintained
933
Philipp Zabel3b8861712008-07-09 21:27:15 +0100934ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700935M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100936S: Maintained
937
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200938ARM/Marvell Armada 370 and Armada XP SOC support
939M: Jason Cooper <jason@lakedaemon.net>
940M: Andrew Lunn <andrew@lunn.ch>
941M: Gregory Clement <gregory.clement@free-electrons.com>
942L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
943S: Maintained
944F: arch/arm/mach-mvebu/
945
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400946ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
947M: Jason Cooper <jason@lakedaemon.net>
948M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700949L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400950S: Maintained
951F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400952F: arch/arm/mach-kirkwood/
953F: arch/arm/mach-mv78xx0/
954F: arch/arm/mach-orion5x/
955F: arch/arm/plat-orion/
956
Alexander Clouterd69ac132011-04-14 15:22:02 -0700957ARM/Orion SoC/Technologic Systems TS-78xx platform support
958M: Alexander Clouter <alex@digriz.org.uk>
959L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
960W: http://www.digriz.org.uk/ts78xx/kernel
961S: Maintained
962F: arch/arm/mach-orion5x/ts78xx-*
963
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000964ARM/MICREL KS8695 ARCHITECTURE
965M: Greg Ungerer <gerg@uclinux.org>
966L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
967F: arch/arm/mach-ks8695
968S: Odd Fixes
969
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200970ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700971M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700972L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200973F: arch/arm/mach-pxa/mioa701.c
974S: Maintained
975
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100976ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700977M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100978S: Maintained
979
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100980ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700981M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200982M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700983M: STEricsson <STEricsson_nomadik_linux@list.st.com>
984L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
985S: Maintained
986F: arch/arm/mach-nomadik/
987F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100988F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200989T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100990
Andy Green9d762952009-05-19 06:41:42 -0300991ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700992M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300993L: openmoko-kernel@lists.openmoko.org (subscribers-only)
994W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
995S: Supported
996
Daniel Walker0c19d212009-12-07 16:53:51 -0800997ARM/QUALCOMM MSM MACHINE SUPPORT
998M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800999M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001000M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001001L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001002F: arch/arm/mach-msm/
1003F: drivers/video/msm/
1004F: drivers/mmc/host/msm_sdcc.c
1005F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001006F: drivers/tty/serial/msm_serial.h
1007F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -07001008F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001009F: drivers/*/pm8???-*
1010F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001011T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001012S: Maintained
1013
Dirk Opfer8459c152005-11-06 14:27:52 +00001014ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001015M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1016M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001017S: Maintained
1018
Marek Vasut5d783a22009-07-16 13:26:48 +02001019ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001020M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001021L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001022W: http://hackndev.com
1023S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001024F: arch/arm/mach-pxa/include/mach/palmtx.h
1025F: arch/arm/mach-pxa/palmtx.c
1026F: arch/arm/mach-pxa/include/mach/palmt5.h
1027F: arch/arm/mach-pxa/palmt5.c
1028F: arch/arm/mach-pxa/include/mach/palmld.h
1029F: arch/arm/mach-pxa/palmld.c
1030F: arch/arm/mach-pxa/include/mach/palmte2.h
1031F: arch/arm/mach-pxa/palmte2.c
1032F: arch/arm/mach-pxa/include/mach/palmtc.h
1033F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001034
Joe Perchesb57fe922009-12-14 18:00:52 -08001035ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001036M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001037L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001038W: http://hackndev.com
1039S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001040F: arch/arm/mach-pxa/include/mach/palmtreo.h
1041F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001042
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001043ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001044M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001045L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001046W: http://hackndev.com
1047S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001048F: arch/arm/mach-pxa/include/mach/palmz72.h
1049F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001052M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1054S: Maintained
1055
1056ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001057M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001058L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059W: http://www.arm.linux.org.uk/
1060S: Maintained
1061
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001062ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001063M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001064L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001065S: Maintained
1066
Russell Kingd4275352009-04-16 14:05:27 +01001067ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001068M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001069L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001070W: http://www.arm.linux.org.uk/
1071S: Maintained
1072F: arch/arm/common/time-acorn.c
1073F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1074F: arch/arm/include/asm/hardware/ioc.h
1075F: arch/arm/include/asm/hardware/iomd.h
1076F: arch/arm/include/asm/hardware/memc.h
1077F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001078F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001079F: drivers/net/ethernet/i825xx/ether1*
1080F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001081F: drivers/scsi/arm/
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001084M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085W: http://www.shark-linux.de/shark.html
1086S: Maintained
1087
Ben Dooksb21477f2009-06-13 10:46:34 +01001088ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001089M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001090M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001091L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001092L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001093W: http://www.fluff.org/ben/linux/
1094S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001095F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001096F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001097F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001098F: arch/arm/mach-s3c24*/
1099F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001100F: drivers/*/*s3c2410*
1101F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001102F: drivers/spi/spi-s3c*
1103F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001105ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001106M: Kukjin Kim <kgene.kim@samsung.com>
1107L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1108L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1109S: Maintained
1110F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001111F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001112
Kyungmin Park10ffa962011-03-04 17:36:26 -08001113ARM/SAMSUNG MOBILE MACHINE SUPPORT
1114M: Kyungmin Park <kyungmin.park@samsung.com>
1115L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1116S: Maintained
1117F: arch/arm/mach-s5pv210/mach-aquila.c
1118F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001119F: arch/arm/mach-exynos/mach-universal_c210.c
1120F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001121
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001122ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1123M: Kyungmin Park <kyungmin.park@samsung.com>
1124M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1125L: linux-arm-kernel@lists.infradead.org
1126L: linux-media@vger.kernel.org
1127S: Maintained
1128F: arch/arm/plat-s5p/dev-fimc*
1129F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001130F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001131
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001132ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1133M: Kyungmin Park <kyungmin.park@samsung.com>
1134M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001135M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001136L: linux-arm-kernel@lists.infradead.org
1137L: linux-media@vger.kernel.org
1138S: Maintained
1139F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001140F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001141
1142ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1143M: Kyungmin Park <kyungmin.park@samsung.com>
1144M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1145L: linux-arm-kernel@lists.infradead.org
1146L: linux-media@vger.kernel.org
1147S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001148F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001149
Paul Mundtd48d38e2010-02-08 12:50:24 +09001150ARM/SHMOBILE ARM ARCHITECTURE
Simon Horman5e212592012-11-27 11:41:49 +09001151M: Simon Horman <horms@verge.net.au>
Paul Mundtd48d38e2010-02-08 12:50:24 +09001152M: Magnus Damm <magnus.damm@gmail.com>
1153L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001154W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001155Q: http://patchwork.kernel.org/project/linux-sh/list/
Simon Horman5e212592012-11-27 11:41:49 +09001156T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
Paul Mundtd48d38e2010-02-08 12:50:24 +09001157S: Supported
1158F: arch/arm/mach-shmobile/
1159F: drivers/sh/
1160
Dinh Nguyen66314222012-07-18 16:07:18 -06001161ARM/SOCFPGA ARCHITECTURE
1162M: Dinh Nguyen <dinguyen@altera.com>
1163S: Maintained
1164F: arch/arm/mach-socfpga/
1165
1166ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1167M: Dinh Nguyen <dinguyen@altera.com>
1168S: Maintained
1169F: drivers/clk/socfpga/
1170
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001171ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001172M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001173L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001174S: Maintained
1175
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001176ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001177M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001178L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179S: Maintained
1180
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001181ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001182M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001183L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001184S: Maintained
1185
wanzongshun98ad6e32009-02-13 06:04:32 +01001186ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001187M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001188L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001189W: http://www.mcuos.com
1190S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001191F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001192F: drivers/input/keyboard/w90p910_keypad.c
1193F: drivers/input/touchscreen/w90p910_ts.c
1194F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001195F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001196F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001197F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001198F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001199F: drivers/usb/host/ehci-w90x900.c
1200F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001201
Linus Walleij54274d72010-04-04 10:58:03 +01001202ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001203M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001204L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1205S: Supported
1206F: arch/arm/mach-u300/
1207F: drivers/i2c/busses/i2c-stu300.c
1208F: drivers/rtc/rtc-coh901331.c
1209F: drivers/watchdog/coh901327_wdt.c
1210F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001211F: drivers/mfd/ab3100*
1212F: drivers/rtc/rtc-ab3100.c
1213F: drivers/rtc/rtc-coh901331.c
1214T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001215
Linus Walleij87572882010-12-22 09:18:29 +01001216ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001217M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001218M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001219L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1220S: Maintained
1221F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001222F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001223F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001224F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001225F: drivers/mfd/abx500*
1226F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001227F: drivers/mfd/dbx500*
1228F: drivers/mfd/db8500*
1229F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001230F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001231F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001232T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001233
Russell Kingd4275352009-04-16 14:05:27 +01001234ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001235M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001236L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001237W: http://www.arm.linux.org.uk/
1238S: Maintained
1239F: arch/arm/vfp/
1240
Marek Vasute66b6d82010-03-26 06:51:32 +01001241ARM/VOIPAC PXA270 SUPPORT
1242M: Marek Vasut <marek.vasut@gmail.com>
1243L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1244S: Maintained
1245F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001246F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001247
Tony Prisk04529fe2012-07-24 04:19:37 +12001248ARM/VT8500 ARM ARCHITECTURE
1249M: Tony Prisk <linux@prisktech.co.nz>
1250L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1251S: Maintained
1252F: arch/arm/mach-vt8500/
1253F: drivers/video/vt8500lcdfb.*
1254F: drivers/video/wm8505fb*
1255F: drivers/video/wmt_ge_rops.*
1256F: drivers/tty/serial/vt8500_serial.c
1257F: drivers/rtc/rtc-vt8500-c
Tony Prisk3a96dff2012-11-18 15:33:06 +13001258F: drivers/mmc/host/wmt-sdmmc.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001259
Marek Vasute66b6d82010-03-26 06:51:32 +01001260ARM/ZIPIT Z2 SUPPORT
1261M: Marek Vasut <marek.vasut@gmail.com>
1262L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1263S: Maintained
1264F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001265F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001266
Catalin Marinas38074222012-03-05 11:49:34 +00001267ARM64 PORT (AARCH64 ARCHITECTURE)
1268M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasd19766e2012-12-11 13:58:05 +00001269M: Will Deacon <will.deacon@arm.com>
Catalin Marinas38074222012-03-05 11:49:34 +00001270L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1271S: Maintained
1272F: arch/arm64/
Catalin Marinasd19766e2012-12-11 13:58:05 +00001273F: Documentation/arm64/
Catalin Marinas38074222012-03-05 11:49:34 +00001274
George Josephd58de032010-03-05 22:17:25 +01001275ASC7621 HARDWARE MONITOR DRIVER
1276M: George Joseph <george.joseph@fairview5.com>
1277L: lm-sensors@lm-sensors.org
1278S: Maintained
1279F: Documentation/hwmon/asc7621
1280F: drivers/hwmon/asc7621.c
1281
Corentin Charyb229ece2011-02-26 10:20:40 +01001282ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Corentin Chary5909c652012-12-17 16:00:05 -08001283M: Corentin Chary <corentin.chary@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001285L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001286W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001288F: drivers/platform/x86/asus*.c
1289F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001291ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001292M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001293L: lm-sensors@lm-sensors.org
1294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001295F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001296
Andrew Morton953a6472008-11-06 12:53:28 -08001297ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001298M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001299W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001301F: Documentation/crypto/async-tx-api.txt
1302F: crypto/async_tx/
1303F: drivers/dma/
1304F: include/linux/dmaengine.h
1305F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001306
Wolfram Sanga1867d32009-09-18 22:45:51 +02001307AT24 EEPROM DRIVER
1308M: Wolfram Sang <w.sang@pengutronix.de>
1309L: linux-i2c@vger.kernel.org
1310S: Maintained
1311F: drivers/misc/eeprom/at24.c
1312F: include/linux/i2c/at24.h
1313
Randy Dunlape7839f22008-10-12 16:11:45 -07001314ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001315M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001316W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001318F: Documentation/aoe/
1319F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Joe Perches9a10a872010-12-01 09:37:55 -08001321ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001322M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001323L: linux-wireless@vger.kernel.org
1324S: Supported
1325F: drivers/net/wireless/ath/*
1326
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001327ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001328M: Jiri Slaby <jirislaby@gmail.com>
1329M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001330M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001331L: linux-wireless@vger.kernel.org
1332L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001333W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001334S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001335F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001336
Kalle Valo12e62d62011-09-13 10:21:25 +03001337ATHEROS ATH6KL WIRELESS DRIVER
1338M: Kalle Valo <kvalo@qca.qualcomm.com>
1339L: linux-wireless@vger.kernel.org
1340W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1341T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1342S: Supported
1343F: drivers/net/wireless/ath/ath6kl/
1344
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001345ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001346M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1347M: Jouni Malinen <jouni@qca.qualcomm.com>
1348M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1349M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001350L: linux-wireless@vger.kernel.org
1351L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001352W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001353S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001354F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001355
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001356CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1357M: Christian Lamparter <chunkeey@googlemail.com>
1358L: linux-wireless@vger.kernel.org
1359W: http://wireless.kernel.org/en/users/Drivers/carl9170
1360S: Maintained
1361F: drivers/net/wireless/ath/carl9170/
1362
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001363ATK0110 HWMON DRIVER
1364M: Luca Tettamanti <kronos.it@gmail.com>
1365L: lm-sensors@lm-sensors.org
1366S: Maintained
1367F: drivers/hwmon/asus_atk0110.c
1368
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001369ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001370M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001372F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001373
Chris Snook7ae115b2008-09-09 03:26:57 -04001374ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001375M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001376M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001377L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001378W: http://sourceforge.net/projects/atl1
1379W: http://atl1.sourceforge.net
1380S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001381F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001384M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001385L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001386L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387W: http://linux-atm.sourceforge.net
1388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001389F: drivers/atm/
1390F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001392ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001393M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001394S: Maintained
1395F: drivers/mmc/host/atmel-mci.c
1396F: drivers/mmc/host/atmel-mci-regs.h
1397
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001398ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001399M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001400S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001401F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001402
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001403ATMEL DMA DRIVER
1404M: Nicolas Ferre <nicolas.ferre@atmel.com>
1405L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1406S: Supported
1407F: drivers/dma/at_hdmac.c
1408F: drivers/dma/at_hdmac_regs.h
1409F: arch/arm/mach-at91/include/mach/at_hdmac.h
1410
Josh Wu15515542012-03-23 17:56:29 +08001411ATMEL ISI DRIVER
1412M: Josh Wu <josh.wu@atmel.com>
1413L: linux-media@vger.kernel.org
1414S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001415F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001416F: include/media/atmel-isi.h
1417
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001418ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001419M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001420L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001422F: drivers/video/atmel_lcdfb.c
1423F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001424
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001425ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001426M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001427S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001428F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001429
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001430ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001431M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001432S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001433F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001434
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001435ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1436M: Nicolas Ferre <nicolas.ferre@atmel.com>
1437L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1438S: Supported
1439F: drivers/misc/atmel_tclib.c
1440F: drivers/clocksource/tcb_clksrc.c
1441
Josh Wuff2675d2012-03-23 17:56:55 +08001442ATMEL TSADCC DRIVER
1443M: Josh Wu <josh.wu@atmel.com>
1444L: linux-input@vger.kernel.org
1445S: Supported
1446F: drivers/input/touchscreen/atmel_tsadcc.c
1447
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001448ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001449M: Nicolas Ferre <nicolas.ferre@atmel.com>
1450L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001451S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001452F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001455M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001456L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457W: http://www.thekelleys.org.uk/atmel
1458W: http://atmelwlandriver.sourceforge.net/
1459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001460F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Chris Wrighta92b7b82005-07-07 18:12:23 -07001462AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001463M: Al Viro <viro@zeniv.linux.org.uk>
1464M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001465L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001466W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001467T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001469F: include/linux/audit.h
1470F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001471
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001472AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001473M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001474W: http://miguelojeda.es/auxdisplay.htm
1475W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001477F: drivers/auxdisplay/
1478F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001479
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001480AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001481M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1482M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001483W: http://www.atmel.com/products/AVR32/
1484W: http://avr32linux.org/
1485W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001487F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001488
1489AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001490M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1491M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001493F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001496M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001498W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001500F: include/linux/ax25.h
1501F: include/net/ax25.h
1502F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001504AZ6007 DVB DRIVER
1505M: Mauro Carvalho Chehab <mchehab@redhat.com>
1506L: linux-media@vger.kernel.org
1507W: http://linuxtv.org
1508T: git git://linuxtv.org/media_tree.git
1509S: Maintained
1510F: drivers/media/usb/dvb-usb-v2/az6007.c
1511
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001512B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001513M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001514L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001515L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001516W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001518F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001519
1520B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001521M: Larry Finger <Larry.Finger@lwfinger.net>
1522M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001523L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001524L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001525W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001527F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001528
Richard Purdie300abeb2007-02-07 22:21:07 +00001529BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001530M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001532F: drivers/video/backlight/
1533F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001534
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001535BATMAN ADVANCED
1536M: Marek Lindner <lindner_marek@yahoo.de>
1537M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001538M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001539L: b.a.t.m.a.n@lists.open-mesh.org
1540W: http://www.open-mesh.org/
1541S: Maintained
1542F: net/batman-adv/
1543
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001544BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001545M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001546L: linux-hams@vger.kernel.org
1547W: http://www.baycom.org/~tom/ham/ham.html
1548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001549F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001550
1551BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001552S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001553F: Documentation/filesystems/befs.txt
1554F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001555
1556BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001557M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001559F: Documentation/filesystems/bfs.txt
1560F: fs/bfs/
1561F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001562
Bryan Wu1394f032007-05-06 14:50:22 -07001563BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001564M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001565L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001566W: http://blackfin.uclinux.org
1567S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001568F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001569
Bryan Wue190d6b2007-07-17 14:43:44 +08001570BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001571L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001572W: http://blackfin.uclinux.org
1573S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001574F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001575
Mike Frysinger566da5b2007-06-11 15:31:30 +08001576BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001577M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001578L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001579W: http://blackfin.uclinux.org
1580S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001581F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001582
Mike Frysinger936ed492010-03-10 15:20:38 -08001583BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001584M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001585L: uclinux-dist-devel@blackfin.uclinux.org
1586W: http://blackfin.uclinux.org
1587S: Supported
1588F: drivers/mmc/host/bfin_sdh.c
1589
Bryan Wu1394f032007-05-06 14:50:22 -07001590BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001591M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001592L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001593W: http://blackfin.uclinux.org
1594S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001595F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001596
Bryan Wu1e6d3202007-07-15 02:50:02 +08001597BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001598M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001599L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001600W: http://blackfin.uclinux.org
1601S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001602F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001603
Bryan Wud24ecfc2007-05-01 23:26:32 +02001604BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001605M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001606L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001607W: http://blackfin.uclinux.org/
1608S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001609F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001610
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001611BLINKM RGB LED DRIVER
1612M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1613S: Maintained
1614F: drivers/leds/leds-blinkm.c
1615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001617M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001618T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001620F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Joern Engel2b54aae2008-02-06 01:38:02 -08001622BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001623M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001624L: linux-mtd@lists.infradead.org
1625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001626F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001627
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001628BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001629M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001630M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001631M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001632L: linux-bluetooth@vger.kernel.org
1633W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001634T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1635T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001637F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001640M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001641M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001642M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001643L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001644W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001645T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1646T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001648F: net/bluetooth/
1649F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001652M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001653M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001654L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001655W: http://sourceforge.net/projects/bonding/
1656S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001657F: drivers/net/bonding/
1658F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Gary Zambrano39105892006-06-22 17:26:20 -07001660BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001661M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001662L: netdev@vger.kernel.org
1663S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001664F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001665
Michael Chan948c51e2006-06-04 02:51:39 -07001666BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001667M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001668L: netdev@vger.kernel.org
1669S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001670F: drivers/net/ethernet/broadcom/bnx2.*
1671F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001672
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001673BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001674M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001675L: netdev@vger.kernel.org
1676S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001677F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001678
Stephen Warrenf680f252012-09-15 00:18:54 -06001679BROADCOM BCM2835 ARM ARCHICTURE
1680M: Stephen Warren <swarren@wwwdotorg.org>
1681L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1682T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1683S: Maintained
1684F: arch/arm/mach-bcm2835/
1685F: arch/arm/boot/dts/bcm2835*
1686F: arch/arm/configs/bcm2835_defconfig
1687F: drivers/*/*bcm2835*
1688
Michael Chan948c51e2006-06-04 02:51:39 -07001689BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001690M: Matt Carlson <mcarlson@broadcom.com>
1691M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001692L: netdev@vger.kernel.org
1693S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001694F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001695
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001696BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1697M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001698M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001699M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Arend van Spriel006a8f12012-11-28 21:44:04 +01001700M: Hante Meuleman <meuleman@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001701L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001702L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001703S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001704F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001705
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001706BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1707M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1708L: linux-scsi@vger.kernel.org
1709S: Supported
1710F: drivers/scsi/bnx2fc/
1711
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001712BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1713M: Rafał Miłecki <zajec5@gmail.com>
1714L: linux-wireless@vger.kernel.org
1715S: Maintained
1716F: drivers/bcma/
1717F: include/linux/bcma/
1718
Jing Huang7725ccf2009-09-23 17:46:15 -07001719BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001720M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001721L: linux-scsi@vger.kernel.org
1722S: Supported
1723F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001724
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001725BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1726M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001727L: netdev@vger.kernel.org
1728S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001729F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001730
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001731BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001732M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001733L: linux-scsi@vger.kernel.org
1734S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001735F: block/bsg.c
1736F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001737
Clemens Ladischaf399172011-01-10 16:32:54 +01001738BT87X AUDIO DRIVER
1739M: Clemens Ladisch <clemens@ladisch.de>
1740L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1741T: git git://git.alsa-project.org/alsa-kernel.git
1742S: Maintained
1743F: Documentation/sound/alsa/Bt87x.txt
1744F: sound/pci/bt87x.c
1745
Michael Bueschff1d5c22008-07-25 01:46:10 -07001746BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001747M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001748W: http://bu3sch.de/btgpio.php
1749S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001750F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001751
Joe Percheseb1eb042009-01-21 10:49:16 -05001752BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001753M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001754L: linux-btrfs@vger.kernel.org
1755W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001756Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001757T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001759F: Documentation/filesystems/btrfs.txt
1760F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001763M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001764L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001765W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001766T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001767S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001768F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001769F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Clemens Ladischaf399172011-01-10 16:32:54 +01001771C-MEDIA CMI8788 DRIVER
1772M: Clemens Ladisch <clemens@ladisch.de>
1773L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1774T: git git://git.alsa-project.org/alsa-kernel.git
1775S: Maintained
1776F: sound/pci/oxygen/
1777
Mark Salter21413552011-10-04 11:21:42 -04001778C6X ARCHITECTURE
1779M: Mark Salter <msalter@redhat.com>
1780M: Aurelien Jacquiot <a-jacquiot@ti.com>
1781L: linux-c6x-dev@linux-c6x.org
1782W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1783S: Maintained
1784F: arch/c6x/
1785
David Howellsa5432f52009-04-20 15:46:45 +01001786CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001787M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001788L: linux-cachefs@redhat.com
1789S: Supported
1790F: Documentation/filesystems/caching/cachefiles.txt
1791F: fs/cachefiles/
1792
Jonathan Corbet77d51402007-03-22 19:44:17 -03001793CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001794M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001795L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001796T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001798F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001799F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001800
Joe Perches201b6ba2010-09-07 20:33:24 +00001801CAIF NETWORK LAYER
1802M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1803L: netdev@vger.kernel.org
1804S: Supported
1805F: Documentation/networking/caif/
1806F: drivers/net/caif/
1807F: include/linux/caif/
1808F: include/net/caif/
1809F: net/caif/
1810
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001811CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001812M: Muli Ben-Yehuda <muli@il.ibm.com>
1813M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001814L: discuss@x86-64.org
1815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001816F: arch/x86/kernel/pci-calgary_64.c
1817F: arch/x86/kernel/tce_64.c
1818F: arch/x86/include/asm/calgary.h
1819F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001820
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001821CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001822M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001823L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001824W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001825T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001826S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001827F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001828F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001829F: include/linux/can/core.h
1830F: include/linux/can/bcm.h
1831F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001832F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001833
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001834CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001835M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001836M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001837L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001838W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001839T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001840S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001841F: drivers/net/can/
1842F: include/linux/can/dev.h
1843F: include/linux/can/error.h
1844F: include/linux/can/netlink.h
1845F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001846
James Morris95d16c72012-03-16 12:05:48 +11001847CAPABILITIES
1848M: Serge Hallyn <serge.hallyn@canonical.com>
1849L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001850S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001851F: include/linux/capability.h
1852F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001853F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001854F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001855
Arnd Bergmannb8154542008-05-16 11:10:59 +02001856CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001857M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001858L: linuxppc-dev@lists.ozlabs.org
1859L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001860W: http://www.ibm.com/developerworks/power/cell/
1861S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001862F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001863F: arch/powerpc/include/asm/spu*.h
1864F: arch/powerpc/oprofile/*cell*
1865F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001866
Sage Weil9030aaf2009-10-06 11:31:15 -07001867CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001868M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001869L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001870W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001871T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001872S: Supported
1873F: Documentation/filesystems/ceph.txt
1874F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001875F: net/ceph
1876F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001877F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001878
David Vrabel18332a82008-09-17 16:34:44 +01001879CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001880L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001881S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001882F: Documentation/usb/WUSB-Design-overview.txt
1883F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001884F: drivers/usb/host/hwa-hc.c
1885F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001886F: drivers/usb/wusbcore/
1887F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001888
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001889CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001890M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001891W: http://miguelojeda.es/auxdisplay.htm
1892W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001894F: drivers/auxdisplay/cfag12864b.c
1895F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001896
1897CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001898M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001899W: http://miguelojeda.es/auxdisplay.htm
1900W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001902F: drivers/auxdisplay/cfag12864bfb.c
1903F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001904
Johannes Berg704232c2007-04-23 12:20:05 -07001905CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001906M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001907L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001908W: http://wireless.kernel.org/
1909T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1910T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001912F: include/linux/nl80211.h
1913F: include/net/cfg80211.h
1914F: net/wireless/*
1915X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001916
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001917CHAR and MISC DRIVERS
1918M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001919M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001920T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001921S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001922F: drivers/char/*
1923F: drivers/misc/*
1924
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001925CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001926M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001927S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001928F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001929
Harry Weif8407f262011-02-25 14:44:15 -08001930CHINESE DOCUMENTATION
1931M: Harry Wei <harryxiyou@gmail.com>
Joe Perches97401532012-12-17 16:00:00 -08001932L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
Harry Weif8407f262011-02-25 14:44:15 -08001933L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1934S: Maintained
1935F: Documentation/zh_CN/
1936
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001937CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1938M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1939L: linux-usb@vger.kernel.org
1940S: Maintained
1941F: drivers/usb/chipidea/
1942
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001943CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001944M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001945M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001946M: Neel Patel <neepatel@cisco.com>
1947M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001948S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001949F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001950
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001951CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001952M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001953L: netdev@vger.kernel.org
1954S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001955F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001956
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001957CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001958M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001959L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001961F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001962
Timur Tabid9e9d822008-04-24 08:45:26 +10001963CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001964M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001965L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001966S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001967F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001968
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001969CLEANCACHE API
1970M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1971L: linux-kernel@vger.kernel.org
1972S: Maintained
1973F: mm/cleancache.c
1974F: include/linux/cleancache.h
1975
Russell Kingd4275352009-04-16 14:05:27 +01001976CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001977M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001978S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001979F: include/linux/clk.h
1980
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001981CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001982M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001983M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1984M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001985L: linux-scsi@vger.kernel.org
1986S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001987F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001988
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001989CMPC ACPI DRIVER
1990M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1991M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001992L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001993S: Supported
1994F: drivers/platform/x86/classmate-laptop.c
1995
Nicolas Palix74425ee2010-06-06 17:15:01 +02001996COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02001997M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001998M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02001999M: Nicolas Palix <nicolas.palix@imag.fr>
2000L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002001W: http://coccinelle.lip6.fr/
2002S: Supported
2003F: scripts/coccinelle/
2004F: scripts/coccicheck
2005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002007M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008M: coda@cs.cmu.edu
2009L: codalist@coda.cs.cmu.edu
2010W: http://www.coda.cs.cmu.edu/
2011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002012F: Documentation/filesystems/coda.txt
2013F: fs/coda/
2014F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Mike Turquette7704add2012-05-02 18:37:45 -07002016COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07002017M: Mike Turquette <mturquette@linaro.org>
2018L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2019T: git git://git.linaro.org/people/mturquette/linux.git
2020S: Maintained
2021F: drivers/clk/clk.c
2022F: drivers/clk/clk-*
2023F: include/linux/clk-pr*
2024
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002025COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002026M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002027L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002028L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002029W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002030Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002031T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002032S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002033F: Documentation/filesystems/cifs.txt
2034F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002037M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002038L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002040F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002043M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002044L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002046F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002049M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002050L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002052F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002054COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002055M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002056L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002058F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002059
Simon Arlott949be0f2007-03-06 02:47:46 -08002060CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002061M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002062L: accessrunner-general@lists.sourceforge.net
2063W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002065F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002066
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002067CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002068M: Joel Becker <jlbec@evilplan.org>
2069T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002070S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002071F: fs/configfs/
2072F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002073
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002074CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002075M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002076L: netdev@vger.kernel.org
2077S: Maintained
2078F: drivers/connector/
2079
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002080CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002081M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002082M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002083L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002084L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002085T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002087F: include/linux/cgroup*
2088F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002089F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002090
Rudolf Marekbebe4672007-05-08 17:22:02 +02002091CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002092M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002093L: lm-sensors@lm-sensors.org
2094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002095F: Documentation/hwmon/coretemp
2096F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002097
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002099M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100W: http://www.fi.muni.cz/~kas/cosa/
2101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002102F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Florian Fainelli4371ee32009-06-01 02:43:17 -07002104CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002105M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002106L: netdev@vger.kernel.org
2107S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002108F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002111M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002112L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002113L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002115F: drivers/cpufreq/
2116F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002119M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002121F: arch/x86/kernel/cpuid.c
2122F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002124CPU POWER MONITORING SUBSYSTEM
2125M: Dominik Brodowski <linux@dominikbrodowski.net>
2126M: Thomas Renninger <trenn@suse.de>
2127S: Maintained
2128F: tools/power/cpupower
2129
Paul Jacksoned90fb42005-09-27 21:45:37 -07002130CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002131M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002132W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002133W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002134S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002135F: Documentation/cgroups/cpusets.txt
2136F: include/linux/cpuset.h
2137F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002140W: http://sourceforge.net/projects/cramfs/
2141S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002142F: Documentation/filesystems/cramfs.txt
2143F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002146M: Mikael Starvik <starvik@axis.com>
2147M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002148L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149W: http://developer.axis.com
2150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002151F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002152F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
2154CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002155M: Herbert Xu <herbert@gondor.apana.org.au>
2156M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002158T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002160F: Documentation/crypto/
2161F: arch/*/crypto/
2162F: crypto/
2163F: drivers/crypto/
2164F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Neil Horman5b07bd52009-02-05 16:03:04 +11002166CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002167M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002168L: linux-crypto@vger.kernel.org
2169S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002170F: crypto/ansi_cprng.c
2171F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002172
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002173CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002174M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002176F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002177
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002178CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002179M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002180L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002181L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002182T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002183W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002184W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002186F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002187F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002188F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002189
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002190CX88 VIDEO4LINUX DRIVER
2191M: Mauro Carvalho Chehab <mchehab@redhat.com>
2192L: linux-media@vger.kernel.org
2193W: http://linuxtv.org
2194T: git git://linuxtv.org/media_tree.git
2195S: Odd fixes
2196F: Documentation/video4linux/cx88/
2197F: drivers/media/pci/cx88/
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002198
Antti Palosaari91952bc2012-10-01 12:28:46 -03002199CXD2820R MEDIA DRIVER
2200M: Antti Palosaari <crope@iki.fi>
2201L: linux-media@vger.kernel.org
2202W: http://linuxtv.org/
2203W: http://palosaari.fi/linux/
2204Q: http://patchwork.linuxtv.org/project/linux-media/list/
2205T: git git://linuxtv.org/anttip/media_tree.git
2206S: Maintained
2207F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002208
Steve Wisee5ec3782008-05-20 14:06:33 -07002209CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002210M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002211L: netdev@vger.kernel.org
2212W: http://www.chelsio.com
2213S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002214F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002215
2216CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002217M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002218L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002219W: http://www.openfabrics.org
2220S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002221F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002222
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002223CXGB4 ETHERNET DRIVER (CXGB4)
2224M: Dimitris Michailidis <dm@chelsio.com>
2225L: netdev@vger.kernel.org
2226W: http://www.chelsio.com
2227S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002228F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002229
2230CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2231M: Steve Wise <swise@chelsio.com>
2232L: linux-rdma@vger.kernel.org
2233W: http://www.openfabrics.org
2234S: Supported
2235F: drivers/infiniband/hw/cxgb4/
2236
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002237CXGB4VF ETHERNET DRIVER (CXGB4VF)
2238M: Casey Leedom <leedom@chelsio.com>
2239L: netdev@vger.kernel.org
2240W: http://www.chelsio.com
2241S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002242F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002243
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002244STMMAC ETHERNET DRIVER
2245M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2246L: netdev@vger.kernel.org
2247W: http://www.stlinux.com
2248S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002249F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002252M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002253L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254W: http://www.arm.linux.org.uk/
2255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002256F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002259M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002260W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002262F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
2264CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002266S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002267F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002268F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002273F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002275CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002276M: Javier Martinez Canillas <javier@dowhile0.org>
2277L: linux-input@vger.kernel.org
2278S: Maintained
2279F: drivers/input/touchscreen/cyttsp*
2280F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002283M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284W: http://yaina.de/jreuter/
2285W: http://www.qsl.net/dl1bke/
2286L: linux-hams@vger.kernel.org
2287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002288F: net/ax25/af_ax25.c
2289F: net/ax25/ax25_dev.c
2290F: net/ax25/ax25_ds_*
2291F: net/ax25/ax25_in.c
2292F: net/ax25/ax25_out.c
2293F: net/ax25/ax25_timer.c
2294F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002296DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002297L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002298S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002299F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002300F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002301
2302DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002303M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002304W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002305M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002307F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002308
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002310M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002311M: Ali Akcaagac <aliakc@web.de>
2312M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002314L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315L: http://lists.twibble.org/mailman/listinfo/dc395x/
2316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002317F: Documentation/scsi/dc395x.txt
2318F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002320DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002321M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002322L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002323W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002325F: include/linux/dccp.h
2326F: include/linux/tfrc.h
2327F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330W: http://linux-decnet.sourceforge.net
2331L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002332S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002333F: Documentation/networking/decnet.txt
2334F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
2336DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002337M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002339F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002341DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002342M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002343L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002345F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002348M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349W: http://www.debian.org/~dz/i8k/
2350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002351F: drivers/char/i8k.c
2352F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
Doug Warzecha90563ec2005-09-06 15:17:15 -07002354DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002355M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002357F: Documentation/dcdbas.txt
2358F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002359
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002360DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002361M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002362S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002363F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002364
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002365DESIGNWARE USB3 DRD IP DRIVER
2366M: Felipe Balbi <balbi@ti.com>
2367L: linux-usb@vger.kernel.org
2368L: linux-omap@vger.kernel.org
2369T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2370S: Maintained
2371F: drivers/usb/dwc3/
2372
Kyungmin Park89d07762012-01-10 15:09:09 -08002373DEVICE FREQUENCY (DEVFREQ)
2374M: MyungJoo Ham <myungjoo.ham@samsung.com>
2375M: Kyungmin Park <kyungmin.park@samsung.com>
2376L: linux-kernel@vger.kernel.org
2377S: Maintained
2378F: drivers/devfreq/
2379
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002381M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383S: Maintained
2384
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002385DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002386M: Alasdair Kergon <agk@redhat.com>
2387M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002388L: dm-devel@redhat.com
2389W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002390Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002391T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002393F: Documentation/device-mapper/
2394F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002395F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002396F: include/linux/device-mapper.h
2397F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002398
Guenter Roeck335d7c52011-01-26 11:45:49 -08002399DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002400M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002401L: linux-i2c@vger.kernel.org
2402S: Maintained
2403F: drivers/i2c/busses/i2c-diolan-u2c.c
2404
Randy Dunlape7839f22008-10-12 16:11:45 -07002405DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002406M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002408F: Documentation/filesystems/dnotify.txt
2409F: fs/notify/dnotify/
2410F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
2412DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002413M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2415W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2416W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2417S: Maintained
2418
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002419DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002420M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002422F: Documentation/filesystems/quota.txt
2423F: fs/quota/
2424F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Bernie Thompson702686a2012-03-01 13:52:13 -08002426DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2427M: Bernie Thompson <bernie@plugable.com>
2428L: linux-fbdev@vger.kernel.org
2429S: Maintained
2430W: http://plugable.com/category/projects/udlfb/
2431F: drivers/video/udlfb.c
2432F: include/video/udlfb.h
2433F: Documentation/fb/udlfb.txt
2434
Randy Dunlape7839f22008-10-12 16:11:45 -07002435DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002436M: Christine Caulfield <ccaulfie@redhat.com>
2437M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002438L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002439W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002440T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002442F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002443
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302444DMA BUFFER SHARING FRAMEWORK
2445M: Sumit Semwal <sumit.semwal@linaro.org>
2446S: Maintained
2447L: linux-media@vger.kernel.org
2448L: dri-devel@lists.freedesktop.org
2449L: linaro-mm-sig@lists.linaro.org
2450F: drivers/base/dma-buf*
2451F: include/linux/dma-buf*
2452F: Documentation/dma-buf-sharing.txt
2453T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2454
Dan Williamsb3e5f262007-08-07 10:26:35 -07002455DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002456M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002457M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002459F: drivers/dma/
2460F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302461T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2462T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002463
Juerg Haefligerb8250372007-06-09 10:11:16 -04002464DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002465M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002466L: lm-sensors@lm-sensors.org
2467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002468F: Documentation/hwmon/dme1737
2469F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002470
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002471DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002472M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002473L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002474S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002475F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002476
Joe Perches7d2c86b2009-04-07 20:59:01 -07002477DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002478M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002479L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002480T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002482F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002485M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486L: blinux-list@redhat.com
2487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002488F: drivers/char/dtlk.c
2489F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002491DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002492M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002493L: linux-scsi@vger.kernel.org
2494W: http://www.adaptec.com/
2495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002496F: drivers/scsi/dpt*
2497F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002498
Philipp Reisnerb411b362009-09-25 16:07:19 -07002499DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002500P: Philipp Reisner
2501P: Lars Ellenberg
2502M: drbd-dev@lists.linbit.com
2503L: drbd-user@lists.linbit.com
2504W: http://www.drbd.org
2505T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2506T: git git://git.drbd.org/drbd-8.3.git
2507S: Supported
2508F: drivers/block/drbd/
2509F: lib/lru_cache.c
2510F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002511
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002512DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002513M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002514T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002516F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002517F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002518F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002519F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002520F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002521F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002522F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
2524DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002525M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002526L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002527T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002529F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002530F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Chris Wilson8daf7472010-09-28 14:07:26 +01002532INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002533M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002534L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002535L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002536T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002537S: Supported
2538F: drivers/gpu/drm/i915
2539F: include/drm/i915*
2540
Kyungmin Park398a6d42011-11-02 11:33:16 +09002541DRM DRIVERS FOR EXYNOS
2542M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002543M: Joonyoung Shim <jy0922.shim@samsung.com>
2544M: Seung-Woo Kim <sw0312.kim@samsung.com>
2545M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002546L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002547T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002548S: Supported
2549F: drivers/gpu/drm/exynos
2550F: include/drm/exynos*
2551
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002552DRM DRIVERS FOR NVIDIA TEGRA
2553M: Thierry Reding <thierry.reding@avionic-design.de>
2554L: dri-devel@lists.freedesktop.org
2555L: linux-tegra@vger.kernel.org
2556T: git git://gitorious.org/thierryreding/linux.git
2557S: Maintained
2558F: drivers/gpu/drm/tegra/
2559F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2560
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002562M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002563L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002565F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
Antti Palosaari91952bc2012-10-01 12:28:46 -03002567DVB_USB_AF9015 MEDIA DRIVER
2568M: Antti Palosaari <crope@iki.fi>
2569L: linux-media@vger.kernel.org
2570W: http://linuxtv.org/
2571W: http://palosaari.fi/linux/
2572Q: http://patchwork.linuxtv.org/project/linux-media/list/
2573T: git git://linuxtv.org/anttip/media_tree.git
2574S: Maintained
2575F: drivers/media/usb/dvb-usb-v2/af9015*
2576
2577DVB_USB_AF9035 MEDIA DRIVER
2578M: Antti Palosaari <crope@iki.fi>
2579L: linux-media@vger.kernel.org
2580W: http://linuxtv.org/
2581W: http://palosaari.fi/linux/
2582Q: http://patchwork.linuxtv.org/project/linux-media/list/
2583T: git git://linuxtv.org/anttip/media_tree.git
2584S: Maintained
2585F: drivers/media/usb/dvb-usb-v2/af9035*
2586
2587DVB_USB_ANYSEE MEDIA DRIVER
2588M: Antti Palosaari <crope@iki.fi>
2589L: linux-media@vger.kernel.org
2590W: http://linuxtv.org/
2591W: http://palosaari.fi/linux/
2592Q: http://patchwork.linuxtv.org/project/linux-media/list/
2593T: git git://linuxtv.org/anttip/media_tree.git
2594S: Maintained
2595F: drivers/media/usb/dvb-usb-v2/anysee*
2596
2597DVB_USB_AU6610 MEDIA DRIVER
2598M: Antti Palosaari <crope@iki.fi>
2599L: linux-media@vger.kernel.org
2600W: http://linuxtv.org/
2601W: http://palosaari.fi/linux/
2602Q: http://patchwork.linuxtv.org/project/linux-media/list/
2603T: git git://linuxtv.org/anttip/media_tree.git
2604S: Maintained
2605F: drivers/media/usb/dvb-usb-v2/au6610*
2606
2607DVB_USB_CE6230 MEDIA DRIVER
2608M: Antti Palosaari <crope@iki.fi>
2609L: linux-media@vger.kernel.org
2610W: http://linuxtv.org/
2611W: http://palosaari.fi/linux/
2612Q: http://patchwork.linuxtv.org/project/linux-media/list/
2613T: git git://linuxtv.org/anttip/media_tree.git
2614S: Maintained
2615F: drivers/media/usb/dvb-usb-v2/ce6230*
2616
Michael Krufkyd099dea2012-10-02 00:56:20 -03002617DVB_USB_CXUSB MEDIA DRIVER
2618M: Michael Krufky <mkrufky@linuxtv.org>
2619L: linux-media@vger.kernel.org
2620W: http://linuxtv.org/
2621W: http://github.com/mkrufky
2622Q: http://patchwork.linuxtv.org/project/linux-media/list/
2623T: git git://linuxtv.org/media_tree.git
2624S: Maintained
2625F: drivers/media/usb/dvb-usb-v2/cxusb*
2626
Antti Palosaari91952bc2012-10-01 12:28:46 -03002627DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2628M: Antti Palosaari <crope@iki.fi>
2629L: linux-media@vger.kernel.org
2630W: http://linuxtv.org/
2631W: http://palosaari.fi/linux/
2632Q: http://patchwork.linuxtv.org/project/linux-media/list/
2633T: git git://linuxtv.org/anttip/media_tree.git
2634S: Maintained
2635F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2636
2637DVB_USB_EC168 MEDIA DRIVER
2638M: Antti Palosaari <crope@iki.fi>
2639L: linux-media@vger.kernel.org
2640W: http://linuxtv.org/
2641W: http://palosaari.fi/linux/
2642Q: http://patchwork.linuxtv.org/project/linux-media/list/
2643T: git git://linuxtv.org/anttip/media_tree.git
2644S: Maintained
2645F: drivers/media/usb/dvb-usb-v2/ec168*
2646
Michael Krufky8856f5f2012-10-02 00:55:50 -03002647DVB_USB_MXL111SF MEDIA DRIVER
2648M: Michael Krufky <mkrufky@linuxtv.org>
2649L: linux-media@vger.kernel.org
2650W: http://linuxtv.org/
2651W: http://github.com/mkrufky
2652Q: http://patchwork.linuxtv.org/project/linux-media/list/
2653T: git git://linuxtv.org/mkrufky/mxl111sf.git
2654S: Maintained
2655F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2656
Antti Palosaari91952bc2012-10-01 12:28:46 -03002657DVB_USB_RTL28XXU MEDIA DRIVER
2658M: Antti Palosaari <crope@iki.fi>
2659L: linux-media@vger.kernel.org
2660W: http://linuxtv.org/
2661W: http://palosaari.fi/linux/
2662Q: http://patchwork.linuxtv.org/project/linux-media/list/
2663T: git git://linuxtv.org/anttip/media_tree.git
2664S: Maintained
2665F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2666
2667DVB_USB_V2 MEDIA DRIVER
2668M: Antti Palosaari <crope@iki.fi>
2669L: linux-media@vger.kernel.org
2670W: http://linuxtv.org/
2671W: http://palosaari.fi/linux/
2672Q: http://patchwork.linuxtv.org/project/linux-media/list/
2673T: git git://linuxtv.org/anttip/media_tree.git
2674S: Maintained
2675F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2676F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2677
Jason Baronac0ac382011-08-11 14:36:43 -04002678DYNAMIC DEBUG
2679M: Jason Baron <jbaron@redhat.com>
2680S: Maintained
2681F: lib/dynamic_debug.c
2682F: include/linux/dynamic_debug.h
2683
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002684DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002685M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002686S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002687F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002688
Antti Palosaari91952bc2012-10-01 12:28:46 -03002689E4000 MEDIA DRIVER
2690M: Antti Palosaari <crope@iki.fi>
2691L: linux-media@vger.kernel.org
2692W: http://linuxtv.org/
2693W: http://palosaari.fi/linux/
2694Q: http://patchwork.linuxtv.org/project/linux-media/list/
2695T: git git://linuxtv.org/anttip/media_tree.git
2696S: Maintained
2697F: drivers/media/tuners/e4000*
2698
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002700M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002701L: linux-eata@i-connect.net
2702L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002704F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
2706EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002707M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708L: linux-scsi@vger.kernel.org
2709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002710F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
2712EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002713M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002714L: linux-eata@i-connect.net
2715L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002717F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718
2719EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002720M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002721L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722W: http://ebtables.sourceforge.net/
2723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002724F: include/linux/netfilter_bridge/ebt_*.h
2725F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Antti Palosaari91952bc2012-10-01 12:28:46 -03002727EC100 MEDIA DRIVER
2728M: Antti Palosaari <crope@iki.fi>
2729L: linux-media@vger.kernel.org
2730W: http://linuxtv.org/
2731W: http://palosaari.fi/linux/
2732Q: http://patchwork.linuxtv.org/project/linux-media/list/
2733T: git git://linuxtv.org/anttip/media_tree.git
2734S: Maintained
2735F: drivers/media/dvb-frontends/ec100*
2736
Michael Halcrow237fead2006-10-04 02:16:22 -07002737ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002738M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002739M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002740L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002741W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002742S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002743F: Documentation/filesystems/ecryptfs.txt
2744F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002745
Alan Coxda9bb1d2006-01-18 17:44:13 -08002746EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002747M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002748L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002749W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002750S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002751F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002752F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002753F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002754
Borislav Petkovc476c232009-05-20 20:31:58 +02002755EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002756M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002757M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002758L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002759W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002760S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002761F: drivers/edac/amd64_edac*
2762
Ralf Baechlef65aad42012-10-17 00:39:09 +02002763EDAC-CAVIUM
2764M: Ralf Baechle <ralf@linux-mips.org>
2765M: David Daney <david.daney@cavium.com>
2766L: linux-edac@vger.kernel.org
2767L: linux-mips@linux-mips.org
2768W: bluesmoke.sourceforge.net
2769S: Supported
2770F: drivers/edac/octeon_edac*
2771
Dave Peterson0e438e32006-03-26 01:38:55 -08002772EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002773M: Mark Gross <mark.gross@intel.com>
2774M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002775L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002776W: bluesmoke.sourceforge.net
2777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002778F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002779
2780EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002781M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002782L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002783W: bluesmoke.sourceforge.net
2784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002785F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002786
Douglas Thompson6bc78402007-07-19 01:50:12 -07002787EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002788M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002789L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002790W: bluesmoke.sourceforge.net
2791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002792F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002793
2794EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002795M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002796L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002797W: bluesmoke.sourceforge.net
2798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002799F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002800
2801EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002802M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002803L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002804W: bluesmoke.sourceforge.net
2805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002806F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002807
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002808EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002809M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002810L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002811W: bluesmoke.sourceforge.net
2812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002813F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002814
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002815EDAC-I7300
2816M: Mauro Carvalho Chehab <mchehab@redhat.com>
2817L: linux-edac@vger.kernel.org
2818W: bluesmoke.sourceforge.net
2819S: Maintained
2820F: drivers/edac/i7300_edac.c
2821
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002822EDAC-I7CORE
2823M: Mauro Carvalho Chehab <mchehab@redhat.com>
2824L: linux-edac@vger.kernel.org
2825W: bluesmoke.sourceforge.net
2826S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002827F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002828
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002829EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002830M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302831M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002832L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002833W: bluesmoke.sourceforge.net
2834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002835F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002836
2837EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002838M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002839L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002840W: bluesmoke.sourceforge.net
2841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002842F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002843
Dave Peterson0e438e32006-03-26 01:38:55 -08002844EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002845M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002846L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002847W: bluesmoke.sourceforge.net
2848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002849F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002850
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002851EDAC-SBRIDGE
2852M: Mauro Carvalho Chehab <mchehab@redhat.com>
2853L: linux-edac@vger.kernel.org
2854W: bluesmoke.sourceforge.net
2855S: Maintained
2856F: drivers/edac/sb_edac.c
2857
Clemens Ladischaf399172011-01-10 16:32:54 +01002858EDIROL UA-101/UA-1000 DRIVER
2859M: Clemens Ladisch <clemens@ladisch.de>
2860L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2861T: git git://git.alsa-project.org/alsa-kernel.git
2862S: Maintained
2863F: sound/usb/misc/ua101.c
2864
Matt Fleming1f7df952012-10-03 10:04:02 +01002865EXTENSIBLE FIRMWARE INTERFACE (EFI)
2866M: Matt Fleming <matt.fleming@intel.com>
2867L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002868T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002869S: Maintained
2870F: Documentation/x86/efi-stub.txt
2871F: arch/ia64/kernel/efi.c
2872F: arch/x86/boot/compressed/eboot.[ch]
2873F: arch/x86/include/asm/efi.h
2874F: arch/x86/platform/efi/*
2875F: drivers/firmware/efivars.c
2876F: include/linux/efi*.h
2877
Peter Jones85a00d92010-09-22 13:05:04 -07002878EFIFB FRAMEBUFFER DRIVER
2879L: linux-fbdev@vger.kernel.org
2880M: Peter Jones <pjones@redhat.com>
2881S: Maintained
2882F: drivers/video/efifb.c
2883
Josh Triplett0bee8d22006-07-30 03:03:58 -07002884EFS FILESYSTEM
2885W: http://aeschi.ch.eu.org/efs/
2886S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002887F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002888
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002889EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002890M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2891M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002892L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002893S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002894F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002895
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002896EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002897M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002898L: netdev@vger.kernel.org
2899S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002900F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002901
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02002902EM28XX VIDEO4LINUX DRIVER
2903M: Mauro Carvalho Chehab <mchehab@redhat.com>
2904L: linux-media@vger.kernel.org
2905W: http://linuxtv.org
2906T: git git://linuxtv.org/media_tree.git
2907S: Maintained
2908F: drivers/media/usb/em28xx/
2909
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002910EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002911M: Paul Gortmaker <paul.gortmaker@windriver.com>
2912M: Matt Mackall <mpm@selenic.com>
2913M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002914L: linux-embedded@vger.kernel.org
2915S: Maintained
2916
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002917EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002918M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002919L: linux-scsi@vger.kernel.org
2920W: http://sourceforge.net/projects/lpfcxxxx
2921S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002922F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002923
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002924ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002925M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002926S: Maintained
2927F: drivers/misc/cb710/
2928F: drivers/mmc/host/cb710-mmc.*
2929F: include/linux/cb710.h
2930
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002931ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2932M: Maxim Levitsky <maximlevitsky@gmail.com>
2933S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002934F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002935
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002937M: Christopher Hoover <ch@murgatroid.com>
2938M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002940F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002942EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002943M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002944S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002945T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002946F: drivers/video/s1d13xxxfb.c
2947F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002948
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002950M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002951L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002953F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
2955ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002956M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002957L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002958L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002959W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002961F: include/linux/netfilter_bridge/
2962F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963
2964ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002965M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002967F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
2969EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002970M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002971L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002973F: Documentation/filesystems/ext2.txt
2974F: fs/ext2/
2975F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
2977EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002978M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002979M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002980M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002981L: linux-ext4@vger.kernel.org
2982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002983F: Documentation/filesystems/ext3.txt
2984F: fs/ext3/
Erik Mouw72be2cc2006-12-06 20:40:49 -08002985
2986EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002987M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002988M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002989L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002990W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002991Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002993F: Documentation/filesystems/ext4.txt
2994F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
Mimi Zoharc5532b02011-08-17 18:52:24 -04002996Extended Verification Module (EVM)
2997M: Mimi Zohar <zohar@us.ibm.com>
2998S: Supported
2999F: security/integrity/evm/
3000
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003001EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3002M: MyungJoo Ham <myungjoo.ham@samsung.com>
3003M: Chanwoo Choi <cw00.choi@samsung.com>
3004L: linux-kernel@vger.kernel.org
3005S: Maintained
3006F: drivers/extcon/
3007F: Documentation/extcon/
3008
Jingoo Han0a799512012-02-06 11:30:39 +09003009EXYNOS DP DRIVER
3010M: Jingoo Han <jg1.han@samsung.com>
3011L: linux-fbdev@vger.kernel.org
3012S: Maintained
3013F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003014F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003015
Donghwa Lee33ad3912012-03-06 11:44:58 +09003016EXYNOS MIPI DISPLAY DRIVERS
3017M: Inki Dae <inki.dae@samsung.com>
3018M: Donghwa Lee <dh09.lee@samsung.com>
3019M: Kyungmin Park <kyungmin.park@samsung.com>
3020L: linux-fbdev@vger.kernel.org
3021S: Maintained
3022F: drivers/video/exynos/exynos_mipi*
3023F: include/video/exynos_mipi*
3024
Jean Delvaree53004e2006-01-09 23:26:14 +01003025F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003026M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003027L: lm-sensors@lm-sensors.org
3028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003029F: Documentation/hwmon/f71805f
3030F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003031
Michael Büscheea977e2012-04-02 12:14:32 -03003032FC0011 TUNER DRIVER
3033M: Michael Buesch <m@bues.ch>
3034L: linux-media@vger.kernel.org
3035S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003036F: drivers/media/tuners/fc0011.h
3037F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003038
Antti Palosaari91952bc2012-10-01 12:28:46 -03003039FC2580 MEDIA DRIVER
3040M: Antti Palosaari <crope@iki.fi>
3041L: linux-media@vger.kernel.org
3042W: http://linuxtv.org/
3043W: http://palosaari.fi/linux/
3044Q: http://patchwork.linuxtv.org/project/linux-media/list/
3045T: git git://linuxtv.org/anttip/media_tree.git
3046S: Maintained
3047F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
Eric Paris88b2dbd2010-08-18 12:25:50 -04003049FANOTIFY
3050M: Eric Paris <eparis@redhat.com>
3051S: Maintained
3052F: fs/notify/fanotify/
3053F: include/linux/fanotify.h
3054
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003056M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057W: http://www.farsite.co.uk/
3058S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003059F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
Akinobu Mitac5408b82007-04-23 14:41:20 -07003061FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003062M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003063S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003064F: Documentation/fault-injection/
3065F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003066
Robert Lovecae727d2010-02-16 12:16:00 -08003067FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3068M: Robert Love <robert.w.love@intel.com>
3069L: devel@open-fcoe.org
3070W: www.Open-FCoE.org
3071S: Supported
3072F: drivers/scsi/libfc/
3073F: drivers/scsi/fcoe/
3074F: include/scsi/fc/
3075F: include/scsi/libfc.h
3076F: include/scsi/libfcoe.h
3077
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003078FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003079M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003080L: linux-fsdevel@vger.kernel.org
3081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003082F: include/linux/fcntl.h
3083F: include/linux/fs.h
3084F: fs/fcntl.c
3085F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003086
3087FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003088M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003089L: linux-fsdevel@vger.kernel.org
3090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003091F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003092
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003093FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003094M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003095L: lm-sensors@lm-sensors.org
3096S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003097F: drivers/hwmon/f75375s.c
3098F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003099
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003100FIREWIRE AUDIO DRIVERS
3101M: Clemens Ladisch <clemens@ladisch.de>
3102L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3103T: git git://git.alsa-project.org/alsa-kernel.git
3104S: Maintained
3105F: sound/firewire/
3106
Stefan Richtereb86ec52012-11-03 09:25:20 +01003107FIREWIRE MEDIA DRIVERS (firedtv)
3108M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3109L: linux-media@vger.kernel.org
3110L: linux1394-devel@lists.sourceforge.net
3111T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3112S: Maintained
3113F: drivers/media/firewire/
3114
Chris Boota511ce32012-04-14 17:50:35 -07003115FIREWIRE SBP-2 TARGET
3116M: Chris Boot <bootc@bootc.net>
3117L: linux-scsi@vger.kernel.org
3118L: target-devel@vger.kernel.org
3119L: linux1394-devel@lists.sourceforge.net
3120T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3121S: Maintained
3122F: drivers/target/sbp/
3123
Joe Perches7d2c86b2009-04-07 20:59:01 -07003124FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003125M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003126L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003127W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003128T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003130F: drivers/firewire/
Stefan Richter8f06ce32012-12-17 16:00:07 -08003131F: include/linux/firewire.h
3132F: include/uapi/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003133F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003134
3135FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003136M: Ming Lei <ming.lei@canonical.com>
3137L: linux-kernel@vger.kernel.org
3138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003139F: Documentation/firmware_class/
3140F: drivers/base/firmware*.c
3141F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003142
Jiri Kosina8206f662012-05-18 13:52:29 +02003143FLOPPY DRIVER
3144M: Jiri Kosina <jkosina@suse.cz>
3145T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3146S: Odd fixes
3147F: drivers/block/floppy.c
3148
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003149FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003150M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003151W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003153F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003154
3155FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003156L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003157S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003158F: drivers/net/wan/dlci.c
3159F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003160
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003162M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003163L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003165Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003166T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003168F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003169F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003170F: drivers/video/
3171F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003172F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173
Timur Tabia57c1882012-10-16 17:33:42 -05003174FREESCALE DIU FRAMEBUFFER DRIVER
3175M: Timur Tabi <timur@freescale.com>
3176L: linux-fbdev@vger.kernel.org
3177S: Supported
3178F: drivers/video/fsl-diu-fb.*
3179
Zhang Wei173acc72008-03-01 07:42:48 -07003180FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003181M: Li Yang <leoli@freescale.com>
3182M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003183L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003185F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003186
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003187FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003188M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003189L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003190L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003192F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003193
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003194FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003195M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003196L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003197L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003199F: arch/arm/plat-mxc/include/mach/imxfb.h
3200F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003201
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003202FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003203M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3204M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003205L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003206L: netdev@vger.kernel.org
3207S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003208F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003209F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003210
Timur Tabid9e9d822008-04-24 08:45:26 +10003211FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003212M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003213L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003214S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003215F: arch/powerpc/sysdev/qe_lib/
3216F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003217
Joe Perchesb55ef9292009-10-26 16:49:46 -07003218FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003219M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003220L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003221L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003222S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003223F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003224
Li Yangbeaf53b2007-05-25 13:54:02 +08003225FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003226M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003227L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003228L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003229S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003230F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003231
Timur Tabid9e9d822008-04-24 08:45:26 +10003232FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003233M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003234L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003235S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003236F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003237
3238FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003239M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003240L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003241L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003242S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003243F: sound/soc/fsl/fsl*
3244F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003245
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003247M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003250F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251
Pavel Machek71038f52009-01-15 13:51:02 -08003252FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003253M: Pavel Machek <pavel@ucw.cz>
3254M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003255L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003257F: Documentation/power/freezing-of-tasks.txt
3258F: include/linux/freezer.h
3259F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003260
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003261FRONTSWAP API
3262M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3263L: linux-kernel@vger.kernel.org
3264S: Maintained
3265F: mm/frontswap.c
3266F: include/linux/frontswap.h
3267
David Howellsa5432f52009-04-20 15:46:45 +01003268FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003269M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003270L: linux-cachefs@redhat.com
3271S: Supported
3272F: Documentation/filesystems/caching/
3273F: fs/fscache/
3274F: include/linux/fscache*.h
3275
Jaegeuk Kimf58ad8f2012-12-21 12:12:27 +09003276F2FS FILE SYSTEM
3277M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3278L: linux-f2fs-devel@lists.sourceforge.net
3279W: http://en.wikipedia.org/wiki/F2FS
3280T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3281S: Maintained
3282F: Documentation/filesystems/f2fs.txt
3283F: fs/f2fs/
3284F: include/linux/f2fs_fs.h
3285
David Howells5ab7ffe2007-04-10 15:10:45 +01003286FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003287M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003289F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
Jonathan Woithe20b93732008-06-11 10:14:56 +09303291FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303292M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003293L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003295F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303296
Heungjun Kim4da621b2011-11-11 08:05:33 -03003297FUJITSU M-5MO LS CAMERA ISP DRIVER
3298M: Kyungmin Park <kyungmin.park@samsung.com>
3299M: Heungjun Kim <riverful.kim@samsung.com>
3300L: linux-media@vger.kernel.org
3301S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003302F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003303F: include/media/m5mols.h
3304
Robert Gerlach2d24c492012-01-18 14:26:22 +01003305FUJITSU TABLET EXTRAS
3306M: Robert Gerlach <khnz@gmx.de>
3307L: platform-driver-x86@vger.kernel.org
3308S: Maintained
3309F: drivers/platform/x86/fujitsu-tablet.c
3310
Miklos Szeredi04578f12005-09-09 13:10:22 -07003311FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003312M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003313L: fuse-devel@lists.sourceforge.net
3314W: http://fuse.sourceforge.net/
3315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003316F: fs/fuse/
3317F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003318
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003320M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003322S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003323F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324
3325GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003326M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327L: linux-scsi@vger.kernel.org
3328W: http://www.icp-vortex.com/
3329S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003330F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003332GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003333M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003334S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003335F: drivers/i2c/busses/i2c-gpio.c
3336F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003337
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003338GENERIC GPIO I2C MULTIPLEXER DRIVER
3339M: Peter Korsgaard <peter.korsgaard@barco.com>
3340L: linux-i2c@vger.kernel.org
3341S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003342F: drivers/i2c/muxes/i2c-mux-gpio.c
3343F: include/linux/i2c-mux-gpio.h
3344F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003345
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003346GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003347M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003350F: drivers/net/wan/c101.c
3351F: drivers/net/wan/hd6457*
3352F: drivers/net/wan/hdlc*
3353F: drivers/net/wan/n2.c
3354F: drivers/net/wan/pc300too.c
3355F: drivers/net/wan/pci200syn.c
3356F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003358GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003359M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003360L: linux-arch@vger.kernel.org
3361T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3362S: Maintained
3363F: include/asm-generic
3364
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003365GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003366M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003367L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003368S: Supported
3369F: drivers/uio/uio_pci_generic.c
3370
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003371GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003372M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003373L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003374W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003375T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3376T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003377S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003378F: Documentation/filesystems/gfs2*.txt
3379F: fs/gfs2/
3380F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003381
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003382GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003383M: Hansjoerg Lipp <hjlipp@web.de>
3384M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003385L: gigaset307x-common@lists.sourceforge.net
3386W: http://gigaset307x.sourceforge.net/
3387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003388F: Documentation/isdn/README.gigaset
3389F: drivers/isdn/gigaset/
3390F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003391
Grant Likelya0dc00b2011-02-12 01:48:14 -07003392GPIO SUBSYSTEM
3393M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003394M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003395S: Maintained
3396T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003397F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003398F: drivers/gpio/
3399F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003400F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003401
Harry Wei71a6d0a2011-05-11 15:13:33 -07003402GRE DEMULTIPLEXER DRIVER
3403M: Dmitry Kozlov <xeb@mail.ru>
3404L: netdev@vger.kernel.org
3405S: Maintained
3406F: net/ipv4/gre.c
3407F: include/net/gre.h
3408
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003409GRETH 10/100/1G Ethernet MAC device driver
3410M: Kristoffer Glembo <kristoffer@gaisler.com>
3411L: netdev@vger.kernel.org
3412S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003413F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003414
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003415GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003416M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003417L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003418T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003419S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003420F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003421
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003422GSPCA GL860 SUBDRIVER
3423M: Olivier Lorin <o.lorin@laposte.net>
3424L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003425T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003426S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003427F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003428
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003429GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003430M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003431L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003432T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003433S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003434F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003435
3436GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003437M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003438L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003439T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003440S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003441F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003442
Brian Johnson261982f2009-07-19 15:58:56 -03003443GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003444M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003445L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003446T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003447S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003448F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003449
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003450GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003451M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003452L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003453T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003454S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003455F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003456
3457GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003458M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003459L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003460T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003461S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003462F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003463
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003464STK1160 USB VIDEO CAPTURE DRIVER
3465M: Ezequiel Garcia <elezegarcia@gmail.com>
3466L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003467T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003468S: Maintained
3469F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003470
Harry Wei71a6d0a2011-05-11 15:13:33 -07003471HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3472M: Frank Seidel <frank@f-seidel.de>
3473L: platform-driver-x86@vger.kernel.org
3474W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3475S: Maintained
3476F: drivers/platform/x86/hdaps.c
3477
3478HWPOISON MEMORY FAILURE HANDLING
3479M: Andi Kleen <andi@firstfloor.org>
3480L: linux-mm@kvack.org
3481T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3482S: Maintained
3483F: mm/memory-failure.c
3484F: mm/hwpoison-inject.c
3485
3486HYPERVISOR VIRTUAL CONSOLE DRIVER
3487L: linuxppc-dev@lists.ozlabs.org
3488S: Odd Fixes
3489F: drivers/tty/hvc/
3490
Michael Buesch844dd052006-06-26 00:24:59 -07003491HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003492M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003493M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003494L: lm-sensors@lm-sensors.org
3495W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003496T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003497T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003498S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003499F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003500F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003501F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003502
3503HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003504M: Matt Mackall <mpm@selenic.com>
3505M: Herbert Xu <herbert@gondor.apana.org.au>
3506S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003507F: Documentation/hw_random.txt
3508F: drivers/char/hw_random/
3509F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003510
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003511HARDWARE SPINLOCK CORE
3512M: Ohad Ben-Cohen <ohad@wizery.com>
3513S: Maintained
3514F: Documentation/hwspinlock.txt
3515F: drivers/hwspinlock/hwspinlock_*
3516F: include/linux/hwspinlock.h
3517
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003519L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003521F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
Antti Palosaari91952bc2012-10-01 12:28:46 -03003523HD29L2 MEDIA DRIVER
3524M: Antti Palosaari <crope@iki.fi>
3525L: linux-media@vger.kernel.org
3526W: http://linuxtv.org/
3527W: http://palosaari.fi/linux/
3528Q: http://patchwork.linuxtv.org/project/linux-media/list/
3529T: git git://linuxtv.org/anttip/media_tree.git
3530S: Maintained
3531F: drivers/media/dvb-frontends/hd29l2*
3532
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003533HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003534M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003535L: iss_storagedev@hp.com
3536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003537F: Documentation/blockdev/cpqarray.txt
3538F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003539
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003540HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003541M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003542L: iss_storagedev@hp.com
3543S: Supported
3544F: Documentation/scsi/hpsa.txt
3545F: drivers/scsi/hpsa*.[ch]
3546F: include/linux/cciss*.h
3547
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003548HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003549M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003550L: iss_storagedev@hp.com
3551S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003552F: Documentation/blockdev/cciss.txt
3553F: drivers/block/cciss*
3554F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003555
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003557L: linux-fsdevel@vger.kernel.org
3558S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003559F: Documentation/filesystems/hfs.txt
3560F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561
3562HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003563M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564L: linux-nvidia@lists.surfsouth.com
3565W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003567F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003569HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003570M: Pavel Machek <pavel@ucw.cz>
3571M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003572L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003573S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003574F: arch/x86/power/
3575F: drivers/base/power/
3576F: kernel/power/
3577F: include/linux/suspend.h
3578F: include/linux/freezer.h
3579F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003580F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003581
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003582HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003583M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003584L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003585T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003587F: drivers/hid/
3588F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003589
Ingo Molnar38bed542007-02-22 09:09:34 +01003590HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003591M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003592T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003594F: Documentation/timers/
3595F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003596F: kernel/time/clockevents.c
3597F: kernel/time/tick*.*
3598F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003599F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003600F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003601
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003604S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003605F: drivers/net/hamradio/dmascc.c
3606F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003608HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003609M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003610W: http://www.highpoint-tech.com
3611S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003612F: Documentation/scsi/hptiop.txt
3613F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003614
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003616M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617L: linux-hippi@sunsite.dk
3618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003619F: include/linux/hippidevice.h
3620F: include/linux/if_hippi.h
3621F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003622F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623
Jouni Malinenff1d2762005-05-12 22:54:16 -04003624HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003625M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003626L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003627L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003628W: http://hostap.epitest.fi/
3629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003630F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003631
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003632HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003633L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003634S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003635F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003636
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003637HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003638M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003639S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003640F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003641
Joe Perches7d2c86b2009-04-07 20:59:01 -07003642HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003643M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003645F: Documentation/timers/hpet.txt
3646F: drivers/char/hpet.c
3647F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003648
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003649HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003650M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003652F: arch/x86/kernel/hpet.c
3653F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003654
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003656M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003659F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660
Joe Perches7d2c86b2009-04-07 20:59:01 -07003661HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003662M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003663W: http://www.pharscape.org
3664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003665F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003666
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003667HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003668M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003669L: linux-input@vger.kernel.org
3670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003671F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003672
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673HUGETLB FILESYSTEM
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01003674M: Nadia Yvette Chambers <nyc@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003676F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003678Hyper-V CORE AND DRIVERS
3679M: K. Y. Srinivasan <kys@microsoft.com>
3680M: Haiyang Zhang <haiyangz@microsoft.com>
3681L: devel@linuxdriverproject.org
3682S: Maintained
3683F: drivers/hv/
3684F: drivers/hid/hid-hyperv.c
3685F: drivers/net/hyperv/
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003686
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003687I2C OVER PARALLEL PORT
3688M: Jean Delvare <khali@linux-fr.org>
3689L: linux-i2c@vger.kernel.org
3690S: Maintained
3691F: Documentation/i2c/busses/i2c-parport
3692F: Documentation/i2c/busses/i2c-parport-light
3693F: drivers/i2c/busses/i2c-parport.c
3694F: drivers/i2c/busses/i2c-parport-light.c
3695
3696I2C/SMBUS CONTROLLER DRIVERS FOR PC
3697M: Jean Delvare <khali@linux-fr.org>
3698L: linux-i2c@vger.kernel.org
3699S: Maintained
3700F: Documentation/i2c/busses/i2c-ali1535
3701F: Documentation/i2c/busses/i2c-ali1563
3702F: Documentation/i2c/busses/i2c-ali15x3
3703F: Documentation/i2c/busses/i2c-amd756
3704F: Documentation/i2c/busses/i2c-amd8111
3705F: Documentation/i2c/busses/i2c-i801
3706F: Documentation/i2c/busses/i2c-nforce2
3707F: Documentation/i2c/busses/i2c-piix4
3708F: Documentation/i2c/busses/i2c-sis5595
3709F: Documentation/i2c/busses/i2c-sis630
3710F: Documentation/i2c/busses/i2c-sis96x
3711F: Documentation/i2c/busses/i2c-via
3712F: Documentation/i2c/busses/i2c-viapro
3713F: drivers/i2c/busses/i2c-ali1535.c
3714F: drivers/i2c/busses/i2c-ali1563.c
3715F: drivers/i2c/busses/i2c-ali15x3.c
3716F: drivers/i2c/busses/i2c-amd756.c
3717F: drivers/i2c/busses/i2c-amd756-s4882.c
3718F: drivers/i2c/busses/i2c-amd8111.c
3719F: drivers/i2c/busses/i2c-i801.c
3720F: drivers/i2c/busses/i2c-isch.c
3721F: drivers/i2c/busses/i2c-nforce2.c
3722F: drivers/i2c/busses/i2c-nforce2-s4985.c
3723F: drivers/i2c/busses/i2c-piix4.c
3724F: drivers/i2c/busses/i2c-sis5595.c
3725F: drivers/i2c/busses/i2c-sis630.c
3726F: drivers/i2c/busses/i2c-sis96x.c
3727F: drivers/i2c/busses/i2c-via.c
3728F: drivers/i2c/busses/i2c-viapro.c
3729
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003730I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003731M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003732L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003733S: Maintained
Cesar Eduardo Barros8547a5b2012-12-16 21:11:54 +01003734F: drivers/i2c/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003735
Jean Delvare5b543962005-08-15 19:51:02 +02003736I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003737M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003738M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003739L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003740W: http://i2c.wiki.kernel.org/
3741T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003742T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003744F: Documentation/i2c/
3745F: drivers/i2c/
3746F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003747F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003749I2C-TAOS-EVM DRIVER
3750M: Jean Delvare <khali@linux-fr.org>
3751L: linux-i2c@vger.kernel.org
3752S: Maintained
3753F: Documentation/i2c/busses/i2c-taos-evm
3754F: drivers/i2c/busses/i2c-taos-evm.c
3755
Till Harbaume8c76ee2007-05-01 23:26:35 +02003756I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003757M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003758L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003759W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003761F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003762
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003764M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003766F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
3768i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003769M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003770T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771S: Maintained
3772
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003774M: Tony Luck <tony.luck@intel.com>
3775M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003777T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003779F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780
Kent Yoder956c2032012-09-07 04:17:01 +08003781IBM Power in-Nest Crypto Acceleration
3782M: Kent Yoder <key@linux.vnet.ibm.com>
3783L: linux-crypto@vger.kernel.org
3784S: Supported
3785F: drivers/crypto/nx/
3786
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003787IBM Power 842 compression accelerator
3788M: Robert Jennings <rcj@linux.vnet.ibm.com>
3789S: Supported
3790F: drivers/crypto/nx/nx-842.c
3791F: include/linux/nx842.h
3792
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003794M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003796F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797
Santiago Leon9d348af2010-09-03 18:29:53 +00003798IBM Power Virtual Ethernet Device Driver
3799M: Santiago Leon <santil@linux.vnet.ibm.com>
3800L: netdev@vger.kernel.org
3801S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003802F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003803
Robert Jennings4b7652c2012-07-31 12:34:36 -05003804IBM Power Virtual SCSI/FC Device Drivers
3805M: Robert Jennings <rcj@linux.vnet.ibm.com>
3806L: linux-scsi@vger.kernel.org
3807S: Supported
3808F: drivers/scsi/ibmvscsi/
3809X: drivers/scsi/ibmvscsi/ibmvstgt.c
3810
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811IBM ServeRAID RAID DRIVER
3812P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003813M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003815S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003816F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003818ICH LPC AND GPIO DRIVER
3819M: Peter Tyser <ptyser@xes-inc.com>
3820S: Maintained
3821F: drivers/mfd/lpc_ich.c
3822F: drivers/gpio/gpio-ich.c
3823
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003824IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003825M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003827Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003828T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003830F: Documentation/ide/
3831F: drivers/ide/
3832F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
Ike Panhc6cb8c132011-08-25 22:28:45 +08003834IDEAPAD LAPTOP EXTRAS DRIVER
3835M: Ike Panhc <ike.pan@canonical.com>
3836L: platform-driver-x86@vger.kernel.org
3837W: http://launchpad.net/ideapad-laptop
3838S: Maintained
3839F: drivers/platform/x86/ideapad-laptop.c
3840
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003841IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003842M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003843L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003845F: Documentation/cdrom/ide-cd
3846F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
Andy Henroid27471fd2008-10-09 11:45:22 -07003848IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003849M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003850L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003851S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003852F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003853
Sergey Lapin02cf2282009-06-08 12:18:50 +00003854IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003855M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003856M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003857L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003858W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003859T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003860S: Maintained
3861F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003862F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003863F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003864
Sean Young40ad4a32012-11-19 10:32:53 -03003865IGUANAWORKS USB IR TRANSCEIVER
3866M: Sean Young <sean@mess.org>
3867L: linux-media@vger.kernel.org
3868S: Maintained
3869F: drivers/media/rc/iguanair.c
3870
Ameya Palande9545f862012-01-10 09:00:58 -08003871IIO SUBSYSTEM AND DRIVERS
3872M: Jonathan Cameron <jic23@cam.ac.uk>
3873L: linux-iio@vger.kernel.org
3874S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003875F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003876F: drivers/staging/iio/
3877
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003878IKANOS/ADI EAGLE ADSL USB DRIVER
3879M: Matthieu Castet <castet.matthieu@free.fr>
3880M: Stanislaw Gruszka <stf_xl@wp.pl>
3881S: Maintained
3882F: drivers/usb/atm/ueagle-atm.c
3883
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01003884INDUSTRY PACK SUBSYSTEM (IPACK)
3885M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
3886M: Jens Taprogge <jens.taprogge@taprogge.org>
3887M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3888L: industrypack-devel@lists.sourceforge.net
3889W: http://industrypack.sourceforge.net
3890S: Maintained
3891F: drivers/ipack/
3892
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003893INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003894M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003895S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003896F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003897
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003899L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003900S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003901F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902
3903INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003904M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003905M: Sean Hefty <sean.hefty@intel.com>
3906M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003907L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003908W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003909Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003910T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003912F: Documentation/infiniband/
3913F: drivers/infiniband/
3914F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
Robert Lovec9f04f52005-07-15 12:21:07 -04003916INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003917M: John McCutchan <john@johnmccutchan.com>
3918M: Robert Love <rlove@rlove.org>
3919M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003921F: Documentation/filesystems/inotify.txt
3922F: fs/notify/inotify/
3923F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003924
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003925INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003926M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3927M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003928L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003929Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003930T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003932F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003933F: include/linux/input.h
3934F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003935
Henrik Rydberg3267a872010-06-24 19:10:40 -07003936INPUT MULTITOUCH (MT) PROTOCOL
3937M: Henrik Rydberg <rydberg@euromail.se>
3938L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003939T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003940S: Maintained
3941F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003942F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003943K: \b(ABS|SYN)_MT_
3944
Dave Jiang4ac13e12011-07-29 17:16:55 -07003945INTEL C600 SERIES SAS CONTROLLER DRIVER
3946M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003947M: Lukasz Dorau <lukasz.dorau@intel.com>
3948M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003949M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003950L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003951T: git git://git.code.sf.net/p/intel-sas/isci
3952S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003953F: drivers/scsi/isci/
3954F: firmware/isci/
3955
Len Brown26717172010-03-08 14:07:30 -05003956INTEL IDLE DRIVER
3957M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003958L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003959T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003960S: Supported
3961F: drivers/idle/intel_idle.c
3962
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003963INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003964M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003965L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003967F: Documentation/fb/intelfb.txt
3968F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003969
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003971M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003972L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003974F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303976INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003977M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003978L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303979W: http://www.lesswatts.org/projects/acpi/
3980S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003981F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303982
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003984M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003986F: arch/x86/kernel/microcode_core.c
3987F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003989INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003990M: Dan Williams <djbw@fb.com>
3991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003992F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003993
David Woodhouse6c8909b2008-10-18 16:12:17 +01003994INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003995M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003996L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003997T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003998S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003999F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004000F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004001
Dan Williamsb3e5f262007-08-07 10:26:35 -07004002INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004003M: Dan Williams <djbw@fb.com>
4004S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004005F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004006
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004007INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004008M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004010F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4011F: arch/arm/mach-ixp4xx/include/mach/npe.h
4012F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4013F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004014F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004015F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004016
Michael Buesch844dd052006-06-26 00:24:59 -07004017INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004018M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004020F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004021
Jeff Kirsher0d164402010-10-05 01:15:17 +00004022INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004023M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4024M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4025M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004026M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4027M: Don Skidmore <donald.c.skidmore@intel.com>
4028M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004029M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004030M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004031M: John Ronciak <john.ronciak@intel.com>
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004032M: Tushar Dave <tushar.n.dave@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004033L: e1000-devel@lists.sourceforge.net
Jesse Brandeburgf6fde112012-10-09 02:52:14 +00004034W: http://www.intel.com/support/feedback.htm
Auke Kokd94e6fe2008-03-03 14:37:47 -08004035W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004036T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4037T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004039F: Documentation/networking/e100.txt
4040F: Documentation/networking/e1000.txt
4041F: Documentation/networking/e1000e.txt
4042F: Documentation/networking/igb.txt
4043F: Documentation/networking/igbvf.txt
4044F: Documentation/networking/ixgb.txt
4045F: Documentation/networking/ixgbe.txt
4046F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004047F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048
Len Brown6dccf9c2011-07-12 22:29:32 -04004049INTEL MRST PMU DRIVER
4050M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004051L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04004052S: Supported
4053F: arch/x86/platform/mrst/pmu.*
4054
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004055INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4056M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004057L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004059F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004060F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004061F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004062
Shane Wang4bd96a72010-03-10 14:36:10 +08004063INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004064M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4065M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004066M: Shane Wang <shane.wang@intel.com>
4067L: tboot-devel@lists.sourceforge.net
4068W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004069T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004070S: Supported
4071F: Documentation/intel_txt.txt
4072F: include/linux/tboot.h
4073F: arch/x86/kernel/tboot.c
4074
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004075INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004076M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004077M: linux-wimax@intel.com
4078L: wimax@linuxwimax.org
4079S: Supported
4080W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004081F: Documentation/wimax/README.i2400m
4082F: drivers/net/wimax/i2400m/
4083F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004084
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004085INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4086M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004087L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004088S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004089F: drivers/net/wireless/iwlegacy/
4090
Zhu Yib481de92007-09-25 17:54:57 -07004091INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004092M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004093M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004094M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004095L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004096W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07004097T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004098S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004099F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004100
Tomas Winklerde8fe022012-05-09 16:39:02 +03004101INTEL MANAGEMENT ENGINE (mei)
4102M: Tomas Winkler <tomas.winkler@intel.com>
4103L: linux-kernel@vger.kernel.org
4104S: Supported
4105F: include/linux/mei.h
4106F: drivers/misc/mei/*
4107F: Documentation/mei/*
4108
Ralf Baechlecb109a02007-08-30 23:56:30 -07004109IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004110M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111L: linux-mips@linux-mips.org
4112S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004113F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114
Ralf Baechlecb109a02007-08-30 23:56:30 -07004115IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004116M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004117L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004118S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004119F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004120
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004121IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004122M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004124F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
Francois Romieu1202d6f2007-09-17 17:13:55 -07004126IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004127M: Francois Romieu <romieu@fr.zoreil.com>
4128M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004129L: netdev@vger.kernel.org
4130S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004131F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004132
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004133IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004134M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004135L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004137F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004138
Corey Minyard4409ebe2006-04-20 02:43:12 -07004139IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004140M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004141L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004142W: http://openipmi.sourceforge.net/
4143S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004144F: Documentation/IPMI.txt
4145F: drivers/char/ipmi/
4146F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004147
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004148IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004149M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004150L: linux-scsi@vger.kernel.org
4151W: http://www.adaptec.com/
4152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004153F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004154
4155IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004156M: Wensong Zhang <wensong@linux-vs.org>
4157M: Simon Horman <horms@verge.net.au>
4158M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004159L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004160L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004162F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004163F: include/net/ip_vs.h
4164F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004165F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166
Randy Dunlape7839f22008-10-12 16:11:45 -07004167IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004168M: Jiri Kosina <jkosina@suse.cz>
4169M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004170S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004171F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004172
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004173IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004174M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004175L: netdev@vger.kernel.org
4176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004177F: include/linux/ipx.h
4178F: include/net/ipx.h
4179F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004180
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004182M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004183L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004184L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004186S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004187T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004188F: Documentation/networking/irda.txt
4189F: drivers/net/irda/
4190F: include/net/irda/
4191F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004193IRQ SUBSYSTEM
4194M: Thomas Gleixner <tglx@linutronix.de>
4195S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004196T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004197F: kernel/irq/
4198
Grant Likely7ab3a832012-02-14 14:06:47 -07004199IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4200M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4201M: Grant Likely <grant.likely@secretlab.ca>
4202T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4203S: Maintained
4204F: Documentation/IRQ-domain.txt
4205F: include/linux/irqdomain.h
4206F: kernel/irq/irqdomain.c
4207
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004208ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004209M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004211F: Documentation/isapnp.txt
4212F: drivers/pnp/isapnp/
4213F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004214
Harry Wei71a6d0a2011-05-11 15:13:33 -07004215iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4216M: Peter Jones <pjones@redhat.com>
4217M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4218S: Maintained
4219F: drivers/firmware/iscsi_ibft*
4220
Mike Christie14816b1e2007-11-28 16:22:06 -08004221ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004222M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004223L: open-iscsi@googlegroups.com
4224W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004225T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004227F: drivers/scsi/*iscsi*
4228F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004229
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004231M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004232L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004233L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004235T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004237F: Documentation/isdn/
4238F: drivers/isdn/
4239F: include/linux/isdn.h
4240F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241
4242ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004243M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004244L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245W: http://www.melware.de
4246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004247F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248
Jean Delvared6248702010-03-05 22:17:20 +01004249IT87 HARDWARE MONITORING DRIVER
4250M: Jean Delvare <khali@linux-fr.org>
4251L: lm-sensors@lm-sensors.org
4252S: Maintained
4253F: Documentation/hwmon/it87
4254F: drivers/hwmon/it87.c
4255
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004256IT913X MEDIA DRIVER
4257M: Malcolm Priestley <tvboxspy@gmail.com>
4258L: linux-media@vger.kernel.org
4259W: http://linuxtv.org/
4260Q: http://patchwork.linuxtv.org/project/linux-media/list/
4261S: Maintained
4262F: drivers/media/usb/dvb-usb-v2/it913x*
4263
4264IT913X FE MEDIA DRIVER
4265M: Malcolm Priestley <tvboxspy@gmail.com>
4266L: linux-media@vger.kernel.org
4267W: http://linuxtv.org/
4268Q: http://patchwork.linuxtv.org/project/linux-media/list/
4269S: Maintained
4270F: drivers/media/dvb-frontends/it913x-fe*
4271
Hans Verkuil91821ff2007-12-02 09:35:33 -03004272IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004273M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004274L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004275L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004276T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004277W: http://www.ivtvdriver.org
4278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004279F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004280F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004281F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004282
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004283IX2505V MEDIA DRIVER
4284M: Malcolm Priestley <tvboxspy@gmail.com>
4285L: linux-media@vger.kernel.org
4286W: http://linuxtv.org/
4287Q: http://patchwork.linuxtv.org/project/linux-media/list/
4288S: Maintained
4289F: drivers/media/dvb-frontends/ix2505v*
4290
Guenter Roeck4453d732010-08-09 17:21:08 -07004291JC42.4 TEMPERATURE SENSOR DRIVER
4292M: Guenter Roeck <linux@roeck-us.net>
4293L: lm-sensors@lm-sensors.org
4294S: Maintained
4295F: drivers/hwmon/jc42.c
4296F: Documentation/hwmon/jc42
4297
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004298JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004299M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004300L: jfs-discussion@lists.sourceforge.net
4301W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004302T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004304F: Documentation/filesystems/jfs.txt
4305F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004306
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004307JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004308M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004309L: netdev@vger.kernel.org
4310S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004311F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004312
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004314M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004315L: linux-mtd@lists.infradead.org
4316W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004318F: fs/jffs2/
4319F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320
Josh Triplettde456d32006-07-30 03:04:00 -07004321JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004322M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004323M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004324L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004325S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004326F: fs/jbd/
Theodore Ts'od183e112011-05-26 09:53:09 -04004327F: include/linux/jbd.h
4328
4329JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4330M: "Theodore Ts'o" <tytso@mit.edu>
4331L: linux-ext4@vger.kernel.org
4332S: Maintained
4333F: fs/jbd2/
4334F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004335
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004336JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004337M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004338L: linux-serial@vger.kernel.org
4339S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004340F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004341
Clemens Ladischaf399172011-01-10 16:32:54 +01004342K10TEMP HARDWARE MONITORING DRIVER
4343M: Clemens Ladisch <clemens@ladisch.de>
4344L: lm-sensors@lm-sensors.org
4345S: Maintained
4346F: Documentation/hwmon/k10temp
4347F: drivers/hwmon/k10temp.c
4348
Rudolf Marek4660cb32006-10-08 22:01:26 +02004349K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004350M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004351L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004353F: Documentation/hwmon/k8temp
4354F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355
4356KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004357M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004358L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004359S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004360F: Documentation/kbuild/kconfig-language.txt
4361F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362
Vivek Goyalea6c2082006-05-20 14:59:55 -07004363KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004364M: Vivek Goyal <vgoyal@redhat.com>
4365M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004366L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004367W: http://lse.sourceforge.net/kdump/
4368S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004369F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004370
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004372M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004373L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004375F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376
Michal Marek70fb7ba2010-01-29 14:22:43 +01004377KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004378M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004379T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4380T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004381L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004383F: Documentation/kbuild/
4384F: Makefile
4385F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004386F: scripts/basic/
4387F: scripts/mk*
4388F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389
4390KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004391L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004392W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004393S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004395KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004396M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004397L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004399S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004400F: fs/nfsd/
4401F: include/linux/nfsd/
4402F: fs/lockd/
4403F: fs/nfs_common/
4404F: net/sunrpc/
4405F: include/linux/lockd/
4406F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407
Avi Kivity426d62e2006-12-13 00:34:03 -08004408KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004409M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004410M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004411L: kvm@vger.kernel.org
4412W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004413S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004414F: Documentation/*/kvm.txt
4415F: arch/*/kvm/
4416F: arch/*/include/asm/kvm*
4417F: include/linux/kvm*
4418F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004419
Joerg Roedelad8003d2008-09-10 20:01:07 +02004420KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joerg Roedel7de609c2012-10-29 19:08:21 +01004421M: Joerg Roedel <joro@8bytes.org>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004422L: kvm@vger.kernel.org
4423W: http://kvm.qumranet.com
Joerg Roedel7de609c2012-10-29 19:08:21 +01004424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004425F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004426F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004427
Hollis Blanchard513014b2008-04-16 23:28:08 -05004428KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004429M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004430L: kvm-ppc@vger.kernel.org
4431W: http://kvm.qumranet.com
Michael Ellerman6a7f9722012-10-15 19:01:05 +00004432T: git git://github.com/agraf/linux-2.6.git
Hollis Blanchard513014b2008-04-16 23:28:08 -05004433S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004434F: arch/powerpc/include/asm/kvm*
4435F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004436
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004437KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004438M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004439L: kvm-ia64@vger.kernel.org
4440W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004442F: Documentation/ia64/kvm.txt
4443F: arch/ia64/include/asm/kvm*
4444F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004445
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004446KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004447M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004448M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004449M: linux390@de.ibm.com
4450L: linux-s390@vger.kernel.org
4451W: http://www.ibm.com/developerworks/linux/linux390/
4452S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004453F: Documentation/s390/kvm.txt
4454F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004455F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004456F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004457
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004458KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004459M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004460W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004461L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004463F: include/linux/kexec.h
4464F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004465
David Howellse9714612010-03-29 23:42:09 +01004466KEYS/KEYRINGS:
4467M: David Howells <dhowells@redhat.com>
4468L: keyrings@linux-nfs.org
4469S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004470F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004471F: include/linux/key.h
4472F: include/linux/key-type.h
4473F: include/keys/
4474F: security/keys/
4475
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004476KEYS-TRUSTED
4477M: David Safford <safford@watson.ibm.com>
4478M: Mimi Zohar <zohar@us.ibm.com>
4479L: linux-security-module@vger.kernel.org
4480L: keyrings@linux-nfs.org
4481S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004482F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004483F: include/keys/trusted-type.h
4484F: security/keys/trusted.c
4485F: security/keys/trusted.h
4486
4487KEYS-ENCRYPTED
4488M: Mimi Zohar <zohar@us.ibm.com>
4489M: David Safford <safford@watson.ibm.com>
4490L: linux-security-module@vger.kernel.org
4491L: keyrings@linux-nfs.org
4492S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004493F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004494F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004495F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004496
Jason Wessel5b778da2010-05-20 21:04:28 -05004497KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004498M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004499W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004500L: kgdb-bugreport@lists.sourceforge.net
4501S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004502F: Documentation/DocBook/kgdb.tmpl
4503F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004504F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004505F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004506F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004507F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004508
Pekka Enberg456db8c2008-04-28 22:47:29 +03004509KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004510M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004511M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004512S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004513F: Documentation/kmemcheck.txt
4514F: arch/x86/include/asm/kmemcheck.h
4515F: arch/x86/mm/kmemcheck/
4516F: include/linux/kmemcheck.h
4517F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004518
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004519KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004520M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004521S: Maintained
4522F: Documentation/kmemleak.txt
4523F: include/linux/kmemleak.h
4524F: mm/kmemleak.c
4525F: mm/kmemleak-test.c
4526
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004527KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004528M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4529M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4530M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004531M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004533F: Documentation/kprobes.txt
4534F: include/linux/kprobes.h
4535F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004536
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004537KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004538M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004539W: http://miguelojeda.es/auxdisplay.htm
4540W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004542F: Documentation/auxdisplay/ks0108
4543F: drivers/auxdisplay/ks0108.c
4544F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004545
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004548S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004549F: Documentation/networking/lapb-module.txt
4550F: include/*/lapb.h
4551F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552
4553LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004554M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555L: linux-scsi@vger.kernel.org
4556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004557F: Documentation/scsi/53c700.txt
4558F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559
Richard Purdie263de9b2006-05-15 09:44:16 -07004560LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004561M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004562M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004563L: linux-leds@vger.kernel.org
4564T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004566F: drivers/leds/
4567F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004568
Jean Delvareb0461a42011-06-15 15:08:46 -07004569LEGACY EEPROM DRIVER
4570M: Jean Delvare <khali@linux-fr.org>
4571S: Maintained
4572F: Documentation/misc-devices/eeprom
4573F: drivers/misc/eeprom/eeprom.c
4574
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004576M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577L: legousb-devel@lists.sourceforge.net
4578W: http://legousb.sourceforge.net/
4579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004580F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581
Michael Krufky055616a2012-10-02 00:56:06 -03004582LG2160 MEDIA DRIVER
4583M: Michael Krufky <mkrufky@linuxtv.org>
4584L: linux-media@vger.kernel.org
4585W: http://linuxtv.org/
4586W: http://github.com/mkrufky
4587Q: http://patchwork.linuxtv.org/project/linux-media/list/
4588T: git git://linuxtv.org/mkrufky/tuners.git
4589S: Maintained
4590F: drivers/media/dvb-frontends/lg2160.*
4591
Michael Krufky6f0e7722012-10-02 00:56:00 -03004592LGDT3305 MEDIA DRIVER
4593M: Michael Krufky <mkrufky@linuxtv.org>
4594L: linux-media@vger.kernel.org
4595W: http://linuxtv.org/
4596W: http://github.com/mkrufky
4597Q: http://patchwork.linuxtv.org/project/linux-media/list/
4598T: git git://linuxtv.org/mkrufky/tuners.git
4599S: Maintained
4600F: drivers/media/dvb-frontends/lgdt3305.*
4601
Rusty Russell568a17f2007-10-25 14:12:24 +10004602LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004603M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004604L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004605W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004606S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004607F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004608F: arch/x86/lguest/
4609F: drivers/lguest/
4610F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004611F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004612
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004614M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615W: http://www.ibm.com/linux/ltc/projects/ppc
4616S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004617F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004619LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004620M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4621M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004623L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004624Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004625T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004627F: Documentation/powerpc/
4628F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629
4630LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004631M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004633L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004635F: arch/powerpc/platforms/powermac/
4636F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637
Grant Likely77a76362008-07-12 12:11:43 -06004638LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004639M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004640L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004641T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004643F: arch/powerpc/platforms/512x/
4644F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645
4646LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004647M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004648M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004650L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004651T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004653F: arch/powerpc/platforms/40x/
4654F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655
Grant Likely260c02a2007-10-02 12:15:34 +10004656LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004657M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004658W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004659L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004660T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004662F: arch/powerpc/*/*virtex*
4663F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664
Tom Rinie93adf12005-07-26 12:49:53 -07004665LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004666M: Vitaly Bordug <vitb@kernel.crashing.org>
4667M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004668W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004669L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004670S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004671F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004672
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004674M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004675W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004676L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004677S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004678F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004679F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680
Olof Johanssonab06ff32006-09-06 14:44:54 -05004681LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004682M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004683L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004684S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004685F: arch/powerpc/platforms/pasemi/
4686F: drivers/*/*pasemi*
4687F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004688
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004690M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004691L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692S: Supported
4693
Harry Weia23ce6d2011-02-11 16:52:20 +01004694LIS3LV02D ACCELEROMETER DRIVER
4695M: Eric Piel <eric.piel@tremplin-utc.net>
4696S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004697F: Documentation/misc-devices/lis3lv02d
4698F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004699F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004700
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004701LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004702M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004704F: include/linux/llc.h
4705F: include/net/llc*
4706F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004707
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004708LM73 HARDWARE MONITOR DRIVER
4709M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4710L: lm-sensors@lm-sensors.org
4711S: Maintained
4712F: drivers/hwmon/lm73.c
4713
Jean Delvare156e2d12011-07-25 21:46:11 +02004714LM78 HARDWARE MONITOR DRIVER
4715M: Jean Delvare <khali@linux-fr.org>
4716L: lm-sensors@lm-sensors.org
4717S: Maintained
4718F: Documentation/hwmon/lm78
4719F: drivers/hwmon/lm78.c
4720
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004722M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004723L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004725F: Documentation/hwmon/lm83
4726F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727
4728LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004729M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004730L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004732F: Documentation/hwmon/lm90
4733F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004735LME2510 MEDIA DRIVER
4736M: Malcolm Priestley <tvboxspy@gmail.com>
4737L: linux-media@vger.kernel.org
4738W: http://linuxtv.org/
4739Q: http://patchwork.linuxtv.org/project/linux-media/list/
4740S: Maintained
4741F: drivers/media/usb/dvb-usb-v2/lmedm04*
4742
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004743LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004744M: Peter Zijlstra <peterz@infradead.org>
4745M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004746T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004748F: Documentation/lockdep*.txt
4749F: Documentation/lockstat.txt
4750F: include/linux/lockdep.h
4751F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004752
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004753LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004754M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004755L: linux-ntfs-dev@lists.sourceforge.net
4756W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004758F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004759F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760
Joern Engelef6ada32009-11-20 22:17:12 +01004761LogFS
4762M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304763M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004764L: logfs@logfs.org
4765W: logfs.org
4766S: Maintained
4767F: fs/logfs/
4768
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004769LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304770M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4771M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004772M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004773L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004774L: linux-scsi@vger.kernel.org
4775W: http://www.lsilogic.com/support
4776S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004777F: drivers/message/fusion/
sreekanth.reddy@lsi.com500c1522012-10-09 11:04:22 +05304778F: drivers/scsi/mpt2sas/
4779F: drivers/scsi/mpt3sas/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004780
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004782M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783L: linux-scsi@vger.kernel.org
4784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004785F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786
Guenter Roecke5f5c992010-06-25 11:59:54 -07004787LTC4261 HARDWARE MONITOR DRIVER
4788M: Guenter Roeck <linux@roeck-us.net>
4789L: lm-sensors@lm-sensors.org
4790S: Maintained
4791F: Documentation/hwmon/ltc4261
4792F: drivers/hwmon/ltc4261.c
4793
Mike Frysinger81365c32008-10-29 14:01:12 -07004794LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004795M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004796M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004797M: Cyril Hrubis <chrubis@suse.cz>
4798M: Caspar Zhang <caspar@casparzhang.com>
4799M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004800L: ltp-list@lists.sourceforge.net (subscribers-only)
4801W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004802T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004803T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004804S: Maintained
4805
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004806M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004807M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004808L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004809L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4810W: http://www.linux-m32r.org/
4811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004812F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004813
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004815M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816L: linux-m68k@lists.linux-m68k.org
4817W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004818T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004820F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004821F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822
4823M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004824M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004826L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004828F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829
4830M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004831M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832W: http://www.tazenda.demon.co.uk/phil/linux-hp
4833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004834F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004836M88RS2000 MEDIA DRIVER
4837M: Malcolm Priestley <tvboxspy@gmail.com>
4838L: linux-media@vger.kernel.org
4839W: http://linuxtv.org/
4840Q: http://patchwork.linuxtv.org/project/linux-media/list/
4841S: Maintained
4842F: drivers/media/dvb-frontends/m88rs2000*
4843
Jiri Benc64a327a2007-05-05 11:47:08 -07004844MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004845M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004846L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004847W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004848T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4849T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004851F: Documentation/networking/mac80211-injection.txt
4852F: include/net/mac80211.h
4853F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004854
Stefano Brivio1036d862007-12-23 04:46:27 +01004855MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004856M: Stefano Brivio <stefano.brivio@polimi.it>
4857M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004858L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004859W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004860T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4861T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004863F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004864
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004865MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004866M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004867L: netdev@vger.kernel.org
4868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004869F: drivers/net/macvlan.c
4870F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004871
Michael Kerriskfaf16682005-07-31 22:34:47 -07004872MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004873M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004874W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004875L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004876S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004877
stephen hemminger44c14c12012-04-02 12:59:47 +00004878MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4879M: Mirko Lindner <mlindner@marvell.com>
4880M: Stephen Hemminger <shemminger@vyatta.com>
4881L: netdev@vger.kernel.org
4882S: Maintained
4883F: drivers/net/ethernet/marvell/sk*
4884
Stefano Brivio74cda162007-11-19 20:27:46 +01004885MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004886M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004887L: libertas-dev@lists.infradead.org
4888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004889F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004890
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004891MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004892M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004893L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004894S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004895F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004896F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897
Thomas Petazzoni370b8ed2012-09-04 15:06:42 +02004898MARVELL MVNETA ETHERNET DRIVER
4899M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4900L: netdev@vger.kernel.org
4901S: Maintained
4902F: drivers/net/ethernet/marvell/mvneta.*
4903
Bing Zhaofcad5842011-07-13 13:11:58 -07004904MARVELL MWIFIEX WIRELESS DRIVER
4905M: Bing Zhao <bzhao@marvell.com>
4906L: linux-wireless@vger.kernel.org
4907S: Maintained
4908F: drivers/net/wireless/mwifiex/
4909
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004910MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004911M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004912L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004913S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004914F: drivers/net/wireless/mwl8k.c
4915
Pierre Ossman2a695672009-03-16 19:52:26 +01004916MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004917M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004918S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004919F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004920
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004922L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004923S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004924F: drivers/video/matrox/matroxfb_*
4925F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926
Guenter Roeckca462082012-06-01 23:28:23 -07004927MAX16065 HARDWARE MONITOR DRIVER
4928M: Guenter Roeck <linux@roeck-us.net>
4929L: lm-sensors@lm-sensors.org
4930S: Maintained
4931F: Documentation/hwmon/max16065
4932F: drivers/hwmon/max16065.c
4933
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004934MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004935M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004936L: lm-sensors@lm-sensors.org
4937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004938F: Documentation/hwmon/max6650
4939F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004940
Joe Perches127c49a2009-04-08 08:34:04 -07004941MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004942M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07004943P: LinuxTV.org Project
4944L: linux-media@vger.kernel.org
4945W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004946Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004947T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07004948S: Maintained
4949F: Documentation/dvb/
4950F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004951F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004952F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004953F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004954F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02004955F: include/uapi/linux/dvb/
4956F: include/uapi/linux/videodev2.h
4957F: include/uapi/linux/media.h
4958F: include/uapi/linux/v4l2-*
4959F: include/uapi/linux/meye.h
4960F: include/uapi/linux/ivtv*
4961F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004962
4963MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004964M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004965L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004966W: http://megaraid.lsilogic.com
4967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004968F: Documentation/scsi/megaraid.txt
4969F: drivers/scsi/megaraid.*
4970F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004971
Amir Vadai2c46c9d2012-12-02 03:49:21 +00004972MELLANOX ETHERNET DRIVER (mlx4_en)
4973M: Amir Vadai <amirv@mellanox.com>
4974L: netdev@vger.kernel.org
4975S: Supported
4976W: http://www.mellanox.com
4977Q: http://patchwork.ozlabs.org/project/netdev/list/
4978F: drivers/net/ethernet/mellanox/mlx4/en_*
4979
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004980MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982W: http://www.linux-mm.org
4983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004984F: include/linux/mm.h
4985F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004986
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004987MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004988M: Johannes Weiner <hannes@cmpxchg.org>
4989M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004990M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004991M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004992L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004993L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004995F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004996F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004997
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004999M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005001W: http://www.linux-mtd.infradead.org/
5002Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08005003T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005005F: drivers/mtd/
5006F: include/linux/mtd/
5007F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008
Michal Simekc6375b02009-03-27 14:25:52 +01005009MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005010M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005011L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005012W: http://www.monstr.eu/fdt/
5013T: git git://git.monstr.eu/linux-2.6-microblaze.git
5014S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005015F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016
5017MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005018M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005020F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021
5022MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005023M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005025W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005026T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005027Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005028S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005029F: Documentation/mips/
5030F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005033M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005035F: include/linux/module.h
5036F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037
5038MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005040S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005041F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005042F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005043F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044
Pavel Pisac58ff042007-05-16 01:10:41 +02005045MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005046M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005047L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02005048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005049F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02005050
Jiri Slabyb9705b62008-04-30 00:53:48 -07005051MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005052M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005054F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005055F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005056
Alexey Klimov889b2f82012-11-16 17:43:59 -03005057MR800 AVERMEDIA USB FM RADIO DRIVER
5058M: Alexey Klimov <klimov.linux@gmail.com>
5059L: linux-media@vger.kernel.org
5060T: git git://linuxtv.org/media_tree.git
5061S: Maintained
5062F: drivers/media/radio/radio-mr800.c
5063
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005064MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07005065M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05005066L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005068F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005069
Anisse Astier0f1006b2009-12-17 11:28:49 +01005070MSI WMI SUPPORT
5071M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05005072L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005073S: Supported
5074F: drivers/platform/x86/msi-wmi.c
5075
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005076MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005077M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005078T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005079S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005080F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005081
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005082MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005083M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005084L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005085T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005087F: drivers/mmc/
5088F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005089
David Brownell15a05802007-08-08 09:12:54 -07005090MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005091S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005092F: drivers/mmc/host/mmc_spi.c
5093F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005094
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005096M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005098F: Documentation/sound/oss/MultiSound
5099F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100
Jiri Slabyd7354102006-12-08 02:38:35 -08005101MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005102S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005103F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005104F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005105
Felipe Balbi550a7372008-07-24 12:27:36 +03005106MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005107M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005108L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005109T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005111F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005112
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005113MXL5007T MEDIA DRIVER
5114M: Michael Krufky <mkrufky@linuxtv.org>
5115L: linux-media@vger.kernel.org
5116W: http://linuxtv.org/
5117W: http://github.com/mkrufky
5118Q: http://patchwork.linuxtv.org/project/linux-media/list/
5119T: git git://linuxtv.org/mkrufky/tuners.git
5120S: Maintained
5121F: drivers/media/tuners/mxl5007t.*
5122
Brice Goglin2d3cf582008-05-17 12:45:36 +02005123MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005124M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005125L: netdev@vger.kernel.org
5126W: http://www.myri.com/scs/download-Myri10GE.html
5127S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005128F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005129
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005131S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005132F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133
Daniel Mack23dc05a2011-05-18 11:28:38 +02005134NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5135M: Daniel Mack <zonque@gmail.com>
5136S: Maintained
5137L: alsa-devel@alsa-project.org
5138W: http://www.native-instruments.com
5139F: sound/usb/caiaq/
5140
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005142M: Petr Vandrovec <petr@vandrovec.name>
5143S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005144F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145
5146NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005147M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148L: linux-scsi@vger.kernel.org
5149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005150F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005152NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005153M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005154L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005155W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005156S: Supported
5157F: drivers/infiniband/hw/nes/
5158
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005159NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05005160M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07005161L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005163F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005164
Jon Masonb2f5a052010-07-15 08:47:27 +00005165NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005166M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005167L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005168S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005169F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005170F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005171F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005172
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174P: Harald Welte
5175P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005176M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005177M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005178L: netfilter-devel@vger.kernel.org
5179L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005180L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181W: http://www.netfilter.org/
5182W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005183T: git git://1984.lsi.us.es/nf
5184T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005186F: include/linux/netfilter*
5187F: include/linux/netfilter/
5188F: include/net/netfilter/
5189F: net/*/netfilter.c
5190F: net/*/netfilter/
5191F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192
Paul Moore4cc67732006-09-25 15:57:13 -07005193NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005194M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005195W: http://netlabel.sf.net
5196L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005197S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005198F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005199F: include/net/netlabel.h
5200F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005201
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005203M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005205W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005207F: include/linux/netrom.h
5208F: include/net/netrom.h
5209F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005211NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005212M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005214F: Documentation/blockdev/nbd.txt
5215F: drivers/block/nbd.c
5216F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217
Neil Horman6e436502009-10-05 03:56:55 +00005218NETWORK DROP MONITOR
5219M: Neil Horman <nhorman@tuxdriver.com>
5220L: netdev@vger.kernel.org
5221S: Maintained
5222W: https://fedorahosted.org/dropwatch/
5223F: net/core/drop_monitor.c
5224
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005226M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005227L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005228W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005229Q: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005230T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5231T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005233F: net/
5234F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005235F: include/linux/in.h
5236F: include/linux/net.h
5237F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238
5239NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005240M: "David S. Miller" <davem@davemloft.net>
5241M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005242M: James Morris <jmorris@namei.org>
5243M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5244M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005245L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005246T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005248F: net/ipv4/
5249F: net/ipv6/
5250F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005251F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252
David S. Miller73b76562012-10-16 14:08:40 -04005253NETWORKING [IPSEC]
5254M: Steffen Klassert <steffen.klassert@secunet.com>
5255M: Herbert Xu <herbert@gondor.apana.org.au>
5256M: "David S. Miller" <davem@davemloft.net>
5257L: netdev@vger.kernel.org
5258T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5259S: Maintained
5260F: net/xfrm/
5261F: net/key/
5262F: net/ipv4/xfrm*
5263F: net/ipv6/xfrm*
5264F: include/uapi/linux/xfrm.h
5265F: include/net/xfrm.h
5266
James Morris10e2ff12007-08-25 14:41:28 -07005267NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005268M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005269L: netdev@vger.kernel.org
5270S: Maintained
5271
John W. Linville29f8f632006-01-18 14:52:48 -08005272NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005273M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005274L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005275Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005276T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005277S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005278F: net/mac80211/
5279F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005280F: net/wireless/
5281F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005282F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005283F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005284F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005285
Joe Perches788873a2009-04-16 09:38:45 +00005286NETWORKING DRIVERS
5287L: netdev@vger.kernel.org
5288W: http://www.linuxfoundation.org/en/Net
Joe Perches11e98022012-11-24 11:18:25 +00005289Q: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perches08deed12012-03-23 15:01:57 -07005290T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5291T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005292S: Odd Fixes
5293F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005294F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005295F: include/linux/netdevice.h
5296F: include/linux/arcdevice.h
5297F: include/linux/etherdevice.h
5298F: include/linux/fcdevice.h
5299F: include/linux/fddidevice.h
5300F: include/linux/hippidevice.h
5301F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005302
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005303NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005304M: Sony Chacko <sony.chacko@qlogic.com>
5305M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005306L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005307W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005308S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005309F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005310
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005311NFC SUBSYSTEM
5312M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5313M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5314M: Samuel Ortiz <sameo@linux.intel.com>
5315L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005316L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005317S: Maintained
5318F: net/nfc/
5319F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005320F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005321F: drivers/nfc/
Marcel Holtmann08eaa1e2012-10-24 11:45:38 -07005322F: include/linux/platform_data/pn544.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005324NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005325M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005326L: linux-nfs@vger.kernel.org
5327W: http://client.linux-nfs.org
5328T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005330F: fs/lockd/
5331F: fs/nfs/
5332F: fs/nfs_common/
5333F: net/sunrpc/
5334F: include/linux/lockd/
5335F: include/linux/nfs*
5336F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337
5338NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005339M: Jan-Pascal van Best <janpascal@vanbest.org>
5340M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005341L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005343F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005345NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005346M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005347L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005348W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005349T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005350S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005351F: Documentation/filesystems/nilfs2.txt
5352F: fs/nilfs2/
5353F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005354
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005356M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005359F: Documentation/scsi/NinjaSCSI.txt
5360F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361
5362NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005363M: GOTO Masanori <gotom@debian.or.jp>
5364M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005367F: Documentation/scsi/NinjaSCSI.txt
5368F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005371M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005373W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005374T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005375S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005376F: Documentation/filesystems/ntfs.txt
5377F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005379NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005380M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005381L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005383F: drivers/video/riva/
5384F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385
Tony Lindgrenf5525782009-05-28 13:23:53 -07005386OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005387M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005388L: linux-omap@vger.kernel.org
5389W: http://www.muru.com/linux/omap/
5390W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005391Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005392T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005393S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005394F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005395F: drivers/i2c/busses/i2c-omap.c
5396F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005397
5398OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005399M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005400L: linux-omap@vger.kernel.org
5401S: Maintained
5402F: arch/arm/*omap*/*clock*
5403
5404OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005405M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005406L: linux-omap@vger.kernel.org
5407S: Maintained
5408F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005409F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005410
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005411OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5412M: Rajendra Nayak <rnayak@ti.com>
5413M: Paul Walmsley <paul@pwsan.com>
5414L: linux-omap@vger.kernel.org
5415S: Maintained
5416F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5417F: arch/arm/mach-omap2/powerdomain44xx.c
5418F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5419F: arch/arm/mach-omap2/clockdomain44xx.c
5420
Tony Lindgrenf5525782009-05-28 13:23:53 -07005421OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005422M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005423M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005424L: alsa-devel@alsa-project.org (subscribers-only)
5425L: linux-omap@vger.kernel.org
5426S: Maintained
5427F: sound/soc/omap/
5428
5429OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005430M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005431L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005432L: linux-omap@vger.kernel.org
5433S: Maintained
5434F: drivers/video/omap/
5435
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005436OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005437M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005438L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005439L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005440S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005441F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005442F: Documentation/arm/OMAP/DSS
5443
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005444OMAP HARDWARE SPINLOCK SUPPORT
5445M: Ohad Ben-Cohen <ohad@wizery.com>
5446L: linux-omap@vger.kernel.org
5447S: Maintained
5448F: drivers/hwspinlock/omap_hwspinlock.c
5449F: arch/arm/mach-omap2/hwspinlock.c
5450
Tony Lindgrenf5525782009-05-28 13:23:53 -07005451OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005452M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005453L: linux-omap@vger.kernel.org
5454S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005455F: drivers/mmc/host/omap.c
5456
5457OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305458M: Venkatraman S <svenkatr@ti.com>
5459L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005460L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305461S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005462F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005463
5464OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005465M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005466S: Maintained
5467F: drivers/char/hw_random/omap-rng.c
5468
Paul Walmsleyf400c822010-12-06 19:08:54 -07005469OMAP HWMOD SUPPORT
5470M: Benoît Cousson <b-cousson@ti.com>
5471M: Paul Walmsley <paul@pwsan.com>
5472L: linux-omap@vger.kernel.org
5473S: Maintained
5474F: arch/arm/mach-omap2/omap_hwmod.c
5475F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5476
5477OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5478M: Benoît Cousson <b-cousson@ti.com>
5479L: linux-omap@vger.kernel.org
5480S: Maintained
5481F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5482
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005483OMAP IMAGE SIGNAL PROCESSOR (ISP)
5484M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5485L: linux-media@vger.kernel.org
5486S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005487F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005488
Tony Lindgrenf5525782009-05-28 13:23:53 -07005489OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005490M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005491L: linux-usb@vger.kernel.org
5492L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005493T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005494S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005495F: drivers/usb/*/*omap*
5496F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005497
Kevin Hilman6d994712012-07-16 10:05:07 -07005498OMAP GPIO DRIVER
5499M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5500M: Kevin Hilman <khilman@ti.com>
5501L: linux-omap@vger.kernel.org
5502S: Maintained
5503F: drivers/gpio/gpio-omap.c
5504
Bob Copeland0ad122d2008-07-25 19:45:18 -07005505OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005506M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005507L: linux-karma-devel@lists.sourceforge.net
5508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005509F: Documentation/filesystems/omfs.txt
5510F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005511
Harald Weltec1986ee2005-11-13 16:06:29 -08005512OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005513M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005515F: drivers/char/pcmcia/cm4000_cs.c
5516F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005517
Harald Welte77c44ab2005-11-13 16:06:26 -08005518OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005519M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005521F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005522
Jonathan Corbet77d51402007-03-22 19:44:17 -03005523OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005524M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005525L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005526T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005527S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005528F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005529
Thomas Gleixner431bca72007-05-02 09:31:35 +02005530ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005531M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005532L: linux-mtd@lists.infradead.org
5533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005534F: drivers/mtd/onenand/
5535F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005536
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005538M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539L: osst-users@lists.sourceforge.net
5540L: linux-scsi@vger.kernel.org
5541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005542F: drivers/scsi/osst*
5543F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005545OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005546M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005547L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005549F: Documentation/i2c/busses/i2c-ocores
5550F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005551
Grant Likely860c44c2009-10-26 16:49:49 -07005552OPEN FIRMWARE AND FLATTENED DEVICE TREE
5553M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005554M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005555L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005556W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005557T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005558S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005559F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005560F: drivers/of
5561F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005562F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005563K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005564K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005565
Jonas Bonn19f9d392011-06-04 22:00:38 +03005566OPENRISC ARCHITECTURE
5567M: Jonas Bonn <jonas@southpole.se>
5568W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005569L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005570S: Maintained
5571T: git git://openrisc.net/~jonas/linux
5572F: arch/openrisc
5573
Jesse Grossccb13522011-10-25 19:26:31 -07005574OPENVSWITCH
5575M: Jesse Gross <jesse@nicira.com>
5576L: dev@openvswitch.org
5577W: http://openvswitch.org
5578T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5579S: Maintained
5580F: net/openvswitch/
5581
Clemens Ladischaf399172011-01-10 16:32:54 +01005582OPL4 DRIVER
5583M: Clemens Ladisch <clemens@ladisch.de>
5584L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5585T: git git://git.alsa-project.org/alsa-kernel.git
5586S: Maintained
5587F: sound/drivers/opl4/
5588
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005590M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591L: oprofile-list@lists.sf.net
5592S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005593F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005594F: arch/*/oprofile/
5595F: drivers/oprofile/
5596F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005598ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005599M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005600M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005601L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5602W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005603T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005604S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005605F: Documentation/filesystems/ocfs2.txt
5606F: Documentation/filesystems/dlmfs.txt
5607F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005608
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005610L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005611W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005612W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005613S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005614F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005616OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005617M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005618M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005619L: osd-dev@open-osd.org
5620W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005621T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005622S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005623F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005624F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005625F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005626
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005627P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005628M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005629L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005630W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005632F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005633
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005634PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005635M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005636L: netdev@vger.kernel.org
5637S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005638F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005639
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005640PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005641M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005642L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005644F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005645
Steffen Klassert48fc2672010-08-13 10:10:46 -04005646PADATA PARALLEL EXECUTION MECHANISM
5647M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005648L: linux-crypto@vger.kernel.org
5649S: Maintained
5650F: kernel/padata.c
5651F: include/linux/padata.h
5652F: Documentation/padata.txt
5653
Harald Welte709ee532008-09-23 17:46:57 +02005654PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005655M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005656L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005658F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005659
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005660PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005661M: David Howells <dhowells@redhat.com>
5662M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005663L: linux-am33-list@redhat.com (moderated for non-subscribers)
5664W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005666F: Documentation/mn10300/
5667F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005668
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005670L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005671S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005672F: drivers/parport/
5673F: include/linux/parport*.h
5674F: drivers/char/ppdev.c
5675F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005677PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005678M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005679M: Chris Wright <chrisw@sous-sol.org>
5680M: Alok Kataria <akataria@vmware.com>
5681M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005682L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005683S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005684F: Documentation/ia64/paravirt_ops.txt
5685F: arch/*/kernel/paravirt*
5686F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005687
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005689M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005690L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691W: http://www.torque.net/linux-pp.html
5692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005693F: Documentation/blockdev/paride.txt
5694F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695
5696PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005697M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005698M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005699L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005701Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005702T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005704F: arch/parisc/
5705F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706
Jim Cromie1662d322006-10-06 00:43:59 -07005707PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005708M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005709L: lm-sensors@lm-sensors.org
5710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005711F: Documentation/hwmon/pc87360
5712F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005713
5714PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005715M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005717F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005718
Jean Delvare1ad107f2010-08-14 21:09:00 +02005719PC87427 HARDWARE MONITORING DRIVER
5720M: Jean Delvare <khali@linux-fr.org>
5721L: lm-sensors@lm-sensors.org
5722S: Maintained
5723F: Documentation/hwmon/pc87427
5724F: drivers/hwmon/pc87427.c
5725
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005726PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005727M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005728S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005729F: drivers/leds/leds-pca9532.c
5730F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005731
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005732PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005733M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005734L: linux-i2c@vger.kernel.org
5735S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005736F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005737
Wolfram Sanga1867d32009-09-18 22:45:51 +02005738PCA9564/PCA9665 I2C BUS DRIVER
5739M: Wolfram Sang <w.sang@pengutronix.de>
5740L: linux-i2c@vger.kernel.org
5741S: Maintained
5742F: drivers/i2c/algos/i2c-algo-pca.c
5743F: drivers/i2c/busses/i2c-pca-*
5744F: include/linux/i2c-algo-pca.h
5745F: include/linux/i2c-pca-platform.h
5746
Khalid Aziz3971dae2012-04-12 12:49:13 -07005747PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005748M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005749S: Maintained
5750F: drivers/firmware/pcdp.*
5751
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005752PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005753M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005754L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005755S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005756F: Documentation/PCI/pci-error-recovery.txt
5757F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005758
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005760M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005761L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005762Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005763T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005765F: Documentation/PCI/
5766F: drivers/pci/
5767F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005770P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005771L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005772W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005773T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005775F: Documentation/pcmcia/
5776F: drivers/pcmcia/
5777F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778
5779PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005780M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005781L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005783F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784
Steffen Klassert48fc2672010-08-13 10:10:46 -04005785PCRYPT PARALLEL CRYPTO ENGINE
5786M: Steffen Klassert <steffen.klassert@secunet.com>
5787L: linux-crypto@vger.kernel.org
5788S: Maintained
5789F: crypto/pcrypt.c
5790F: include/crypto/pcrypt.h
5791
Tejun Heoe72df0b2010-12-10 17:02:49 +01005792PER-CPU MEMORY ALLOCATOR
5793M: Tejun Heo <tj@kernel.org>
5794M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005795T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5796S: Maintained
5797F: include/linux/percpu*.h
5798F: mm/percpu*.c
5799F: arch/*/include/asm/percpu.h
5800
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005801PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005802M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005804F: include/linux/delayacct.h
5805F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005806
Ingo Molnar57c0c152009-09-21 12:20:38 +02005807PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005808M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5809M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005810M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005811M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005812T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005813S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005814F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005815F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005816F: arch/*/kernel/perf_event*.c
5817F: arch/*/kernel/*/perf_event*.c
5818F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005819F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005820F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005821F: arch/*/kernel/perf_callchain.c
5822F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005823
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005824PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005825M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005826L: linux-abi-devel@lists.sourceforge.net
5827S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005828F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005829
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005830PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005831M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005832S: Supported
5833F: Documentation/networking/phonet.txt
5834F: include/linux/phonet.h
5835F: include/net/phonet/
5836F: net/phonet/
5837
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005839M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840L: linux-mtd@lists.infradead.org
5841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005842F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843
Bruno Prémontefdbb102012-07-30 21:39:03 +02005844PICOLCD HID DRIVER
5845M: Bruno Prémont <bonbons@linux-vserver.org>
5846L: linux-input@vger.kernel.org
5847S: Maintained
5848F: drivers/hid/hid-picolcd*
5849
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005850PICOXCELL SUPPORT
5851M: Jamie Iles <jamie@jamieiles.com>
5852L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5853T: git git://github.com/jamieiles/linux-2.6-ji.git
5854S: Supported
5855F: arch/arm/mach-picoxcell
5856F: drivers/*/picoxcell*
5857F: drivers/*/*/picoxcell*
5858
Linus Walleij2744e8a2011-05-02 20:50:54 +02005859PIN CONTROL SUBSYSTEM
5860M: Linus Walleij <linus.walleij@linaro.org>
5861S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005862F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005863F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005864
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02005865PIN CONTROLLER - ATMEL AT91
5866M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
5867L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5868S: Maintained
5869F: drivers/pinctrl/pinctrl-at91.c
5870
Viresh Kumardeda8282012-03-28 22:27:07 +05305871PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005872M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305873L: spear-devel@list.st.com
5874L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5875W: http://www.st.com/spear
5876S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005877F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305878
Peter Osterlund249a6772005-09-27 21:45:30 -07005879PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005880M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005882F: drivers/block/pktcdvd.c
5883F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005884
GuanXuetaob31d8272011-01-16 00:35:49 +08005885PKUNITY SOC DRIVERS
5886M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5887W: http://mprc.pku.edu.cn/~guanxuetao/linux
5888S: Maintained
5889T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5890F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005891F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005892F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005893F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005894
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005895PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005896M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005897L: lm-sensors@lm-sensors.org
5898W: http://www.lm-sensors.org/
5899W: http://www.roeck-us.net/linux/drivers/
5900T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5901S: Maintained
5902F: Documentation/hwmon/pmbus
5903F: drivers/hwmon/pmbus/
5904F: include/linux/i2c/pmbus.h
5905
Anil Ravindranath89a36812009-08-25 17:35:18 -07005906PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005907M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005908L: linux-scsi@vger.kernel.org
5909W: http://www.pmc-sierra.com/
5910S: Supported
5911F: drivers/scsi/pmcraid.*
5912
jack wangdbf9bfe2009-10-14 16:19:21 +08005913PMC SIERRA PM8001 DRIVER
5914M: jack_wang@usish.com
5915M: lindar_liu@usish.com
5916L: linux-scsi@vger.kernel.org
5917S: Supported
5918F: drivers/scsi/pm8001/
5919
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005921M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005922T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005924F: fs/timerfd.c
5925F: include/linux/timer*
5926F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927
Anton Vorontsov3be86142007-07-15 04:43:36 +04005928POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005929M: Anton Vorontsov <cbou@mail.ru>
5930M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005931T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005933F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005934F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005935
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005937M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005938M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005940F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941
Vitaly Wool999445d2007-01-04 13:07:03 +01005942PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005943M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005944L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005946F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005947
Linus Torvalds1da177e2005-04-16 15:20:36 -07005948PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005949M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950L: linux-ppp@vger.kernel.org
5951S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005952F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953
5954PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005955M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005957F: net/atm/pppoatm.c
5958F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959
5960PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005961M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005963F: drivers/net/ppp/pppoe.c
5964F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965
James Chapmana6d23702007-06-27 15:53:17 -07005966PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005967M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005968S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005969F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005970F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005971
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005972PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005973M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005974W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5975L: linuxpps@ml.enneenne.com (subscribers-only)
5976S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005977F: Documentation/pps/
5978F: drivers/pps/
5979F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005980
Harry Wei71a6d0a2011-05-11 15:13:33 -07005981PPTP DRIVER
5982M: Dmitry Kozlov <xeb@mail.ru>
5983L: netdev@vger.kernel.org
5984S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005985F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005986W: http://sourceforge.net/projects/accel-pptp
5987
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005989M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990L: kpreempt-tech@lists.sourceforge.net
5991W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5992S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005993F: Documentation/preempt-locking.txt
5994F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995
5996PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005997M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005998L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005999W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006000S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006001F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006003PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006004M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006005L: linux-ide@vger.kernel.org
6006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006007F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006008
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006009PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006010M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006011L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006012L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006013S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006014F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006015
Geoff Levandf58a9d12006-11-23 00:46:51 +01006016PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006017M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006018L: linuxppc-dev@lists.ozlabs.org
6019L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006021F: arch/powerpc/boot/ps3*
6022F: arch/powerpc/include/asm/lv1call.h
6023F: arch/powerpc/include/asm/ps3*.h
6024F: arch/powerpc/platforms/ps3/
6025F: drivers/*/ps3*
6026F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006027F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006028F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006029F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006030
Jim Pariscffb4add2009-01-06 11:32:10 +00006031PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006032M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006033L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006034S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006035F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006036
Anton Vorontsov8defe592012-08-03 18:07:20 -07006037PSTORE FILESYSTEM
6038M: Anton Vorontsov <cbouatmailru@gmail.com>
6039M: Colin Cross <ccross@android.com>
6040M: Kees Cook <keescook@chromium.org>
6041M: Tony Luck <tony.luck@intel.com>
6042S: Maintained
6043T: git git://git.infradead.org/users/cbou/linux-pstore.git
6044F: fs/pstore/
6045F: include/linux/pstore*
6046F: drivers/firmware/efivars.c
6047F: drivers/acpi/apei/erst.c
6048
Richard Cochran7fbc4152012-03-10 01:55:53 +00006049PTP HARDWARE CLOCK SUPPORT
6050M: Richard Cochran <richardcochran@gmail.com>
6051S: Maintained
6052W: http://linuxptp.sourceforge.net/
6053F: Documentation/ABI/testing/sysfs-ptp
6054F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006055F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006056F: drivers/net/phy/dp83640*
6057F: drivers/ptp/*
6058F: include/linux/ptp_cl*
6059
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006060PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006061M: Roland McGrath <roland@redhat.com>
6062M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006063S: Maintained
6064F: include/asm-generic/syscall.h
6065F: include/linux/ptrace.h
6066F: include/linux/regset.h
6067F: include/linux/tracehook.h
6068F: kernel/ptrace.c
6069
Michael Krufky83202042006-07-03 00:24:18 -07006070PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006071M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006072L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006073L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006074W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006075T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006077F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006078F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006079
Hans de Goede39532e62012-11-04 17:05:59 -03006080PWC WEBCAM DRIVER
6081M: Hans de Goede <hdegoede@redhat.com>
6082L: linux-media@vger.kernel.org
6083T: git git://linuxtv.org/media_tree.git
6084S: Maintained
6085F: drivers/media/usb/pwc/*
6086
Thierry Reding200efed2012-03-27 13:16:18 +02006087PWM SUBSYSTEM
6088M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006089L: linux-kernel@vger.kernel.org
6090S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006091W: http://gitorious.org/linux-pwm
6092T: git git://gitorious.org/linux-pwm/linux-pwm.git
6093F: Documentation/pwm.txt
6094F: Documentation/devicetree/bindings/pwm/
6095F: include/linux/pwm.h
6096F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006097F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006098F: drivers/video/backlight/pwm_bl.c
6099F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006100
Eric Miao30ec2612008-06-12 15:21:41 -07006101PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006102M: Eric Miao <eric.y.miao@gmail.com>
6103M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006104M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006105L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006106T: git git://github.com/hzhuang1/linux.git
6107T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006109F: arch/arm/mach-pxa/
6110F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006111F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006112F: drivers/usb/gadget/pxa2*
6113F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006114F: sound/arm/pxa*
6115F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006117MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006118M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006119M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006120L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006121T: git git://github.com/hzhuang1/linux.git
6122T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006123S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006124F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006125
Pierre Ossman272f1332007-05-14 21:25:26 +02006126PXA MMCI DRIVER
6127S: Orphan
6128
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006129PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006130M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006131L: rtc-linux@googlegroups.com
6132S: Maintained
6133
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006134QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006135M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006136L: linux-rdma@vger.kernel.org
6137S: Supported
6138F: drivers/infiniband/hw/qib/
6139
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006140QLOGIC QLA1280 SCSI DRIVER
6141M: Michael Reed <mdr@sgi.com>
6142L: linux-scsi@vger.kernel.org
6143S: Maintained
6144F: drivers/scsi/qla1280.[ch]
6145
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006147M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006148M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006149L: linux-scsi@vger.kernel.org
6150S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006151F: Documentation/scsi/LICENSE.qla2xxx
6152F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153
Ravi Anand883c98f2010-04-28 11:45:49 +05306154QLOGIC QLA4XXX iSCSI DRIVER
6155M: Ravi Anand <ravi.anand@qlogic.com>
6156M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6157M: iscsi-driver@qlogic.com
6158L: linux-scsi@vger.kernel.org
6159S: Supported
6160F: drivers/scsi/qla4xxx/
6161
Ron Mercer5a4faa872006-07-25 00:40:21 -07006162QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006163M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006164M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006165M: linux-driver@qlogic.com
6166L: netdev@vger.kernel.org
6167S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006168F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006169F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006170
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006171QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006172M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006173M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006174M: linux-driver@qlogic.com
6175L: netdev@vger.kernel.org
6176S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006177F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006178
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006179QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006180M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006181M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006182M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006183L: netdev@vger.kernel.org
6184S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006185F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006186
Linus Torvalds1da177e2005-04-16 15:20:36 -07006187QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006188M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189W: http://www.alarsen.net/linux/qnx4fs/
6190S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006191F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07006192F: include/linux/qnx4_fs.h
6193F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006194
Antti Palosaari91952bc2012-10-01 12:28:46 -03006195QT1010 MEDIA DRIVER
6196M: Antti Palosaari <crope@iki.fi>
6197L: linux-media@vger.kernel.org
6198W: http://linuxtv.org/
6199W: http://palosaari.fi/linux/
6200Q: http://patchwork.linuxtv.org/project/linux-media/list/
6201T: git git://linuxtv.org/anttip/media_tree.git
6202S: Maintained
6203F: drivers/media/tuners/qt1010*
6204
Richard Kuo4f4567c2011-10-31 18:56:38 -05006205QUALCOMM HEXAGON ARCHITECTURE
6206M: Richard Kuo <rkuo@codeaurora.org>
6207L: linux-hexagon@vger.kernel.org
6208S: Supported
6209F: arch/hexagon/
6210
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006211RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006212M: Yehuda Sadeh <yehuda@inktank.com>
6213M: Sage Weil <sage@inktank.com>
6214M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006215M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006216W: http://ceph.com/
6217T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006218S: Supported
6219F: drivers/block/rbd.c
6220F: drivers/block/rbd_types.h
6221
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006223M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006224L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006226F: drivers/video/aty/radeon*
6227F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228
Hans de Goedec6c9b342012-11-04 17:03:58 -03006229RADIOSHARK RADIO DRIVER
6230M: Hans de Goede <hdegoede@redhat.com>
6231L: linux-media@vger.kernel.org
6232T: git git://linuxtv.org/media_tree.git
6233S: Maintained
6234F: drivers/media/radio/radio-shark.c
6235
6236RADIOSHARK2 RADIO DRIVER
6237M: Hans de Goede <hdegoede@redhat.com>
6238L: linux-media@vger.kernel.org
6239T: git git://linuxtv.org/media_tree.git
6240S: Maintained
6241F: drivers/media/radio/radio-shark2.c
6242F: drivers/media/radio/radio-tea5777.c
6243
Linus Torvalds1da177e2005-04-16 15:20:36 -07006244RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006245M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006246L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006248F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249
Randy Dunlape7839f22008-10-12 16:11:45 -07006250RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006251P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006252M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006253M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006254M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006255L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006256L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006257W: http://rt2x00.serialmonkey.com/
6258S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006259T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006260F: drivers/net/wireless/rt2x00/
6261
Nick Piggin9db55792008-02-08 04:19:49 -08006262RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006263M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006265F: Documentation/blockdev/ramdisk.txt
6266F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006267
Matt Mackall9e95ce22005-04-16 15:25:56 -07006268RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006269M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006271F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006272
Matt Porter394b7012005-11-07 01:00:15 -08006273RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006274M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006275M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006277F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006278
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006279RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006280L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006281S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006282F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006283
6284RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006285M: Josh Triplett <josh@freedesktop.org>
6286M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006287S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006288T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006289F: Documentation/RCU/torture.txt
6290F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006291
Florian Fainellic1f766b2008-02-06 22:39:44 +01006292RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006293M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006294S: Maintained
6295
Florian Fainellidb17f392007-12-19 11:30:30 +01006296RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006297M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006298L: netdev@vger.kernel.org
6299S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006300F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006301
Andy Grovera09ed662009-02-24 15:30:41 +00006302RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006303M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006304L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006305S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006306F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006307
Josh Triplett595182b2006-10-04 02:17:21 -07006308READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006309M: Dipankar Sarma <dipankar@in.ibm.com>
6310M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006311W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006312S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006313T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006314F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006315X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006316F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006317F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006318X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006319
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006320REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006321M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006322L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006323Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006325F: Documentation/rtc.txt
6326F: drivers/rtc/
6327F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006328
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006330L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006331S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006332F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333
Mark Brownb83a3132011-05-11 19:59:58 +02006334REGISTER MAP ABSTRACTION
6335M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6336T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6337S: Supported
6338F: drivers/base/regmap/
6339F: include/linux/regmap.h
6340
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006341REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6342M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006343T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006344S: Maintained
6345F: drivers/remoteproc/
6346F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006347F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006348
Ivo van Doorne08976452008-04-12 19:23:55 +02006349RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006350M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006351L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006352W: http://wireless.kernel.org/
6353T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6354T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006355S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006356F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006357F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006358
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006359RICOH SMARTMEDIA/XD DRIVER
6360M: Maxim Levitsky <maximlevitsky@gmail.com>
6361S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006362F: drivers/mtd/nand/r852.c
6363F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006364
Maxim Levitsky92634122011-03-25 01:56:59 -07006365RICOH R5C592 MEMORYSTICK DRIVER
6366M: Maxim Levitsky <maximlevitsky@gmail.com>
6367S: Maintained
6368F: drivers/memstick/host/r592.*
6369
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370ROCKETPORT DRIVER
6371P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372W: http://www.comtrol.com
6373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006374F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006375F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376
6377ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006378M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006380W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006382F: include/linux/rose.h
6383F: include/net/rose.h
6384F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385
Antti Palosaari91952bc2012-10-01 12:28:46 -03006386RTL2830 MEDIA DRIVER
6387M: Antti Palosaari <crope@iki.fi>
6388L: linux-media@vger.kernel.org
6389W: http://linuxtv.org/
6390W: http://palosaari.fi/linux/
6391Q: http://patchwork.linuxtv.org/project/linux-media/list/
6392T: git git://linuxtv.org/anttip/media_tree.git
6393S: Maintained
6394F: drivers/media/dvb-frontends/rtl2830*
6395
Larry Finger59840482008-11-12 17:13:09 -06006396RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006397M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006398L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006399W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006400T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006401S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006402F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006403
Larry Finger59840482008-11-12 17:13:09 -06006404RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006405M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006406M: Hin-Tak Leung <htl10@users.sourceforge.net>
6407M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006408L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006409W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006410T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006411S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006412F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006413
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006414RTL8192CE WIRELESS DRIVER
6415M: Larry Finger <Larry.Finger@lwfinger.net>
6416M: Chaoming Li <chaoming_li@realsil.com.cn>
6417L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006418W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006419T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6420S: Maintained
6421F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006422F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006423
6424S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006425M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006426L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006428F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006429
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430S390
Joe Perches8b58be82009-07-29 15:04:30 -07006431M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6432M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006434L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006435W: http://www.ibm.com/developerworks/linux/linux390/
6436S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006437F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006438F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006439F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006440F: Documentation/s390/
6441F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006442
6443S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006444M: Ursula Braun <ursula.braun@de.ibm.com>
6445M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006446M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006447L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006448W: http://www.ibm.com/developerworks/linux/linux390/
6449S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006450F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006451
Felix Beckfeed9b62009-03-26 15:24:23 +01006452S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006453M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006454M: linux390@de.ibm.com
6455L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006456W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006457S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006458F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006459
Heiko Carstens5238da42006-02-11 17:56:01 -08006460S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006461M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006462M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006463L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006464W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006466F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006467
Ursula Braundd96df22007-09-19 13:09:02 +02006468S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006469M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006470M: linux390@de.ibm.com
6471L: linux-s390@vger.kernel.org
6472W: http://www.ibm.com/developerworks/linux/linux390/
6473S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006474F: drivers/s390/net/*iucv*
6475F: include/net/iucv/
6476F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006477
Ben Dooks4dde7f72008-06-30 22:40:38 +01006478S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006479M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006480L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006481S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006482F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006483
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006484SAA7134 VIDEO4LINUX DRIVER
6485M: Mauro Carvalho Chehab <mchehab@redhat.com>
6486L: linux-media@vger.kernel.org
6487W: http://linuxtv.org
6488T: git git://linuxtv.org/media_tree.git
6489S: Odd fixes
6490F: Documentation/video4linux/saa7134/
6491F: drivers/media/pci/saa7134/
6492
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006494M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006495L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006496T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497W: http://www.mihu.de/linux/saa7146
6498S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006499F: drivers/media/common/saa7146/
6500F: drivers/media/pci/saa7146/
6501F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502
Corentin Chary92304a42011-12-05 12:38:35 -05006503SAMSUNG LAPTOP DRIVER
Corentin Chary5909c652012-12-17 16:00:05 -08006504M: Corentin Chary <corentin.chary@gmail.com>
Corentin Chary92304a42011-12-05 12:38:35 -05006505L: platform-driver-x86@vger.kernel.org
6506S: Maintained
6507F: drivers/platform/x86/samsung-laptop.c
6508
Mark Brown4a109cc2010-09-24 10:50:46 +01006509SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006510M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006511L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6512S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006513F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006514
Jingoo Han0d89a282011-12-19 11:09:35 +09006515SAMSUNG FRAMEBUFFER DRIVER
6516M: Jingoo Han <jg1.han@samsung.com>
6517L: linux-fbdev@vger.kernel.org
6518S: Maintained
6519F: drivers/video/s3c-fb.c
6520
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006521SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6522M: Sangbeom Kim <sbkim73@samsung.com>
6523L: linux-kernel@vger.kernel.org
6524S: Supported
6525F: drivers/mfd/sec*.c
6526F: drivers/regulator/s2m*.c
6527F: drivers/regulator/s5m*.c
6528F: drivers/rtc/rtc-sec.c
6529F: include/linux/mfd/samsung/
6530
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006531SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6532M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6533L: linux-media@vger.kernel.org
6534L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6535S: Maintained
6536F: drivers/media/platform/s3c-camif/
6537F: include/media/s3c_camif.h
6538
Alan Coxca749e22011-03-18 13:56:14 +00006539SERIAL DRIVERS
6540M: Alan Cox <alan@linux.intel.com>
6541L: linux-serial@vger.kernel.org
6542S: Maintained
6543F: drivers/tty/serial
6544
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306545SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006546M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306547S: Maintained
6548F: include/linux/dw_dmac.h
6549F: drivers/dma/dw_dmac_regs.h
6550F: drivers/dma/dw_dmac.c
6551
Thomas Gleixner88606e82010-12-14 21:37:13 +01006552TIMEKEEPING, NTP
6553M: John Stultz <johnstul@us.ibm.com>
6554M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006555T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006556S: Supported
6557F: include/linux/clocksource.h
6558F: include/linux/time.h
6559F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006560F: kernel/time/clocksource.c
6561F: kernel/time/time*.c
6562F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006563F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006564
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006565TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006566M: Huang Shijie <shijie8@gmail.com>
6567M: Kang Yong <kangyong@telegent.com>
6568M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006569S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006570F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006571
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006573M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006575F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576
6577SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006578M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006579M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006580T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006582F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006583F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006584
Chen Liqin6bcf6732009-06-13 15:24:33 +08006585SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006586M: Chen Liqin <liqin.chen@sunplusct.com>
6587M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006588W: http://www.sunplusct.com
6589S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006590F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006591
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006593M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594L: linux-scsi@vger.kernel.org
6595W: http://www.kernel.dk
6596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006597F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598
Roland Dreierfb50a832010-10-07 09:54:53 -07006599SCSI RDMA PROTOCOL (SRP) INITIATOR
6600M: David Dillow <dillowda@ornl.gov>
6601L: linux-rdma@vger.kernel.org
6602S: Supported
6603W: http://www.openfabrics.org
6604Q: http://patchwork.kernel.org/project/linux-rdma/list/
6605T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6606F: drivers/infiniband/ulp/srp/
6607F: include/scsi/srp.h
6608
Linus Torvalds1da177e2005-04-16 15:20:36 -07006609SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006610M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611L: linux-scsi@vger.kernel.org
6612W: http://www.torque.net/sg
6613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006614F: drivers/scsi/sg.c
6615F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616
6617SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006618M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006619L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006620T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6621T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6622T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006624F: drivers/scsi/
6625F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626
6627SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006628M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629L: linux-scsi@vger.kernel.org
6630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006631F: Documentation/scsi/st.txt
6632F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633
6634SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006635M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006636M: Sridhar Samudrala <sri@us.ibm.com>
Neil Horman02c38d02012-10-24 09:26:51 +00006637M: Neil Horman <nhorman@tuxdriver.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006638L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006639W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006641F: Documentation/networking/sctp.txt
6642F: include/linux/sctp.h
6643F: include/net/sctp/
6644F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006645
6646SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006647M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006648S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006649F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006650F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006651F: drivers/watchdog/scx200_wdt.c
6652F: drivers/i2c/busses/scx200*
6653F: drivers/mtd/maps/scx200_docflash.c
6654F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006655
6656SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006657M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006659F: drivers/char/scx200_gpio.c
6660F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006661
6662SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006663M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006665F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666
Sascha Sommer6a369132008-07-15 14:21:29 +02006667SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006668M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006669L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006671F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006672
Randy Dunlape7839f22008-10-12 16:11:45 -07006673SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006674M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006675L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006676T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6677S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006678F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006679F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006680
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006681SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006682M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006683L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006684L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006685S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006686F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006687
Ben Dooks0d1bb412009-06-14 13:52:37 +01006688SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006689M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006690L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006691S: Maintained
6692F: drivers/mmc/host/sdhci-s3c.c
6693
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006694SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006695M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006696L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006697L: linux-mmc@vger.kernel.org
6698S: Maintained
6699F: drivers/mmc/host/sdhci-spear.c
6700
James Morris8711cca2008-12-04 03:19:45 +11006701SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006702M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006703L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006704T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006705W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006706S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006707F: security/
James Morris8711cca2008-12-04 03:19:45 +11006708
Linus Torvalds1da177e2005-04-16 15:20:36 -07006709SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006710M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711S: Supported
6712
6713SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006714M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006715M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006716M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006717L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006718W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006719T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006721F: include/linux/selinux*
6722F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006723F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006724
John Johansenc1c124e2010-07-29 14:48:09 -07006725APPARMOR SECURITY MODULE
6726M: John Johansen <john.johansen@canonical.com>
6727L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6728W: apparmor.wiki.kernel.org
6729T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6730S: Supported
6731F: security/apparmor/
6732
Jiri Slabycef2cf02007-05-08 00:31:45 -07006733SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006734M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006736F: drivers/misc/phantom.c
6737F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006738
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006739SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006740M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006741L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006742T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006743S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006744F: drivers/ata/
6745F: include/linux/ata.h
6746F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006747
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306748SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006749M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006750L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006751W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006752S: Supported
6753F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306754
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006755SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006756M: Sathya Perla <sathya.perla@emulex.com>
6757M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6758M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006759L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006760W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006761S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006762F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006763
Ben Hutchings8ceee662008-04-27 12:55:59 +01006764SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006765M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006766M: Ben Hutchings <bhutchings@solarflare.com>
6767L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006768S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006769F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006770
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006771SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006772M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006774F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006775
6776SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006777M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006778L: linux-ia64@vger.kernel.org
6779S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006780F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006781F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006782F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006783
Linus Torvalds1da177e2005-04-16 15:20:36 -07006784SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006785M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006786L: linux-visws-devel@lists.sf.net
6787W: http://linux-visws.sf.net
6788S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006789F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006790
Jack Steiner75312612008-08-15 00:40:42 -07006791SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006792M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006794F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006795
Len Brown6349d992009-08-14 15:07:14 -04006796SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006797M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006798L: sfi-devel@simplefirmware.org
6799W: http://simplefirmware.org/
6800T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006801S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006802F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006803F: drivers/sfi/
6804F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006805
Linus Torvalds1da177e2005-04-16 15:20:36 -07006806SIMTEC EB110ATX (Chalice CATS)
6807P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006808P: Vincent Sanders <vince@simtec.co.uk>
6809M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006810W: http://www.simtec.co.uk/products/EB110ATX/
6811S: Supported
6812
6813SIMTEC EB2410ITX (BAST)
6814P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006815P: Vincent Sanders <vince@simtec.co.uk>
6816M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006817W: http://www.simtec.co.uk/products/EB2410ITX/
6818S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006819F: arch/arm/mach-s3c2410/mach-bast.c
6820F: arch/arm/mach-s3c2410/bast-ide.c
6821F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006822
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006823TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006824M: Sekhar Nori <nsekhar@ti.com>
6825M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306826L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306827T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006828Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006829S: Supported
6830F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006831F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006832
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03006833TI DAVINCI SERIES MEDIA DRIVER
6834M: Manjunath Hadli <manjunath.hadli@ti.com>
6835M: Prabhakar Lad <prabhakar.lad@ti.com>
6836L: linux-media@vger.kernel.org
6837L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
6838W: http://linuxtv.org/
6839Q: http://patchwork.linuxtv.org/project/linux-media/list/
6840T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
6841S: Supported
6842F: drivers/media/platform/davinci/
6843F: include/media/davinci/
6844
Francois Romieu92aab3c2005-07-30 13:11:18 +02006845SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006846M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006847L: netdev@vger.kernel.org
6848S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006849F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006850
Linus Torvalds1da177e2005-04-16 15:20:36 -07006851SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006852M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006853W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006854L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006855S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006856F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006858SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006859M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006860L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006862F: Documentation/i2c/busses/i2c-sis96x
6863F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006864
Linus Torvalds1da177e2005-04-16 15:20:36 -07006865SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006866M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006867W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006869F: Documentation/fb/sisfb.txt
6870F: drivers/video/sis/
6871F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006872
6873SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006874M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875W: http://www.winischhofer.at/linuxsisusbvga.shtml
6876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006877F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006878
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006879SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006880M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006881M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006882M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006883L: linux-mm@kvack.org
6884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006885F: include/linux/sl?b*.h
6886F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006887
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006888SLEEPABLE READ-COPY UPDATE (SRCU)
6889M: Lai Jiangshan <laijs@cn.fujitsu.com>
6890M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6891W: http://www.rdrop.com/users/paulmck/RCU/
6892S: Supported
6893T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6894F: include/linux/srcu*
6895F: kernel/srcu*
6896
Casey Schaufler66372842012-05-23 18:34:52 -07006897SMACK SECURITY MODULE
6898M: Casey Schaufler <casey@schaufler-ca.com>
6899L: linux-security-module@vger.kernel.org
6900W: http://schaufler-ca.com
6901T: git git://git.gitorious.org/smack-next/kernel.git
6902S: Maintained
6903F: Documentation/security/Smack.txt
6904F: security/smack/
6905
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006907M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006908S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006909F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006910
Sakari Ailuse8e31622012-11-12 18:14:39 -03006911SMIA AND SMIA++ IMAGE SENSOR DRIVER
6912M: Sakari Ailus <sakari.ailus@iki.fi>
6913L: linux-media@vger.kernel.org
6914S: Maintained
6915F: drivers/media/i2c/smiapp
6916F: include/media/smiapp.h
6917F: drivers/media/i2c/smiapp-pll.c
6918F: drivers/media/i2c/smiapp-pll.h
6919
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006920SMM665 HARDWARE MONITOR DRIVER
6921M: Guenter Roeck <linux@roeck-us.net>
6922L: lm-sensors@lm-sensors.org
6923S: Maintained
6924F: Documentation/hwmon/smm665
6925F: drivers/hwmon/smm665.c
6926
Steve Glendinning9df73052010-08-14 21:08:54 +02006927SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006928M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006929L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006930S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006931F: Documentation/hwmon/emc2103
6932F: drivers/hwmon/emc2103.c
6933
Hans de Goedea98d5062011-03-21 17:59:36 +01006934SMSC SCH5627 HARDWARE MONITOR DRIVER
6935M: Hans de Goede <hdegoede@redhat.com>
6936L: lm-sensors@lm-sensors.org
6937S: Supported
6938F: Documentation/hwmon/sch5627
6939F: drivers/hwmon/sch5627.c
6940
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006941SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006942M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006943L: lm-sensors@lm-sensors.org
6944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006945F: Documentation/hwmon/smsc47b397
6946F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006947
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006948SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006949M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006950L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006952F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006953F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006954
Steve Glendinning2cb37722008-12-11 20:54:30 -08006955SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006956M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006957L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006958S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006959F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006960
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006961SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006962M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006963L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006964S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006965F: drivers/video/smscufx.c
6966
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006967SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006968M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006969L: linux-altix@sgi.com
6970L: linux-ia64@vger.kernel.org
6971W: http://www.sgi.com/altix
6972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006973F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006974
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006975SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006976M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006977L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006978T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006979S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006980F: include/media/soc*
6981F: drivers/media/i2c/soc_camera/
6982F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006983
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006984SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006985M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006987F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006988
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006990M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006991L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006992S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006993F: drivers/md/
6994F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006995
Linus Torvalds1da177e2005-04-16 15:20:36 -07006996SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006997M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006998L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007000F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007001
Michael Buesch61e115a2007-09-18 15:12:50 -04007002SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007003M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007004L: netdev@vger.kernel.org
7005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007006F: drivers/ssb/
7007F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007008
Linus Torvalds1da177e2005-04-16 15:20:36 -07007009SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007010M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05007011L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007012W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007014F: Documentation/laptops/sony-laptop.txt
7015F: drivers/char/sonypi.c
7016F: drivers/platform/x86/sony-laptop.c
7017F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007018
Alex Dubovbaf85322008-02-09 10:20:54 -08007019SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007020M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007021W: http://tifmxx.berlios.de/
7022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007023F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007024
Linus Torvalds1da177e2005-04-16 15:20:36 -07007025SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007026M: Jaroslav Kysela <perex@perex.cz>
7027M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007028L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007029W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007030T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007031T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007032S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007033F: Documentation/sound/
7034F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007035F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036
Mark Brownbd903bd2008-11-19 19:16:05 +00007037SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01007038M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007039M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007040T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007041L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007042W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007043S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007044F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007045F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007046
Sam Ravnborg473321f2009-01-04 15:47:49 -08007047SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007048M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007050Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007051T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7052T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007054F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007055F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007056
David S. Miller6404fcc2010-03-16 01:00:17 -07007057SPARC SERIAL DRIVERS
7058M: "David S. Miller" <davem@davemloft.net>
7059L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007060T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7061T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007062S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007063F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007064F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007065F: drivers/tty/serial/sunhv.c
7066F: drivers/tty/serial/sunsab.c
7067F: drivers/tty/serial/sunsab.h
7068F: drivers/tty/serial/sunsu.c
7069F: drivers/tty/serial/sunzilog.c
7070F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007071
Christopher Li389325b2012-04-05 14:25:14 -07007072SPARSE CHECKER
7073M: "Christopher Li" <sparse@chrisli.org>
7074L: linux-sparse@vger.kernel.org
7075W: https://sparse.wiki.kernel.org/
7076T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7077T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7078S: Maintained
7079F: include/linux/compiler.h
7080
viresh kumarfc0c1952010-04-01 12:31:21 +01007081SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007082M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307083M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007084L: spear-devel@list.st.com
7085L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007086W: http://www.st.com/spear
7087S: Maintained
7088F: arch/arm/plat-spear/
7089
Viresh Kumar71e09a92012-04-20 22:39:48 +05307090SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007091M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307092M: Shiraz Hashim <shiraz.hashim@st.com>
7093L: spear-devel@list.st.com
7094L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7095W: http://www.st.com/spear
7096S: Maintained
7097F: arch/arm/mach-spear13xx/
7098
viresh kumarfc0c1952010-04-01 12:31:21 +01007099SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007100M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307101M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007102L: spear-devel@list.st.com
7103L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007104W: http://www.st.com/spear
7105S: Maintained
7106F: arch/arm/mach-spear3xx/
7107
7108SPEAR6XX MACHINE SUPPORT
7109M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307110M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007111M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007112L: spear-devel@list.st.com
7113L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007114W: http://www.st.com/spear
7115S: Maintained
7116F: arch/arm/mach-spear6xx/
7117
7118SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007119M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007120L: spear-devel@list.st.com
7121L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007122W: http://www.st.com/spear
7123S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307124F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007125
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007126SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007127M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007128L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007129Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007130T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007132F: Documentation/spi/
7133F: drivers/spi/
7134F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007135
Jim Lewis2752e402006-09-29 02:01:19 -07007136SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007137M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7138M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07007139L: netdev@vger.kernel.org
7140S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007141F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007142F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07007143
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007144SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007145M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007146L: linuxppc-dev@lists.ozlabs.org
7147L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007148W: http://www.ibm.com/developerworks/power/cell/
7149S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007150F: Documentation/filesystems/spufs.txt
7151F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007152
Phillip Lougherfc555842009-01-05 08:46:29 +00007153SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007154M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007155L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7156W: http://squashfs.org.uk
7157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007158F: Documentation/filesystems/squashfs.txt
7159F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007160
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007162M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007164F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007165
Linus Torvalds26e9a392008-10-17 09:50:12 -07007166STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007167M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007168L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007169S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007170
Linus Torvalds26e9a392008-10-17 09:50:12 -07007171STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007172M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007173T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007174L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007175S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007176F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007177
Joe Perchesc8c8b102011-07-05 09:42:12 -07007178STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7179M: Henk de Groot <pe1dnn@amsat.org>
7180S: Odd Fixes
7181F: drivers/staging/wlags49_h2/
7182F: drivers/staging/wlags49_h25/
7183
Joe Perchesc9555152011-07-05 09:42:01 -07007184STAGING - ASUS OLED
7185M: Jakub Schmidtke <sjakub@gmail.com>
7186S: Odd Fixes
7187F: drivers/staging/asus_oled/
7188
Joe Perchesebd3d012011-07-05 09:42:02 -07007189STAGING - COMEDI
7190M: Ian Abbott <abbotti@mev.co.uk>
7191M: Mori Hess <fmhess@users.sourceforge.net>
7192S: Odd Fixes
7193F: drivers/staging/comedi/
7194
Joe Perches8ca572c2011-07-05 09:42:03 -07007195STAGING - CRYSTAL HD VIDEO DECODER
7196M: Naren Sankar <nsankar@broadcom.com>
7197M: Jarod Wilson <jarod@wilsonet.com>
7198M: Scott Davilla <davilla@4pi.com>
7199M: Manu Abraham <abraham.manu@gmail.com>
7200S: Odd Fixes
7201F: drivers/staging/crystalhd/
7202
Joe Perches0f16ffc2011-07-05 09:42:04 -07007203STAGING - ECHO CANCELLER
7204M: Steve Underwood <steveu@coppice.org>
7205M: David Rowe <david@rowetel.com>
7206S: Odd Fixes
7207F: drivers/staging/echo/
7208
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007209STAGING - ET131X NETWORK DRIVER
7210M: Mark Einon <mark.einon@gmail.com>
7211S: Odd Fixes
7212F: drivers/staging/et131x/
7213
Joe Perchesa0138162011-07-05 15:21:34 -07007214STAGING - FLARION FT1000 DRIVERS
7215M: Marek Belisko <marek.belisko@gmail.com>
7216S: Odd Fixes
7217F: drivers/staging/ft1000/
7218
Joe Perchesec3fab92011-07-05 09:42:05 -07007219STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7220M: David Täht <d@teklibre.com>
7221S: Odd Fixes
7222F: drivers/staging/frontier/
7223
Joe Perches6c1bb422011-07-05 09:42:07 -07007224STAGING - INDUSTRIAL IO
7225M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007226L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007227S: Odd Fixes
7228F: drivers/staging/iio/
7229
Joe Perchesa0138162011-07-05 15:21:34 -07007230STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7231M: Jarod Wilson <jarod@wilsonet.com>
7232W: http://www.lirc.org/
7233S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007234F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007235
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007236STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007237M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007238M: Marc Dietrich <marvin24@gmx.de>
7239L: ac100@lists.launchpad.net (moderated for non-subscribers)
7240S: Maintained
7241F: drivers/staging/nvec/
7242
Joe Perchesa0138162011-07-05 15:21:34 -07007243STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7244M: Andres Salomon <dilinger@queued.net>
7245M: Chris Ball <cjb@laptop.org>
7246M: Jon Nettleton <jon.nettleton@gmail.com>
7247W: http://wiki.laptop.org/go/DCON
7248S: Odd Fixes
7249F: drivers/staging/olpc_dcon/
7250
Chris Kelly94cfdd12012-03-14 10:55:42 +00007251STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007252M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007253M: Chris Kelly <ckelly@ozmodevices.com>
7254S: Maintained
7255F: drivers/staging/ozwpan/
7256
Joe Perchesa0138162011-07-05 15:21:34 -07007257STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007258M: Willy Tarreau <willy@meta-x.org>
7259S: Odd Fixes
7260F: drivers/staging/panel/
7261
Joe Perchesa0138162011-07-05 15:21:34 -07007262STAGING - REALTEK RTL8712U DRIVERS
7263M: Larry Finger <Larry.Finger@lwfinger.net>
7264M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7265S: Odd Fixes
7266F: drivers/staging/rtl8712/
7267
Joe Perches9629fa82011-07-05 09:42:09 -07007268STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7269M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7270S: Odd Fixes
7271F: drivers/staging/sm7xx/
7272
Joe Perchesa0138162011-07-05 15:21:34 -07007273STAGING - SOFTLOGIC 6x10 MPEG CODEC
7274M: Ben Collins <bcollins@bluecherry.net>
7275S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007276F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007277
7278STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7279M: William Hubbs <w.d.hubbs@gmail.com>
7280M: Chris Brannon <chris@the-brannons.com>
7281M: Kirk Reiser <kirk@braille.uwo.ca>
7282M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7283L: speakup@braille.uwo.ca
7284W: http://www.linux-speakup.org/
7285S: Odd Fixes
7286F: drivers/staging/speakup/
7287
7288STAGING - TI DSP BRIDGE DRIVERS
7289M: Omar Ramirez Luna <omar.ramirez@ti.com>
7290S: Odd Fixes
7291F: drivers/staging/tidspbridge/
7292
Joe Perchesa0138162011-07-05 15:21:34 -07007293STAGING - USB ENE SM/MS CARD READER DRIVER
7294M: Al Cho <acho@novell.com>
7295S: Odd Fixes
7296F: drivers/staging/keucr/
7297
Joe Perchesb3e871c2011-07-05 09:42:10 -07007298STAGING - VIA VT665X DRIVERS
7299M: Forest Bond <forest@alittletooquiet.net>
7300S: Odd Fixes
7301F: drivers/staging/vt665?/
7302
Joe Perches81a9a522011-07-05 09:42:11 -07007303STAGING - WINBOND IS89C35 WLAN USB DRIVER
7304M: Pavel Machek <pavel@ucw.cz>
7305S: Odd Fixes
7306F: drivers/staging/winbond/
7307
Joe Perches709bcb02011-07-05 09:42:13 -07007308STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007309M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007310S: Odd Fixes
7311F: drivers/staging/xgifb/
7312
Linus Torvalds1da177e2005-04-16 15:20:36 -07007313STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007314M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007315S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007316F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007317
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007318SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007319M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007320W: http://sammy.net/sun3/
7321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007322F: arch/m68k/kernel/*sun3*
7323F: arch/m68k/sun3*/
7324F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007325F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007326
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007327SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007328M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007329L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007330W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007331Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007332T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007333S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007334F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007335F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007336F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007337
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007338SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007339M: Len Brown <len.brown@intel.com>
7340M: Pavel Machek <pavel@ucw.cz>
7341M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007342L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007343S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007344F: Documentation/power/
7345F: arch/x86/kernel/acpi/
7346F: drivers/base/power/
7347F: kernel/power/
7348F: include/linux/suspend.h
7349F: include/linux/freezer.h
7350F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007351
7352SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007353M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007354L: linux-video@atrey.karlin.mff.cuni.cz
7355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007356F: Documentation/svga.txt
7357F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007358
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007359SWIOTLB SUBSYSTEM
7360M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7361L: linux-kernel@vger.kernel.org
7362S: Supported
7363F: lib/swiotlb.c
7364F: arch/*/kernel/pci-swiotlb.c
7365F: include/linux/swiotlb.h
7366
Linus Torvalds1da177e2005-04-16 15:20:36 -07007367SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007368M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007370F: Documentation/filesystems/sysv-fs.txt
7371F: fs/sysv/
7372F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007373
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007374TARGET SUBSYSTEM
7375M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7376L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007377L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007378L: http://groups.google.com/group/linux-iscsi-target-dev
7379W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007380T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007381S: Supported
7382F: drivers/target/
7383F: include/target/
7384F: Documentation/target/
7385
Alan Cox4e688522008-04-30 00:52:11 -07007386TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007387M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007389F: Documentation/accounting/taskstats*
7390F: include/linux/taskstats*
7391F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007392
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007393TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007394M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007395L: netdev@vger.kernel.org
7396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007397F: include/linux/pkt_cls.h
7398F: include/net/pkt_cls.h
7399F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007400
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007401TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007402M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7403M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007404W: http://tcp-lp-mod.sourceforge.net/
7405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007406F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007407
Antti Palosaari91952bc2012-10-01 12:28:46 -03007408TDA10071 MEDIA DRIVER
7409M: Antti Palosaari <crope@iki.fi>
7410L: linux-media@vger.kernel.org
7411W: http://linuxtv.org/
7412W: http://palosaari.fi/linux/
7413Q: http://patchwork.linuxtv.org/project/linux-media/list/
7414T: git git://linuxtv.org/anttip/media_tree.git
7415S: Maintained
7416F: drivers/media/dvb-frontends/tda10071*
7417
7418TDA18212 MEDIA DRIVER
7419M: Antti Palosaari <crope@iki.fi>
7420L: linux-media@vger.kernel.org
7421W: http://linuxtv.org/
7422W: http://palosaari.fi/linux/
7423Q: http://patchwork.linuxtv.org/project/linux-media/list/
7424T: git git://linuxtv.org/anttip/media_tree.git
7425S: Maintained
7426F: drivers/media/tuners/tda18212*
7427
7428TDA18218 MEDIA DRIVER
7429M: Antti Palosaari <crope@iki.fi>
7430L: linux-media@vger.kernel.org
7431W: http://linuxtv.org/
7432W: http://palosaari.fi/linux/
7433Q: http://patchwork.linuxtv.org/project/linux-media/list/
7434T: git git://linuxtv.org/anttip/media_tree.git
7435S: Maintained
7436F: drivers/media/tuners/tda18218*
7437
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007438TDA18271 MEDIA DRIVER
7439M: Michael Krufky <mkrufky@linuxtv.org>
7440L: linux-media@vger.kernel.org
7441W: http://linuxtv.org/
7442W: http://github.com/mkrufky
7443Q: http://patchwork.linuxtv.org/project/linux-media/list/
7444T: git git://linuxtv.org/mkrufky/tuners.git
7445S: Maintained
7446F: drivers/media/tuners/tda18271*
7447
Michael Krufkye48307a2012-10-02 00:56:33 -03007448TDA827x MEDIA DRIVER
7449M: Michael Krufky <mkrufky@linuxtv.org>
7450L: linux-media@vger.kernel.org
7451W: http://linuxtv.org/
7452W: http://github.com/mkrufky
7453Q: http://patchwork.linuxtv.org/project/linux-media/list/
7454T: git git://linuxtv.org/mkrufky/tuners.git
7455S: Maintained
7456F: drivers/media/tuners/tda8290.*
7457
Michael Krufky66cf9212012-10-02 00:56:28 -03007458TDA8290 MEDIA DRIVER
7459M: Michael Krufky <mkrufky@linuxtv.org>
7460L: linux-media@vger.kernel.org
7461W: http://linuxtv.org/
7462W: http://github.com/mkrufky
7463Q: http://patchwork.linuxtv.org/project/linux-media/list/
7464T: git git://linuxtv.org/mkrufky/tuners.git
7465S: Maintained
7466F: drivers/media/tuners/tda8290.*
7467
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007468TEA5761 TUNER DRIVER
7469M: Mauro Carvalho Chehab <mchehab@redhat.com>
7470L: linux-media@vger.kernel.org
7471W: http://linuxtv.org
7472T: git git://linuxtv.org/media_tree.git
7473S: Odd fixes
7474F: drivers/media/tuners/tea5761.*
7475
7476TEA5767 TUNER DRIVER
7477M: Mauro Carvalho Chehab <mchehab@redhat.com>
7478L: linux-media@vger.kernel.org
7479W: http://linuxtv.org
7480T: git git://linuxtv.org/media_tree.git
7481S: Maintained
7482F: drivers/media/tuners/tea5767.*
7483
Jiri Pirko3d249d42011-11-11 22:16:48 +00007484TEAM DRIVER
7485M: Jiri Pirko <jpirko@redhat.com>
7486L: netdev@vger.kernel.org
7487S: Supported
7488F: drivers/net/team/
7489F: include/linux/if_team.h
7490
Sean Young40ad4a32012-11-19 10:32:53 -03007491TECHNOTREND USB IR RECEIVER
7492M: Sean Young <sean@mess.org>
7493L: linux-media@vger.kernel.org
7494S: Maintained
7495F: drivers/media/rc/ttusbir.c
7496
Erik Gilling84b94142010-06-09 15:35:53 -07007497TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007498M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007499L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007500Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7501T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007502S: Supported
7503F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007504F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007505F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007506
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007507TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007508M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007509L: netdev@vger.kernel.org
7510S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007511F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007512
Alan Cox4e688522008-04-30 00:52:11 -07007513Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007514M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007516F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007517
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007518TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007519M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007520M: Max Filippov <jcmvbkbc@gmail.com>
7521L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007523F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007524
Zhang Ruid3fb6952012-11-15 08:58:27 +08007525THERMAL
7526M: Zhang Rui <rui.zhang@intel.com>
7527L: linux-pm@vger.kernel.org
7528T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7529S: Supported
7530F: drivers/thermal/
7531F: include/linux/thermal.h
7532
Alan Cox4e688522008-04-30 00:52:11 -07007533THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007534M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007535L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007536L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007537W: http://ibm-acpi.sourceforge.net
7538W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007539T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007541F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007542
Alex Dubov4020f2d2006-10-04 02:15:37 -07007543TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007544M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007546F: drivers/misc/tifm*
7547F: drivers/mmc/host/tifm_sd.c
7548F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007549
M R Swami Reddy152ad442012-04-02 20:02:31 +05307550TI LM49xxx FAMILY ASoC CODEC DRIVERS
7551M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307552M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307553L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7554S: Maintained
7555F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307556F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307557
Kim, Milo0edd8072012-12-17 16:01:17 -08007558TI LP855x BACKLIGHT DRIVER
7559M: Milo Kim <milo.kim@ti.com>
7560S: Maintained
7561F: Documentation/backlight/lp855x-driver.txt
7562F: drivers/video/backlight/lp855x_bl.c
7563F: include/linux/platform_data/lp855x.h
7564
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007565TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007566M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007567L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7568S: Maintained
7569F: sound/soc/codecs/twl4030*
7570
Luciano Coelho90921012011-11-20 21:40:41 +02007571TI WILINK WIRELESS DRIVERS
7572M: Luciano Coelho <coelho@ti.com>
7573L: linux-wireless@vger.kernel.org
7574W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7575W: http://wireless.kernel.org/en/users/Drivers/wl1251
7576T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7577S: Maintained
7578F: drivers/net/wireless/ti/
7579F: include/linux/wl12xx.h
7580
Per Lidene86eaa32006-01-12 16:45:18 +01007581TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007582M: Jon Maloy <jon.maloy@ericsson.com>
7583M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007584L: netdev@vger.kernel.org (core kernel code)
7585L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007586W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007588F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007589F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007590
Chris Metcalf867e3592010-05-28 23:09:12 -04007591TILE ARCHITECTURE
7592M: Chris Metcalf <cmetcalf@tilera.com>
7593W: http://www.tilera.com/scm/
7594S: Supported
7595F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007596F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007597F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007598F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007599
Linus Torvalds1da177e2005-04-16 15:20:36 -07007600TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007601M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007602L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007603W: http://sourceforge.net/projects/tlan/
7604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007605F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007606F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007607
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007608TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007609M: Kentaro Takeda <takedakn@nttdata.co.jp>
7610M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007611L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7612L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007613L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7614L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7615W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007616T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007618F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007619
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007620TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007621M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007622L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007623S: Maintained
7624F: drivers/platform/x86/topstar-laptop.c
7625
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007627L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007628S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007629F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007630
7631TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007632M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007633L: tlinux-users@tce.toshiba-dme.co.jp
7634W: http://www.buzzard.org.uk/toshiba/
7635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007636F: drivers/char/toshiba.c
7637F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007638
Pierre Ossmand719f902009-03-24 21:06:09 +01007639TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007640M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007641M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007642L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007643S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007644F: drivers/mmc/host/tmio_mmc*
7645F: drivers/mmc/host/sh_mobile_sdhi.c
7646F: include/linux/mmc/tmio.h
7647F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007648
Hugh Dickins98f32602009-05-21 20:33:58 +01007649TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007650M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007651L: linux-mm@kvack.org
7652S: Maintained
7653F: include/linux/shmem_fs.h
7654F: mm/shmem.c
7655
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02007656TM6000 VIDEO4LINUX DRIVER
7657M: Mauro Carvalho Chehab <mchehab@redhat.com>
7658L: linux-media@vger.kernel.org
7659W: http://linuxtv.org
7660T: git git://linuxtv.org/media_tree.git
7661S: Odd fixes
7662F: drivers/media/usb/tm6000/
7663
Alan Cox4e688522008-04-30 00:52:11 -07007664TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007665M: Kent Yoder <key@linux.vnet.ibm.com>
7666M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007667W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007668M: Marcel Selhorst <tpmdd@selhorst.net>
7669M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007670W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007671L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007673F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007674
Joe Perchesd6f005a2009-10-26 16:49:40 -07007675TRACING
7676M: Steven Rostedt <rostedt@goodmis.org>
7677M: Frederic Weisbecker <fweisbec@gmail.com>
7678M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007679T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007680S: Maintained
7681F: Documentation/trace/ftrace.txt
7682F: arch/*/*/*/ftrace.h
7683F: arch/*/kernel/ftrace.c
7684F: include/*/ftrace.h
7685F: include/linux/trace*.h
7686F: include/trace/
7687F: kernel/trace/
7688
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007690M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007691T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007692S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007693K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007694
Alan Cox4e688522008-04-30 00:52:11 -07007695TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007696M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jiri Slaby25e6c112012-11-19 20:11:43 +01007697M: Jiri Slaby <jslaby@suse.cz>
Greg KH879a5a02012-01-31 20:02:00 -08007698S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007699T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007700F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007701F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007702F: include/linux/serial_core.h
7703F: include/linux/serial.h
7704F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007705
Antti Palosaari91952bc2012-10-01 12:28:46 -03007706TUA9001 MEDIA DRIVER
7707M: Antti Palosaari <crope@iki.fi>
7708L: linux-media@vger.kernel.org
7709W: http://linuxtv.org/
7710W: http://palosaari.fi/linux/
7711Q: http://patchwork.linuxtv.org/project/linux-media/list/
7712T: git git://linuxtv.org/anttip/media_tree.git
7713S: Maintained
7714F: drivers/media/tuners/tua9001*
7715
Grant Grundler740db6d2008-02-17 11:53:49 -07007716TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007717M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007718L: netdev@vger.kernel.org
7719S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007720F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007721
7722TUN/TAP driver
Jiri Slabyba57b6f2012-11-30 07:05:40 +00007723M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007724W: http://vtun.sourceforge.net/tun
7725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007726F: Documentation/networking/tuntap.txt
7727F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007728
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007729TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007730M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007732F: drivers/tc/
7733F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007734
Linus Torvalds1da177e2005-04-16 15:20:36 -07007735U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007736M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007737L: linux-scsi@vger.kernel.org
7738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007739F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007740
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007741UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007742M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007743M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007744L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007745T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007746W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007748F: Documentation/filesystems/ubifs.txt
7749F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007750
Alan Coxcc2020e2008-05-19 14:21:51 +01007751UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007752M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007753W: http://www.uclinux.org/
7754L: uclinux-dev@uclinux.org (subscribers-only)
7755S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007756F: arch/m68k/*/*_no.*
7757F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007758
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007759UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007760M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007761W: http://uclinux-h8.sourceforge.jp/
7762S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007763F: arch/h8300/
7764F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007765F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007766
Linus Torvalds1da177e2005-04-16 15:20:36 -07007767UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007768M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007770F: Documentation/filesystems/udf.txt
7771F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007772
Alan Coxcc2020e2008-05-19 14:21:51 +01007773UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007774M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007776F: Documentation/filesystems/ufs.txt
7777F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007778
David Herrmann0a09d3a2012-06-10 15:16:28 +02007779UHID USERSPACE HID IO DRIVER:
7780M: David Herrmann <dh.herrmann@googlemail.com>
7781L: linux-input@vger.kernel.org
7782S: Maintained
7783F: drivers/hid/uhid.c
7784F: include/linux/uhid.h
7785
David Vrabel18332a82008-09-17 16:34:44 +01007786ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007787L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007788S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007789F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007790F: include/linux/uwb.h
7791F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007792
GuanXuetaob31d8272011-01-16 00:35:49 +08007793UNICORE32 ARCHITECTURE:
7794M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7795W: http://mprc.pku.edu.cn/~guanxuetao/linux
7796S: Maintained
7797T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7798F: arch/unicore32/
7799
Tony Finchd8379ab2009-11-27 15:50:30 +00007800UNIFDEF
7801M: Tony Finch <dot@dotat.at>
7802W: http://dotat.at/prog/unifdef
7803S: Maintained
7804F: scripts/unifdef.c
7805
Linus Torvalds1da177e2005-04-16 15:20:36 -07007806UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007807M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007808W: http://www.kernel.dk
7809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007810F: Documentation/cdrom/
7811F: drivers/cdrom/cdrom.c
7812F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007813
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307814UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7815M: Vinayak Holikatti <vinholikatti@gmail.com>
7816M: Santosh Y <santoshsy@gmail.com>
7817L: linux-scsi@vger.kernel.org
7818S: Supported
7819F: Documentation/scsi/ufs.txt
7820F: drivers/scsi/ufs/
7821
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007822UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007823M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007824W: http://www.linux-mtd.infradead.org/
7825L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007826T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007827S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007828F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007829F: include/linux/mtd/ubi.h
7830F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007831
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007832UNSORTED BLOCK IMAGES (UBI) Fastmap
7833M: Richard Weinberger <richard@nod.at>
7834L: linux-mtd@lists.infradead.org
7835S: Maintained
7836F: drivers/mtd/ubi/fastmap.c
7837
Linus Torvalds1da177e2005-04-16 15:20:36 -07007838USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007839M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007840L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007842F: Documentation/usb/acm.txt
7843F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007844
Pontus Fuchsb7d572e2012-10-23 20:33:57 +02007845USB AR5523 WIRELESS DRIVER
7846M: Pontus Fuchs <pontus.fuchs@gmail.com>
7847L: linux-wireless@vger.kernel.org
7848S: Maintained
7849F: drivers/net/wireless/ath/ar5523/
7850
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007851USB ATTACHED SCSI
7852M: Matthew Wilcox <willy@linux.intel.com>
7853M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7854L: linux-usb@vger.kernel.org
7855L: linux-scsi@vger.kernel.org
7856S: Supported
7857F: drivers/usb/storage/uas.c
7858
Linus Torvalds1da177e2005-04-16 15:20:36 -07007859USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007860M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007861L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007863F: drivers/net/usb/cdc_*.c
7864F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007865
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007866USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007867M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007868L: linux-usb@vger.kernel.org
7869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007870F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007871
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007872USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007873M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007874L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007875W: http://www.linux-usb.org/usbnet
7876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007877F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007878
Alan Coxcc2020e2008-05-19 14:21:51 +01007879USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007880M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007881L: rio500-users@lists.sourceforge.net
7882W: http://rio500.sourceforge.net
7883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007884F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007885
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007887M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007888L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007890F: Documentation/usb/ehci.txt
7891F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007892
David Brownell69ae9e32006-11-14 02:03:31 -08007893USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007894M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007895L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007896W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007897T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007899F: drivers/usb/gadget/
7900F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007901
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007902USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007903M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007904L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007905T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007906S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007907F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007908F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007909
matt mooney857aab32011-06-17 15:50:46 -07007910USB/IP DRIVERS
7911M: Matt Mooney <mfm@muteddisk.com>
7912L: linux-usb@vger.kernel.org
7913S: Maintained
7914F: drivers/staging/usbip/
7915
Olav Kongas959eea22005-11-03 17:38:14 +02007916USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007917M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007918L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007920F: drivers/usb/host/isp116x*
7921F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007922
Linus Torvalds1da177e2005-04-16 15:20:36 -07007923USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007924M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007925L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007927F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007928
7929USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007930M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007931L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007932L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007933S: Maintained
7934W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007935F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007936
Clemens Ladischaf399172011-01-10 16:32:54 +01007937USB MIDI DRIVER
7938M: Clemens Ladisch <clemens@ladisch.de>
7939L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7940T: git git://git.alsa-project.org/alsa-kernel.git
7941S: Maintained
7942F: sound/usb/midi.*
7943
Linus Torvalds1da177e2005-04-16 15:20:36 -07007944USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007945M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007946L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007948F: Documentation/usb/ohci.txt
7949F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007950
Matthias Urlichsba460e42005-07-14 00:33:47 -07007951USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007952M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007953L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007955F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007956
Linus Torvalds1da177e2005-04-16 15:20:36 -07007957USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007958M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007959L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007960L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007961W: http://pegasus2.sourceforge.net/
7962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007963F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007964
Felipe Balbid3ad5582012-05-21 16:24:49 +03007965USB PHY LAYER
7966M: Felipe Balbi <balbi@ti.com>
7967L: linux-usb@vger.kernel.org
7968T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7969S: Maintained
7970F: drivers/usb/phy/
7971F: drivers/usb/otg/
7972
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007973USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007974M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007975L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007976S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007977F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007978
7979USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007980M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007981L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007982L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007983W: http://pegasus2.sourceforge.net/
7984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007985F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007986
Alan Cox4e688522008-04-30 00:52:11 -07007987USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007988M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007989L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007991F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007992
7993USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007994M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007995L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007996S: Maintained
7997W: http://geocities.com/i0xox0i
7998W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007999F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008000
Linus Torvalds1da177e2005-04-16 15:20:36 -07008001USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008002M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008003W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008005F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008006
8007USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008008M: Peter Berger <pberger@brimson.com>
8009M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008010L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008012F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008013
8014USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008015M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008016L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008017S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008018F: Documentation/usb/usb-serial.txt
8019F: drivers/usb/serial/generic.c
8020F: drivers/usb/serial/usb-serial.c
8021F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008022
Linus Torvalds1da177e2005-04-16 15:20:36 -07008023USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008024M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008025L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008027F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028
8029USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008030M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008031L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008033F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008034
8035USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008036M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008037L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008038W: http://www.connecttech.com
8039S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008040F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008041
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008042USB SMSC75XX ETHERNET DRIVER
8043M: Steve Glendinning <steve.glendinning@shawell.net>
8044L: netdev@vger.kernel.org
8045S: Maintained
8046F: drivers/net/usb/smsc75xx.*
8047
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008048USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008049M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008050L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008052F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008053
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008054USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008055M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008056L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008057L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008058T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008059W: http://www.linux-projects.org
8060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008061F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008062F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008063
8064USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008065M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008066L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008067W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008068T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008069S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008070F: Documentation/usb/
8071F: drivers/net/usb/
8072F: drivers/usb/
8073F: include/linux/usb.h
8074F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008075
8076USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008077M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008078L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008080F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008081
David Brownell69ae9e32006-11-14 02:03:31 -08008082USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008083M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008084L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008085W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008087F: drivers/net/usb/usbnet.c
8088F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008089
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008090USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008091M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008092L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008093L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008094T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008095W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008096S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008097F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008098F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008099
Laurent Pinchart8282da42012-10-04 02:32:42 +02008100USB WEBCAM GADGET
8101M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8102L: linux-usb@vger.kernel.org
8103S: Maintained
8104F: drivers/usb/gadget/*uvc*.c
8105F: drivers/usb/gadget/webcam.c
8106
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008107USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008108M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008109L: linux-wireless@vger.kernel.org
8110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008111F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008112
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008113USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008114M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008115L: linux-usb@vger.kernel.org
8116S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008117F: drivers/usb/host/xhci*
8118F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008119
Linus Torvalds1da177e2005-04-16 15:20:36 -07008120USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008121L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008122W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008123S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008124F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008125
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008126USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008127M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008128L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008129L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008130T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008131W: http://royale.zerezo.com/zr364xx/
8132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008133F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008134F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008135
Randy Dunlape7839f22008-10-12 16:11:45 -07008136USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008137M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008138M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008139L: user-mode-linux-devel@lists.sourceforge.net
8140L: user-mode-linux-user@lists.sourceforge.net
8141W: http://user-mode-linux.sourceforge.net
8142S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008143F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008144F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008145F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008146F: fs/hostfs/
8147F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008148
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008149USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008150M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008151M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008153F: Documentation/DocBook/uio-howto.tmpl
8154F: drivers/uio/
8155F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008156
Karel Zak256cccb2012-06-01 10:13:09 +02008157UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008158M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008159L: util-linux@vger.kernel.org
8160W: http://en.wikipedia.org/wiki/Util-linux
8161T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008162S: Maintained
8163
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008164UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008165M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008166L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008167W: http://dev.gentoo.org/~spock/projects/uvesafb/
8168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008169F: Documentation/fb/uvesafb.txt
8170F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008171
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008172VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008173M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008175F: Documentation/filesystems/vfat.txt
8176F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008177
Alex Williamsoncba33452012-07-31 08:16:22 -06008178VFIO DRIVER
8179M: Alex Williamson <alex.williamson@redhat.com>
8180L: kvm@vger.kernel.org
8181S: Maintained
8182F: Documentation/vfio.txt
8183F: drivers/vfio/
8184F: include/linux/vfio.h
8185
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008186VIDEOBUF2 FRAMEWORK
8187M: Pawel Osciak <pawel@osciak.com>
8188M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008189M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008190L: linux-media@vger.kernel.org
8191S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008192F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008193F: include/media/videobuf2-*
8194
Amit Shah9a824462010-03-23 18:23:09 +05308195VIRTIO CONSOLE DRIVER
8196M: Amit Shah <amit.shah@redhat.com>
8197L: virtualization@lists.linux-foundation.org
8198S: Maintained
8199F: drivers/char/virtio_console.c
8200F: include/linux/virtio_console.h
8201
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308202VIRTIO CORE, NET AND BLOCK DRIVERS
8203M: Rusty Russell <rusty@rustcorp.com.au>
8204M: "Michael S. Tsirkin" <mst@redhat.com>
8205L: virtualization@lists.linux-foundation.org
8206S: Maintained
8207F: drivers/virtio/
8208F: drivers/net/virtio_net.c
8209F: drivers/block/virtio_blk.c
8210F: include/linux/virtio_*.h
8211
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008212VIRTIO HOST (VHOST)
8213M: "Michael S. Tsirkin" <mst@redhat.com>
8214L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008215L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00008216L: netdev@vger.kernel.org
8217S: Maintained
8218F: drivers/vhost/
8219F: include/linux/vhost.h
8220
Linus Torvalds1da177e2005-04-16 15:20:36 -07008221VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008222M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008223S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008224F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008225
Harald Weltef0bf7f62009-06-17 20:22:39 +02008226VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008227M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008228M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008229S: Maintained
8230F: drivers/mmc/host/via-sdmmc.c
8231
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008232VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008233M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008234L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008235S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008236F: include/linux/via-core.h
8237F: include/linux/via-gpio.h
8238F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008239F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008240
Francois Romieu01f20732007-01-26 00:57:17 -08008241VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008242M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008243L: netdev@vger.kernel.org
8244S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008245F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008246
Patrick McHardybe7f8272007-10-23 20:26:36 -07008247VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008248M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008249L: netdev@vger.kernel.org
8250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008251F: drivers/net/macvlan.c
8252F: include/linux/if_*vlan.h
8253F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008254
Florian Fainelli55e331c2009-06-16 15:33:53 -07008255VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008256M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008257L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008258S: Maintained
8259F: drivers/vlynq/vlynq.c
8260F: include/linux/vlynq.h
8261
Martyn Welch390beae2012-05-03 17:52:36 +01008262VME SUBSYSTEM
8263M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008264M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008265M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8266L: devel@driverdev.osuosl.org
8267S: Maintained
8268T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8269F: Documentation/vme_api.txt
8270F: drivers/staging/vme/
8271F: drivers/vme/
8272F: include/linux/vme*
8273
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008274VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008275M: Shreyas Bhatewara <sbhatewara@vmware.com>
8276M: "VMware, Inc." <pv-drivers@vmware.com>
8277L: netdev@vger.kernel.org
8278S: Maintained
8279F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008280
Alok Kataria851b1642009-10-13 14:51:05 -07008281VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008282M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008283M: VMware PV-Drivers <pv-drivers@vmware.com>
8284L: linux-scsi@vger.kernel.org
8285S: Maintained
8286F: drivers/scsi/vmw_pvscsi.c
8287F: drivers/scsi/vmw_pvscsi.h
8288
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008289VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008290M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008291M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008292W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008293W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008294T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008295S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008296F: drivers/regulator/
8297F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008298
Juerg Haefligerab413192006-09-24 20:54:04 +02008299VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008300M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008301L: lm-sensors@lm-sensors.org
8302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008303F: Documentation/hwmon/vt1211
8304F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008305
Roger Lucas1de9e372005-11-26 20:20:05 +01008306VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008307M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008308L: lm-sensors@lm-sensors.org
8309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008310F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008311
Tony Olech88095e72011-05-14 16:48:13 -04008312VUB300 USB to SDIO/SD/MMC bridge chip
8313M: Tony Olech <tony.olech@elandigitalsystems.com>
8314L: linux-mmc@vger.kernel.org
8315L: linux-usb@vger.kernel.org
8316S: Supported
8317F: drivers/mmc/host/vub300.c
8318
Linus Torvalds1da177e2005-04-16 15:20:36 -07008319W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008320M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008322F: Documentation/w1/
8323F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324
Charles Spirakis13927072006-07-05 18:05:15 +02008325W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008326M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008327L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008329F: Documentation/hwmon/w83791d
8330F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008331
Rudolf Marek61db0112006-12-12 18:18:30 +01008332W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008333M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008334L: lm-sensors@lm-sensors.org
8335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008336F: Documentation/hwmon/w83793
8337F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008338
Jean Delvaree3760b42010-10-28 20:31:49 +02008339W83795 HARDWARE MONITORING DRIVER
8340M: Jean Delvare <khali@linux-fr.org>
8341L: lm-sensors@lm-sensors.org
8342S: Maintained
8343F: drivers/hwmon/w83795.c
8344
Linus Torvalds1da177e2005-04-16 15:20:36 -07008345W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008346M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008348F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008349
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008350WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008351M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008352L: linux-watchdog@vger.kernel.org
8353W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008354T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008356F: Documentation/watchdog/
8357F: drivers/watchdog/
8358F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008359
Linus Torvalds1da177e2005-04-16 15:20:36 -07008360WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008361M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008362L: linux-scsi@vger.kernel.org
8363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008364F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008365
David Herrmannb22e00f2011-09-06 13:50:40 +02008366WIIMOTE HID DRIVER
8367M: David Herrmann <dh.herrmann@googlemail.com>
8368L: linux-input@vger.kernel.org
8369S: Maintained
8370F: drivers/hid/hid-wiimote*
8371
David Härdemane258b802009-09-21 17:04:53 -07008372WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008373M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008374S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008375F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008376
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008377WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008378M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008379M: linux-wimax@intel.com
8380L: wimax@linuxwimax.org
8381S: Supported
8382W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008383F: Documentation/wimax/README.wimax
8384F: include/linux/wimax.h
8385F: include/linux/wimax/debug.h
8386F: include/net/wimax.h
8387F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008388
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008389WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008390M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008392F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008393
Linus Torvalds1da177e2005-04-16 15:20:36 -07008394WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008395M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008396L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008397W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008399F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008400
Mark Brownfebf1df2008-04-02 00:51:09 -04008401WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008402M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8403M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008404L: linux-input@vger.kernel.org
8405T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8406W: http://opensource.wolfsonmicro.com/node/7
8407S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008408F: drivers/input/touchscreen/*wm97*
8409F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008410
Mark Brown055bcbc2010-08-13 14:18:12 +01008411WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008412M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008413L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008414T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008415T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008416W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008417S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008418F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008419F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008420F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008421F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008422F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008423F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008424F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008425F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008426F: drivers/input/misc/wm831x-on.c
8427F: drivers/input/touchscreen/wm831x-ts.c
8428F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008429F: drivers/mfd/arizona*
8430F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008431F: drivers/power/wm83*.c
8432F: drivers/rtc/rtc-wm83*.c
8433F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008434F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008435F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008436F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008437F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008438F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008439F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008440F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008441F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008442F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008443F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008444
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008445WORKQUEUE
8446M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008447T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8448S: Maintained
8449F: include/linux/workqueue.h
8450F: kernel/workqueue.c
8451F: Documentation/workqueue.txt
8452
Linus Torvalds1da177e2005-04-16 15:20:36 -07008453X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008454M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008455L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008456S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008457F: Documentation/networking/x25*
8458F: include/net/x25*
8459F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008460
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008461X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008462M: Thomas Gleixner <tglx@linutronix.de>
8463M: Ingo Molnar <mingo@redhat.com>
8464M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008465M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008466T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008468F: Documentation/x86/
8469F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008470
Matthew Garrettd0944852010-02-11 10:40:13 -05008471X86 PLATFORM DRIVERS
8472M: Matthew Garrett <mjg@redhat.com>
8473L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008474T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008475S: Maintained
8476F: drivers/platform/x86
8477
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008478X86 MCE INFRASTRUCTURE
8479M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008480M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008481L: linux-edac@vger.kernel.org
8482S: Maintained
8483F: arch/x86/kernel/cpu/mcheck/*
8484
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008485XC2028/3028 TUNER DRIVER
8486M: Mauro Carvalho Chehab <mchehab@redhat.com>
8487L: linux-media@vger.kernel.org
8488W: http://linuxtv.org
8489T: git git://linuxtv.org/media_tree.git
8490S: Maintained
8491F: drivers/media/tuners/tuner-xc2028.*
8492
Ian Campbellc4468082011-04-27 15:26:46 -07008493XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008494M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008495M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008496L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8497L: virtualization@lists.linux-foundation.org
8498S: Supported
8499F: arch/x86/xen/
8500F: drivers/*/xen-*front.c
8501F: drivers/xen/
8502F: arch/x86/include/asm/xen/
8503F: include/xen/
8504
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008505XEN HYPERVISOR ARM
8506M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8507L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8508S: Supported
8509F: arch/arm/xen/
8510F: arch/arm/include/asm/xen/
8511
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008512XEN NETWORK BACKEND DRIVER
8513M: Ian Campbell <ian.campbell@citrix.com>
8514L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8515L: netdev@vger.kernel.org
8516S: Supported
8517F: drivers/net/xen-netback/*
8518
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008519XEN PCI SUBSYSTEM
8520M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008521L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008522S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008523F: arch/x86/pci/*xen*
8524F: drivers/pci/*xen*
8525
8526XEN SWIOTLB SUBSYSTEM
8527M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008528L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008529S: Supported
8530F: arch/x86/xen/*swiotlb*
8531F: drivers/xen/*swiotlb*
8532
Linus Torvalds1da177e2005-04-16 15:20:36 -07008533XFS FILESYSTEM
8534P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008535M: Ben Myers <bpm@sgi.com>
8536M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008537M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008538L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008539W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008540T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008541S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008542F: Documentation/filesystems/xfs.txt
8543F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008544
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008545XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008546M: Anirudha Sarangi <anirudh@xilinx.com>
8547M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008548S: Maintained
8549F: drivers/net/ethernet/xilinx/xilinx_axienet*
8550
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008551XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008552M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008553W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008555F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008556
Peter Korsgaard238b8722006-12-06 20:35:17 -08008557XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008558M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008559L: linux-serial@vger.kernel.org
8560S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008561F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008562
Linus Torvalds1da177e2005-04-16 15:20:36 -07008563YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008564M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008565L: linux-hams@vger.kernel.org
8566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008567F: drivers/net/hamradio/yam*
8568F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008569
Henkaf64a5e2005-10-12 15:02:56 +02008570YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008571M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008572L: usbb2k-api-dev@nongnu.org
8573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008574F: Documentation/input/yealink.txt
8575F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008576
Linus Torvalds1da177e2005-04-16 15:20:36 -07008577Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008578M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008579W: http://yaina.de/jreuter/
8580W: http://www.qsl.net/dl1bke/
8581L: linux-hams@vger.kernel.org
8582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008583F: Documentation/networking/z8530drv.txt
8584F: drivers/net/hamradio/*scc.c
8585F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008586
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008587ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008588M: Daniel Drake <dsd@gentoo.org>
8589M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008590W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008591L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008592L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008594F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008595
Linus Torvalds1da177e2005-04-16 15:20:36 -07008596ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008597L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008598L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008599W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008600T: Mercurial http://linuxtv.org/hg/v4l-dvb
8601S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008602F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008603
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008604ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008605M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008606S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008607F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008608
Linus Torvalds1da177e2005-04-16 15:20:36 -07008609THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008610M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008611L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008612Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008613T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008614S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008615F: *
8616F: */