blob: 124c811bb8d12fa9cf252c407cc1a59383a43043 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew Garrettd09448532010-02-11 10:40:13 -0500225L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700226W: http://piie.net/?section=acerhdf
227S: Maintained
228F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200229
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230ACER WMI LAPTOP EXTRAS
Carlos Corbachod9269a72011-05-02 09:57:18 +0100231M: Joey Lee <jlee@novell.com>
Matthew Garrettd09448532010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700237M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200238M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500239L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400240W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800241Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400242T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700244F: drivers/acpi/
245F: drivers/pnp/pnpacpi/
246F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700247F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248
Len Brown8b59a452007-01-08 19:03:28 -0500249ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500251L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300252W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700254F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700262
Len Brown359acec2007-02-10 01:59:24 -0500263ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500269
Carlos Corbachobff431e2008-02-05 02:17:04 +0000270ACPI WMI DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -0500271L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700273F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100275AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700276M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200277W: http://wiki.parisc-linux.org/AD1889
278L: linux-parisc@vger.kernel.org
279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700280F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
283M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100284L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700285W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000286S: Supported
287F: drivers/misc/ad525x_dpot.c
288
289AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/regulator/ad5398.c
295
296AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/input/misc/ad714x.c
302
303AD7877 TOUCHSCREEN DRIVER
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/touchscreen/ad7877.c
309
310AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7879.c
316
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700317ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
318M: Jiri Kosina <jkosina@suse.cz>
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200323L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/hwmon/adm1025
326F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330L: lm-sensors@lm-sensors.org
331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333
Michael Wucc0b88c2007-08-31 01:15:25 -0400334ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400335L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200336W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400339
Sakari Ailuse8e31622012-11-12 18:14:39 -0300340ADP1653 FLASH CONTROLLER DRIVER
341M: Sakari Ailus <sakari.ailus@iki.fi>
342L: linux-media@vger.kernel.org
343S: Maintained
344F: drivers/media/i2c/adp1653.c
345F: include/media/adp1653.h
346
Michael Hennerich527a1a82010-10-28 11:31:28 +0000347ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
348M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100349L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700350W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000351S: Supported
352F: drivers/mfd/adp5520.c
353F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700354F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800355F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000356F: drivers/input/keyboard/adp5520-keys.c
357
358ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
359M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100360L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700361W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362S: Supported
363F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800364F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000365
366ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
367M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100368L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700369W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000370S: Supported
371F: drivers/video/backlight/adp8860_bl.c
372
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100373ADS1015 HARDWARE MONITOR DRIVER
374M: Dirk Eibach <eibach@gdsys.de>
375L: lm-sensors@lm-sensors.org
376S: Maintained
377F: Documentation/hwmon/ads1015
378F: drivers/hwmon/ads1015.c
379F: include/linux/i2c/ads1015.h
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700382M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700384F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Jean Delvareb058b852009-12-09 20:36:08 +0100386ADT7475 HARDWARE MONITOR DRIVER
387M: Jean Delvare <khali@linux-fr.org>
388L: lm-sensors@lm-sensors.org
389S: Maintained
390F: Documentation/hwmon/adt7475
391F: drivers/hwmon/adt7475.c
392
Michael Hennerich527a1a82010-10-28 11:31:28 +0000393ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
394M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100395L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700396W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000397S: Supported
398F: drivers/input/misc/adxl34x.c
399
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400400ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400402L: linux-scsi@vger.kernel.org
403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700404F: Documentation/scsi/advansys.txt
405F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700408M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700410F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Antti Palosaari91952bc2012-10-01 12:28:46 -0300412AF9013 MEDIA DRIVER
413M: Antti Palosaari <crope@iki.fi>
414L: linux-media@vger.kernel.org
415W: http://linuxtv.org/
416W: http://palosaari.fi/linux/
417Q: http://patchwork.linuxtv.org/project/linux-media/list/
418T: git git://linuxtv.org/anttip/media_tree.git
419S: Maintained
420F: drivers/media/dvb-frontends/af9013*
421
422AF9033 MEDIA DRIVER
423M: Antti Palosaari <crope@iki.fi>
424L: linux-media@vger.kernel.org
425W: http://linuxtv.org/
426W: http://palosaari.fi/linux/
427Q: http://patchwork.linuxtv.org/project/linux-media/list/
428T: git git://linuxtv.org/anttip/media_tree.git
429S: Maintained
430F: drivers/media/dvb-frontends/af9033*
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200433L: linux-fsdevel@vger.kernel.org
434S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700435F: Documentation/filesystems/affs.txt
436F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700439M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700440L: linux-afs@lists.infradead.org
441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700442F: fs/afs/
443F: include/net/af_rxrpc.h
444F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700448T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/char/agp/
451F: include/linux/agp*
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
Hans Verkuil531fca12012-11-23 06:53:24 -0300561ANALOG DEVICES INC AD9389B DRIVER
562M: Hans Verkuil <hans.verkuil@cisco.com>
563L: linux-media@vger.kernel.org
564S: Maintained
565F: drivers/media/i2c/ad9389b*
566
567ANALOG DEVICES INC ADV7604 DRIVER
568M: Hans Verkuil <hans.verkuil@cisco.com>
569L: linux-media@vger.kernel.org
570S: Maintained
571F: drivers/media/i2c/adv7604*
572
Michael Hennerich527a1a82010-10-28 11:31:28 +0000573ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200574M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100575L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000576L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700577W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000578S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100579F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200580F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000581F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000582F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100583F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000584
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400585ANALOG DEVICES INC ASOC DRIVERS
586L: uclinux-dist-devel@blackfin.uclinux.org
587L: alsa-devel@alsa-project.org (moderated for non-subscribers)
588W: http://blackfin.uclinux.org/
589S: Supported
590F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400591
Johannes Berg42269062006-07-25 16:15:50 +0200592AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700593M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000594L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700595L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700597F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200600M: Jiri Kosina <jkosina@suse.cz>
601S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700602F: arch/x86/kernel/apm_32.c
603F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200604F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700606APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700607M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700608L: linux-input@vger.kernel.org
609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700610F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700611
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700612APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200613M: Henrik Rydberg <rydberg@euromail.se>
614L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700616F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700619M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700621F: drivers/net/appletalk/
622F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Viresh Kumara4801672011-02-22 15:46:07 +0530624ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700625M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530626L: linux-ide@vger.kernel.org
627S: Maintained
628F: include/linux/pata_arasan_cf_data.h
629F: drivers/ata/pata_arasan_cf.c
630
Jaya Kumar1154ea72005-06-21 17:17:04 -0700631ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700632M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700634F: drivers/video/arcfb.c
635F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700638M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700640F: arch/arm/lib/floppydma.S
641F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Will Deacon6f965212011-07-01 14:38:53 +0100643ARM PMU PROFILING AND DEBUGGING
644M: Will Deacon <will.deacon@arm.com>
645S: Maintained
646F: arch/arm/kernel/perf_event*
647F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100648F: arch/arm/include/asm/pmu.h
649F: arch/arm/kernel/hw_breakpoint.c
650F: arch/arm/include/asm/hw_breakpoint.h
651
Russell Kingd4275352009-04-16 14:05:27 +0100652ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700653M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700654L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100655W: http://www.arm.linux.org.uk/
656S: Maintained
657F: arch/arm/
658
Stephen Boydd323c2432012-10-24 11:00:29 -0700659ARM SUB-ARCHITECTURES
660L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
661S: MAINTAINED
662F: arch/arm/mach-*/
663F: arch/arm/plat-*/
664T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
665
Russell Kingcefbf4e2009-11-22 17:40:28 +0000666ARM PRIMECELL AACI PL041 DRIVER
667M: Russell King <linux@arm.linux.org.uk>
668S: Maintained
669F: sound/arm/aaci.*
670
671ARM PRIMECELL CLCD PL110 DRIVER
672M: Russell King <linux@arm.linux.org.uk>
673S: Maintained
674F: drivers/video/amba-clcd.*
675
676ARM PRIMECELL KMI PL050 DRIVER
677M: Russell King <linux@arm.linux.org.uk>
678S: Maintained
679F: drivers/input/serio/ambakmi.*
680F: include/linux/amba/kmi.h
681
Russell King2761f5c2007-05-24 06:56:08 +0200682ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200683S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700684F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200685
Russell Kingcefbf4e2009-11-22 17:40:28 +0000686ARM PRIMECELL BUS SUPPORT
687M: Russell King <linux@arm.linux.org.uk>
688S: Maintained
689F: drivers/amba/
690F: include/linux/amba/bus.h
691
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800692ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700693M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700694L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800695S: Maintained
696
Sergey Lapin9c784f92008-08-03 02:29:48 +0100697ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700698M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700699L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100700S: Maintained
701
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800702ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700703M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700704L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800705S: Maintained
706
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800707ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700708M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800709M: Nicolas Ferre <nicolas.ferre@atmel.com>
710M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700711L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200712W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800713W: http://www.linux4sam.org
714S: Supported
715F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100716
Rob Herring986cf2e2011-06-22 11:28:53 -0500717ARM/CALXEDA HIGHBANK ARCHITECTURE
718M: Rob Herring <rob.herring@calxeda.com>
719L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
720S: Maintained
721F: arch/arm/mach-highbank/
722
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300723ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
724M: Anton Vorontsov <avorontsov@mvista.com>
725S: Maintained
726F: arch/arm/mach-cns3xxx/
727T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
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önigb16533d2009-11-30 16:53:24 +0100819F: arch/arm/plat-mxc/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700820F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200821
Shawn Guo8bcb97652011-10-07 22:24:18 +0800822ARM/FREESCALE IMX6
823M: Shawn Guo <shawn.guo@linaro.org>
824L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
825S: Maintained
826T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
827F: arch/arm/mach-imx/*imx6*
828
Shawn Guoa9866a02011-10-21 11:53:34 +0800829ARM/FREESCALE MXS ARM ARCHITECTURE
830M: Shawn Guo <shawn.guo@linaro.org>
831L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
832S: Maintained
833T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
834F: arch/arm/mach-mxs/
835
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800836ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700837M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700838L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800839S: Maintained
840
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100841ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700842M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700843L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100844S: Maintained
845
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200846ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700847M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100848M: Paul Parsons <lost.distance@yahoo.com>
849L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200850S: Maintained
851F: arch/arm/mach-pxa/hx4700.c
852F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100853F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200854
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100855ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700856M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200857W: www.jlime.com
858S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700859T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
860F: arch/arm/mach-sa1100/jornada720.c
861F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100862
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200863ARM/IGEP MACHINE SUPPORT
864M: Enric Balletbo i Serra <eballetbo@gmail.com>
865M: Javier Martinez Canillas <javier@dowhile0.org>
866L: linux-omap@vger.kernel.org
867L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
868S: Maintained
869F: arch/arm/mach-omap2/board-igep0020.c
870
Marek Vasut403d2972010-05-22 00:29:39 +0200871ARM/INCOME PXA270 SUPPORT
872M: Marek Vasut <marek.vasut@gmail.com>
873L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
874S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700875F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200876
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800877ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700878M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700879M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700880L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700881S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100882
883ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700884M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700885L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700886S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800887
888ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700889M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700890M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700891L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700892S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800893
894ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700895M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700896M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700897L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700898S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800899
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800900ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700901M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700902L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800903S: Maintained
904
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200905ARM/INTEL IXP4XX ARM ARCHITECTURE
906M: Imre Kaloz <kaloz@openwrt.org>
907M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100908L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200909S: Maintained
910F: arch/arm/mach-ixp4xx/
911
Joe Perches838553c2010-10-26 14:22:59 -0700912ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100913M: Jonathan Cameron <jic23@cam.ac.uk>
914L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
915S: Maintained
916F: arch/arm/mach-pxa/stargate2.c
917F: drivers/pcmcia/pxa2xx_stargate2.c
918
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800919ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700920M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700921M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700922L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700923S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800924
925ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700926M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700927L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800928S: Maintained
929
930ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700931M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700932L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800933S: Maintained
934
Philipp Zabel3b8861712008-07-09 21:27:15 +0100935ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700936M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100937S: Maintained
938
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200939ARM/Marvell Armada 370 and Armada XP SOC support
940M: Jason Cooper <jason@lakedaemon.net>
941M: Andrew Lunn <andrew@lunn.ch>
942M: Gregory Clement <gregory.clement@free-electrons.com>
943L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
944S: Maintained
945F: arch/arm/mach-mvebu/
946
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400947ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
948M: Jason Cooper <jason@lakedaemon.net>
949M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700950L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400951S: Maintained
952F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400953F: arch/arm/mach-kirkwood/
954F: arch/arm/mach-mv78xx0/
955F: arch/arm/mach-orion5x/
956F: arch/arm/plat-orion/
957
Alexander Clouterd69ac132011-04-14 15:22:02 -0700958ARM/Orion SoC/Technologic Systems TS-78xx platform support
959M: Alexander Clouter <alex@digriz.org.uk>
960L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
961W: http://www.digriz.org.uk/ts78xx/kernel
962S: Maintained
963F: arch/arm/mach-orion5x/ts78xx-*
964
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000965ARM/MICREL KS8695 ARCHITECTURE
966M: Greg Ungerer <gerg@uclinux.org>
967L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
968F: arch/arm/mach-ks8695
969S: Odd Fixes
970
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200971ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700972M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700973L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200974F: arch/arm/mach-pxa/mioa701.c
975S: Maintained
976
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100977ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700978M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100979S: Maintained
980
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100981ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700982M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200983M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700984M: STEricsson <STEricsson_nomadik_linux@list.st.com>
985L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
986S: Maintained
987F: arch/arm/mach-nomadik/
988F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100989F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200990T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100991
Andy Green9d762952009-05-19 06:41:42 -0300992ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700993M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300994L: openmoko-kernel@lists.openmoko.org (subscribers-only)
995W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
996S: Supported
997
Daniel Walker0c19d212009-12-07 16:53:51 -0800998ARM/QUALCOMM MSM MACHINE SUPPORT
999M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001000M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001001M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001002L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001003F: arch/arm/mach-msm/
1004F: drivers/video/msm/
1005F: drivers/mmc/host/msm_sdcc.c
1006F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001007F: drivers/tty/serial/msm_serial.h
1008F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -07001009F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001010F: drivers/*/pm8???-*
1011F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001012T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001013S: Maintained
1014
Dirk Opfer8459c152005-11-06 14:27:52 +00001015ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001016M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1017M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001018S: Maintained
1019
Marek Vasut5d783a22009-07-16 13:26:48 +02001020ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001021M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001022L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001023W: http://hackndev.com
1024S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001025F: arch/arm/mach-pxa/include/mach/palmtx.h
1026F: arch/arm/mach-pxa/palmtx.c
1027F: arch/arm/mach-pxa/include/mach/palmt5.h
1028F: arch/arm/mach-pxa/palmt5.c
1029F: arch/arm/mach-pxa/include/mach/palmld.h
1030F: arch/arm/mach-pxa/palmld.c
1031F: arch/arm/mach-pxa/include/mach/palmte2.h
1032F: arch/arm/mach-pxa/palmte2.c
1033F: arch/arm/mach-pxa/include/mach/palmtc.h
1034F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001035
Joe Perchesb57fe922009-12-14 18:00:52 -08001036ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001037M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001038L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001039W: http://hackndev.com
1040S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001041F: arch/arm/mach-pxa/include/mach/palmtreo.h
1042F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001043
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001044ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001045M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001046L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001047W: http://hackndev.com
1048S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001049F: arch/arm/mach-pxa/include/mach/palmz72.h
1050F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001053M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1055S: Maintained
1056
1057ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001058M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001059L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060W: http://www.arm.linux.org.uk/
1061S: Maintained
1062
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001063ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001064M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001065L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001066S: Maintained
1067
Russell Kingd4275352009-04-16 14:05:27 +01001068ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001069M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001070L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001071W: http://www.arm.linux.org.uk/
1072S: Maintained
1073F: arch/arm/common/time-acorn.c
1074F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1075F: arch/arm/include/asm/hardware/ioc.h
1076F: arch/arm/include/asm/hardware/iomd.h
1077F: arch/arm/include/asm/hardware/memc.h
1078F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001079F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001080F: drivers/net/ethernet/i825xx/ether1*
1081F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001082F: drivers/scsi/arm/
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001085M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086W: http://www.shark-linux.de/shark.html
1087S: Maintained
1088
Ben Dooksb21477f2009-06-13 10:46:34 +01001089ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001090M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001091M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001092L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001093L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001094W: http://www.fluff.org/ben/linux/
1095S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001096F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001097F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001098F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001099F: arch/arm/mach-s3c24*/
1100F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001101F: drivers/*/*s3c2410*
1102F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001103F: drivers/spi/spi-s3c*
1104F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001106ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001107M: Kukjin Kim <kgene.kim@samsung.com>
1108L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1109L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1110S: Maintained
1111F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001112F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001113
Kyungmin Park10ffa962011-03-04 17:36:26 -08001114ARM/SAMSUNG MOBILE MACHINE SUPPORT
1115M: Kyungmin Park <kyungmin.park@samsung.com>
1116L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1117S: Maintained
1118F: arch/arm/mach-s5pv210/mach-aquila.c
1119F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001120F: arch/arm/mach-exynos/mach-universal_c210.c
1121F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001122
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001123ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1124M: Kyungmin Park <kyungmin.park@samsung.com>
1125M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1126L: linux-arm-kernel@lists.infradead.org
1127L: linux-media@vger.kernel.org
1128S: Maintained
1129F: arch/arm/plat-s5p/dev-fimc*
1130F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001131F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001132
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001133ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1134M: Kyungmin Park <kyungmin.park@samsung.com>
1135M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001136M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001137L: linux-arm-kernel@lists.infradead.org
1138L: linux-media@vger.kernel.org
1139S: Maintained
1140F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001141F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001142
1143ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1144M: Kyungmin Park <kyungmin.park@samsung.com>
1145M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1146L: linux-arm-kernel@lists.infradead.org
1147L: linux-media@vger.kernel.org
1148S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001149F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001150
Paul Mundtd48d38e2010-02-08 12:50:24 +09001151ARM/SHMOBILE ARM ARCHITECTURE
1152M: Paul Mundt <lethal@linux-sh.org>
1153M: Magnus Damm <magnus.damm@gmail.com>
1154L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001155W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001156Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001157T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001158S: Supported
1159F: arch/arm/mach-shmobile/
1160F: drivers/sh/
1161
Dinh Nguyen66314222012-07-18 16:07:18 -06001162ARM/SOCFPGA ARCHITECTURE
1163M: Dinh Nguyen <dinguyen@altera.com>
1164S: Maintained
1165F: arch/arm/mach-socfpga/
1166
1167ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1168M: Dinh Nguyen <dinguyen@altera.com>
1169S: Maintained
1170F: drivers/clk/socfpga/
1171
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001172ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001173M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001174L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001175S: Maintained
1176
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001177ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001178M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001179L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1180S: Maintained
1181
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001182ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001183M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001184L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001185S: Maintained
1186
wanzongshun98ad6e32009-02-13 06:04:32 +01001187ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001188M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001189L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001190W: http://www.mcuos.com
1191S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001192F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001193F: drivers/input/keyboard/w90p910_keypad.c
1194F: drivers/input/touchscreen/w90p910_ts.c
1195F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001196F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001197F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001198F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001199F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001200F: drivers/usb/host/ehci-w90x900.c
1201F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001202
Linus Walleij54274d72010-04-04 10:58:03 +01001203ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001204M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001205L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1206S: Supported
1207F: arch/arm/mach-u300/
1208F: drivers/i2c/busses/i2c-stu300.c
1209F: drivers/rtc/rtc-coh901331.c
1210F: drivers/watchdog/coh901327_wdt.c
1211F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001212F: drivers/mfd/ab3100*
1213F: drivers/rtc/rtc-ab3100.c
1214F: drivers/rtc/rtc-coh901331.c
1215T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001216
Linus Walleij87572882010-12-22 09:18:29 +01001217ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001218M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001219M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001220L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1221S: Maintained
1222F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001223F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001224F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001225F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001226F: drivers/mfd/abx500*
1227F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001228F: drivers/mfd/dbx500*
1229F: drivers/mfd/db8500*
1230F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001231F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001232F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001233T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001234
Russell Kingd4275352009-04-16 14:05:27 +01001235ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001236M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001237L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001238W: http://www.arm.linux.org.uk/
1239S: Maintained
1240F: arch/arm/vfp/
1241
Marek Vasute66b6d82010-03-26 06:51:32 +01001242ARM/VOIPAC PXA270 SUPPORT
1243M: Marek Vasut <marek.vasut@gmail.com>
1244L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1245S: Maintained
1246F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001247F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001248
Tony Prisk04529fe2012-07-24 04:19:37 +12001249ARM/VT8500 ARM ARCHITECTURE
1250M: Tony Prisk <linux@prisktech.co.nz>
1251L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1252S: Maintained
1253F: arch/arm/mach-vt8500/
1254F: drivers/video/vt8500lcdfb.*
1255F: drivers/video/wm8505fb*
1256F: drivers/video/wmt_ge_rops.*
1257F: drivers/tty/serial/vt8500_serial.c
1258F: drivers/rtc/rtc-vt8500-c
1259
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>
1269L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1270S: Maintained
1271F: arch/arm64/
1272
George Josephd58de032010-03-05 22:17:25 +01001273ASC7621 HARDWARE MONITOR DRIVER
1274M: George Joseph <george.joseph@fairview5.com>
1275L: lm-sensors@lm-sensors.org
1276S: Maintained
1277F: Documentation/hwmon/asc7621
1278F: drivers/hwmon/asc7621.c
1279
Corentin Charyb229ece2011-02-26 10:20:40 +01001280ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001281M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05001283L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001284W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001286F: drivers/platform/x86/asus*.c
1287F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001289ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001290M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001291L: lm-sensors@lm-sensors.org
1292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001293F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001294
Andrew Morton953a6472008-11-06 12:53:28 -08001295ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001296M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001297W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001299F: Documentation/crypto/async-tx-api.txt
1300F: crypto/async_tx/
1301F: drivers/dma/
1302F: include/linux/dmaengine.h
1303F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001304
Wolfram Sanga1867d32009-09-18 22:45:51 +02001305AT24 EEPROM DRIVER
1306M: Wolfram Sang <w.sang@pengutronix.de>
1307L: linux-i2c@vger.kernel.org
1308S: Maintained
1309F: drivers/misc/eeprom/at24.c
1310F: include/linux/i2c/at24.h
1311
Randy Dunlape7839f22008-10-12 16:11:45 -07001312ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001313M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001314W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001316F: Documentation/aoe/
1317F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Joe Perches9a10a872010-12-01 09:37:55 -08001319ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001320M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001321L: linux-wireless@vger.kernel.org
1322S: Supported
1323F: drivers/net/wireless/ath/*
1324
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001325ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001326M: Jiri Slaby <jirislaby@gmail.com>
1327M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001328M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001329L: linux-wireless@vger.kernel.org
1330L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001331W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001332S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001333F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001334
Kalle Valo12e62d62011-09-13 10:21:25 +03001335ATHEROS ATH6KL WIRELESS DRIVER
1336M: Kalle Valo <kvalo@qca.qualcomm.com>
1337L: linux-wireless@vger.kernel.org
1338W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1339T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1340S: Supported
1341F: drivers/net/wireless/ath/ath6kl/
1342
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001343ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001344M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1345M: Jouni Malinen <jouni@qca.qualcomm.com>
1346M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1347M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001348L: linux-wireless@vger.kernel.org
1349L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001350W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001351S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001352F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001353
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001354CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1355M: Christian Lamparter <chunkeey@googlemail.com>
1356L: linux-wireless@vger.kernel.org
1357W: http://wireless.kernel.org/en/users/Drivers/carl9170
1358S: Maintained
1359F: drivers/net/wireless/ath/carl9170/
1360
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001361ATK0110 HWMON DRIVER
1362M: Luca Tettamanti <kronos.it@gmail.com>
1363L: lm-sensors@lm-sensors.org
1364S: Maintained
1365F: drivers/hwmon/asus_atk0110.c
1366
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001367ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001368M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001370F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001371
Chris Snook7ae115b2008-09-09 03:26:57 -04001372ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001373M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001374M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001375L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001376W: http://sourceforge.net/projects/atl1
1377W: http://atl1.sourceforge.net
1378S: Maintained
Jeff Kirsher2b133ad62011-05-20 06:55:16 -07001379F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001382M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001383L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001384L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385W: http://linux-atm.sourceforge.net
1386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001387F: drivers/atm/
1388F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Pierre Ossman272f1332007-05-14 21:25:26 +02001390ATMEL AT91 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001391M: Ludovic Desroches <ludovic.desroches@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001392L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001393W: http://www.atmel.com/products/AT91/
1394W: http://www.at91.com/
1395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001396F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001397
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001398ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001399M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001400S: Maintained
1401F: drivers/mmc/host/atmel-mci.c
1402F: drivers/mmc/host/atmel-mci-regs.h
1403
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001404ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001405M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001406S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001407F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001408
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001409ATMEL DMA DRIVER
1410M: Nicolas Ferre <nicolas.ferre@atmel.com>
1411L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1412S: Supported
1413F: drivers/dma/at_hdmac.c
1414F: drivers/dma/at_hdmac_regs.h
1415F: arch/arm/mach-at91/include/mach/at_hdmac.h
1416
Josh Wu15515542012-03-23 17:56:29 +08001417ATMEL ISI DRIVER
1418M: Josh Wu <josh.wu@atmel.com>
1419L: linux-media@vger.kernel.org
1420S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001421F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001422F: include/media/atmel-isi.h
1423
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001424ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001425M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001426L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001428F: drivers/video/atmel_lcdfb.c
1429F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001430
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001431ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001432M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001433S: Supported
Jeff Kirsher9f2f381f2011-06-18 01:52:36 -07001434F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001435
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001436ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001437M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001438S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001439F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001440
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001441ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1442M: Nicolas Ferre <nicolas.ferre@atmel.com>
1443L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1444S: Supported
1445F: drivers/misc/atmel_tclib.c
1446F: drivers/clocksource/tcb_clksrc.c
1447
Josh Wuff2675d2012-03-23 17:56:55 +08001448ATMEL TSADCC DRIVER
1449M: Josh Wu <josh.wu@atmel.com>
1450L: linux-input@vger.kernel.org
1451S: Supported
1452F: drivers/input/touchscreen/atmel_tsadcc.c
1453
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001454ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001455M: Nicolas Ferre <nicolas.ferre@atmel.com>
1456L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001457S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001458F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001461M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001462L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463W: http://www.thekelleys.org.uk/atmel
1464W: http://atmelwlandriver.sourceforge.net/
1465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001466F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Chris Wrighta92b7b82005-07-07 18:12:23 -07001468AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001469M: Al Viro <viro@zeniv.linux.org.uk>
1470M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001471L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001472W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001473T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001475F: include/linux/audit.h
1476F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001477
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001478AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001479M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001480W: http://miguelojeda.es/auxdisplay.htm
1481W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001483F: drivers/auxdisplay/
1484F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001485
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001486AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001487M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1488M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001489W: http://www.atmel.com/products/AVR32/
1490W: http://avr32linux.org/
1491W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001493F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001494
1495AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001496M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1497M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001499F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001502M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001504W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001506F: include/linux/ax25.h
1507F: include/net/ax25.h
1508F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001510AZ6007 DVB DRIVER
1511M: Mauro Carvalho Chehab <mchehab@redhat.com>
1512L: linux-media@vger.kernel.org
1513W: http://linuxtv.org
1514T: git git://linuxtv.org/media_tree.git
1515S: Maintained
1516F: drivers/media/usb/dvb-usb-v2/az6007.c
1517
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001518B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001519M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001520L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001521L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001522W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001524F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001525
1526B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001527M: Larry Finger <Larry.Finger@lwfinger.net>
1528M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001529L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001530L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001531W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001533F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001534
Richard Purdie300abeb2007-02-07 22:21:07 +00001535BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001536M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001538F: drivers/video/backlight/
1539F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001540
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001541BATMAN ADVANCED
1542M: Marek Lindner <lindner_marek@yahoo.de>
1543M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001544M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001545L: b.a.t.m.a.n@lists.open-mesh.org
1546W: http://www.open-mesh.org/
1547S: Maintained
1548F: net/batman-adv/
1549
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001550BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001551M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001552L: linux-hams@vger.kernel.org
1553W: http://www.baycom.org/~tom/ham/ham.html
1554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001555F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001556
1557BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001558S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001559F: Documentation/filesystems/befs.txt
1560F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001561
1562BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001563M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001565F: Documentation/filesystems/bfs.txt
1566F: fs/bfs/
1567F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001568
Bryan Wu1394f032007-05-06 14:50:22 -07001569BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001570M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001571L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001572W: http://blackfin.uclinux.org
1573S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001574F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001575
Bryan Wue190d6b2007-07-17 14:43:44 +08001576BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001577L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001578W: http://blackfin.uclinux.org
1579S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001580F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001581
Mike Frysinger566da5b2007-06-11 15:31:30 +08001582BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001583M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001584L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001585W: http://blackfin.uclinux.org
1586S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001587F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001588
Mike Frysinger936ed492010-03-10 15:20:38 -08001589BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001590M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001591L: uclinux-dist-devel@blackfin.uclinux.org
1592W: http://blackfin.uclinux.org
1593S: Supported
1594F: drivers/mmc/host/bfin_sdh.c
1595
Bryan Wu1394f032007-05-06 14:50:22 -07001596BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001597M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001598L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001599W: http://blackfin.uclinux.org
1600S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001601F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001602
Bryan Wu1e6d3202007-07-15 02:50:02 +08001603BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001604M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001605L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001606W: http://blackfin.uclinux.org
1607S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001608F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001609
Bryan Wud24ecfc2007-05-01 23:26:32 +02001610BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001611M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001612L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001613W: http://blackfin.uclinux.org/
1614S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001615F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001616
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001617BLINKM RGB LED DRIVER
1618M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1619S: Maintained
1620F: drivers/leds/leds-blinkm.c
1621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001623M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001624T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001626F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Joern Engel2b54aae2008-02-06 01:38:02 -08001628BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001629M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001630L: linux-mtd@lists.infradead.org
1631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001632F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001633
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001634BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001635M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001636M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001637M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001638L: linux-bluetooth@vger.kernel.org
1639W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001640T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1641T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001643F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001646M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001647M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001648M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001649L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001650W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001651T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1652T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001654F: net/bluetooth/
1655F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001658M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001659M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001660L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001661W: http://sourceforge.net/projects/bonding/
1662S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001663F: drivers/net/bonding/
1664F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Gary Zambrano39105892006-06-22 17:26:20 -07001666BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001667M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001668L: netdev@vger.kernel.org
1669S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001670F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001671
Michael Chan948c51e2006-06-04 02:51:39 -07001672BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001673M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001674L: netdev@vger.kernel.org
1675S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001676F: drivers/net/ethernet/broadcom/bnx2.*
1677F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001678
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001679BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001680M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001681L: netdev@vger.kernel.org
1682S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001683F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001684
Stephen Warrenf680f252012-09-15 00:18:54 -06001685BROADCOM BCM2835 ARM ARCHICTURE
1686M: Stephen Warren <swarren@wwwdotorg.org>
1687L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1688T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1689S: Maintained
1690F: arch/arm/mach-bcm2835/
1691F: arch/arm/boot/dts/bcm2835*
1692F: arch/arm/configs/bcm2835_defconfig
1693F: drivers/*/*bcm2835*
1694
Michael Chan948c51e2006-06-04 02:51:39 -07001695BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001696M: Matt Carlson <mcarlson@broadcom.com>
1697M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001698L: netdev@vger.kernel.org
1699S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001700F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001701
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001702BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1703M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001704M: Roland Vossen <rvossen@broadcom.com>
1705M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001706M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1707M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001708L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001709L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001710S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001711F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001712
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001713BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1714M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1715L: linux-scsi@vger.kernel.org
1716S: Supported
1717F: drivers/scsi/bnx2fc/
1718
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001719BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1720M: Rafał Miłecki <zajec5@gmail.com>
1721L: linux-wireless@vger.kernel.org
1722S: Maintained
1723F: drivers/bcma/
1724F: include/linux/bcma/
1725
Jing Huang7725ccf2009-09-23 17:46:15 -07001726BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001727M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001728L: linux-scsi@vger.kernel.org
1729S: Supported
1730F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001731
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001732BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1733M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001734L: netdev@vger.kernel.org
1735S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001736F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001737
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001738BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001739M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001740L: linux-scsi@vger.kernel.org
1741S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001742F: block/bsg.c
1743F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001744
Clemens Ladischaf399172011-01-10 16:32:54 +01001745BT87X AUDIO DRIVER
1746M: Clemens Ladisch <clemens@ladisch.de>
1747L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1748T: git git://git.alsa-project.org/alsa-kernel.git
1749S: Maintained
1750F: Documentation/sound/alsa/Bt87x.txt
1751F: sound/pci/bt87x.c
1752
Michael Bueschff1d5c22008-07-25 01:46:10 -07001753BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001754M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001755W: http://bu3sch.de/btgpio.php
1756S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001757F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001758
Joe Percheseb1eb042009-01-21 10:49:16 -05001759BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001760M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001761L: linux-btrfs@vger.kernel.org
1762W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001763Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001764T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001766F: Documentation/filesystems/btrfs.txt
1767F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001770M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001771L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001772W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001773T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001774S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001775F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001776F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Clemens Ladischaf399172011-01-10 16:32:54 +01001778C-MEDIA CMI8788 DRIVER
1779M: Clemens Ladisch <clemens@ladisch.de>
1780L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1781T: git git://git.alsa-project.org/alsa-kernel.git
1782S: Maintained
1783F: sound/pci/oxygen/
1784
Mark Salter21413552011-10-04 11:21:42 -04001785C6X ARCHITECTURE
1786M: Mark Salter <msalter@redhat.com>
1787M: Aurelien Jacquiot <a-jacquiot@ti.com>
1788L: linux-c6x-dev@linux-c6x.org
1789W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1790S: Maintained
1791F: arch/c6x/
1792
David Howellsa5432f5a2009-04-20 15:46:45 +01001793CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001794M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01001795L: linux-cachefs@redhat.com
1796S: Supported
1797F: Documentation/filesystems/caching/cachefiles.txt
1798F: fs/cachefiles/
1799
Hans Verkuilc815ca32012-11-23 07:05:54 -03001800CADET FM/AM RADIO RECEIVER DRIVER
1801M: Hans Verkuil <hverkuil@xs4all.nl>
1802L: linux-media@vger.kernel.org
1803T: git git://linuxtv.org/media_tree.git
1804W: http://linuxtv.org
1805S: Maintained
1806F: drivers/media/radio/radio-cadet*
1807
Jonathan Corbet77d51402007-03-22 19:44:17 -03001808CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001809M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001810L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001811T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001813F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001814F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001815
Joe Perches201b6ba2010-09-07 20:33:24 +00001816CAIF NETWORK LAYER
1817M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1818L: netdev@vger.kernel.org
1819S: Supported
1820F: Documentation/networking/caif/
1821F: drivers/net/caif/
1822F: include/linux/caif/
1823F: include/net/caif/
1824F: net/caif/
1825
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001826CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001827M: Muli Ben-Yehuda <muli@il.ibm.com>
1828M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001829L: discuss@x86-64.org
1830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001831F: arch/x86/kernel/pci-calgary_64.c
1832F: arch/x86/kernel/tce_64.c
1833F: arch/x86/include/asm/calgary.h
1834F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001835
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001836CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001837M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001838L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001839W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001840T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001841S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001842F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001843F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001844F: include/linux/can/core.h
1845F: include/linux/can/bcm.h
1846F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001847F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001848
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001849CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001850M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001851M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001852L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001853W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001854T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001855S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001856F: drivers/net/can/
1857F: include/linux/can/dev.h
1858F: include/linux/can/error.h
1859F: include/linux/can/netlink.h
1860F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001861
James Morris95d16c72012-03-16 12:05:48 +11001862CAPABILITIES
1863M: Serge Hallyn <serge.hallyn@canonical.com>
1864L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001865S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001866F: include/linux/capability.h
1867F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001868F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001869F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001870
Arnd Bergmannb8154542008-05-16 11:10:59 +02001871CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001872M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001873L: linuxppc-dev@lists.ozlabs.org
1874L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001875W: http://www.ibm.com/developerworks/power/cell/
1876S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001877F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001878F: arch/powerpc/include/asm/spu*.h
1879F: arch/powerpc/oprofile/*cell*
1880F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001881
Sage Weil9030aaf2009-10-06 11:31:15 -07001882CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001883M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001884L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001885W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001886T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001887S: Supported
1888F: Documentation/filesystems/ceph.txt
1889F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001890F: net/ceph
1891F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001892F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001893
David Vrabel18332a82008-09-17 16:34:44 +01001894CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001895L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001896S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001897F: Documentation/usb/WUSB-Design-overview.txt
1898F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001899F: drivers/usb/host/hwa-hc.c
1900F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001901F: drivers/usb/wusbcore/
1902F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001903
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001904CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001905M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001906W: http://miguelojeda.es/auxdisplay.htm
1907W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001909F: drivers/auxdisplay/cfag12864b.c
1910F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001911
1912CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001913M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001914W: http://miguelojeda.es/auxdisplay.htm
1915W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001917F: drivers/auxdisplay/cfag12864bfb.c
1918F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001919
Johannes Berg704232c2007-04-23 12:20:05 -07001920CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001921M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001922L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001923W: http://wireless.kernel.org/
1924T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1925T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001927F: include/linux/nl80211.h
1928F: include/net/cfg80211.h
1929F: net/wireless/*
1930X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001931
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001932CHAR and MISC DRIVERS
1933M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001934M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001935T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001936S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001937F: drivers/char/*
1938F: drivers/misc/*
1939
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001940CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001941M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001942S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001943F: scripts/checkpatch.pl
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001944
Harry Weif8407f262011-02-25 14:44:15 -08001945CHINESE DOCUMENTATION
1946M: Harry Wei <harryxiyou@gmail.com>
1947L: xiyoulinuxkernelgroup@googlegroups.com
1948L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1949S: Maintained
1950F: Documentation/zh_CN/
1951
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001952CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1953M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1954L: linux-usb@vger.kernel.org
1955S: Maintained
1956F: drivers/usb/chipidea/
1957
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001958CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001959M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001960M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001961M: Neel Patel <neepatel@cisco.com>
1962M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001963S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001964F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001965
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001966CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001967M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001968L: netdev@vger.kernel.org
1969S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001970F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001971
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001972CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001973M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001974L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001976F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001977
Timur Tabid9e9d822008-04-24 08:45:26 +10001978CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001979M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001980L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001982F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001983
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001984CLEANCACHE API
1985M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1986L: linux-kernel@vger.kernel.org
1987S: Maintained
1988F: mm/cleancache.c
1989F: include/linux/cleancache.h
1990
Russell Kingd4275352009-04-16 14:05:27 +01001991CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001992M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001993S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001994F: include/linux/clk.h
1995
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001996CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001997M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001998M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1999M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002000L: linux-scsi@vger.kernel.org
2001S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002002F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002003
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002004CMPC ACPI DRIVER
2005M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2006M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05002007L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002008S: Supported
2009F: drivers/platform/x86/classmate-laptop.c
2010
Nicolas Palix74425ee2010-06-06 17:15:01 +02002011COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002012M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002013M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002014M: Nicolas Palix <nicolas.palix@imag.fr>
2015L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002016W: http://coccinelle.lip6.fr/
2017S: Supported
2018F: scripts/coccinelle/
2019F: scripts/coccicheck
2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002022M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023M: coda@cs.cmu.edu
2024L: codalist@coda.cs.cmu.edu
2025W: http://www.coda.cs.cmu.edu/
2026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002027F: Documentation/filesystems/coda.txt
2028F: fs/coda/
2029F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
Mike Turquette7704add2012-05-02 18:37:45 -07002031COMMON CLK FRAMEWORK
2032M: Mike Turquette <mturquette@ti.com>
2033M: Mike Turquette <mturquette@linaro.org>
2034L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2035T: git git://git.linaro.org/people/mturquette/linux.git
2036S: Maintained
2037F: drivers/clk/clk.c
2038F: drivers/clk/clk-*
2039F: include/linux/clk-pr*
2040
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002041COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002042M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002043L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002044L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002045W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002046Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002047T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002048S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002049F: Documentation/filesystems/cifs.txt
2050F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002053M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002054L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002056F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
2058COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002059M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002060L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002062F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
2064COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002065M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002066L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002068F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002070COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002071M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002072L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002074F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002075
Simon Arlott949be0f2007-03-06 02:47:46 -08002076CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002077M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002078L: accessrunner-general@lists.sourceforge.net
2079W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002081F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002082
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002083CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002084M: Joel Becker <jlbec@evilplan.org>
2085T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002086S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002087F: fs/configfs/
2088F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002089
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002090CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002091M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002092L: netdev@vger.kernel.org
2093S: Maintained
2094F: drivers/connector/
2095
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002096CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002097M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002098M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002099L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002100L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002101T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002103F: include/linux/cgroup*
2104F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002105F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002106
Rudolf Marekbebe4672007-05-08 17:22:02 +02002107CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002108M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002109L: lm-sensors@lm-sensors.org
2110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002111F: Documentation/hwmon/coretemp
2112F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002115M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116W: http://www.fi.muni.cz/~kas/cosa/
2117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002118F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Florian Fainelli4371ee32009-06-01 02:43:17 -07002120CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002121M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002122L: netdev@vger.kernel.org
2123S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002124F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002127M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002128L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002129L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002131F: drivers/cpufreq/
2132F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
2134CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002135M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002137F: arch/x86/kernel/cpuid.c
2138F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002140CPU POWER MONITORING SUBSYSTEM
2141M: Dominik Brodowski <linux@dominikbrodowski.net>
2142M: Thomas Renninger <trenn@suse.de>
2143S: Maintained
2144F: tools/power/cpupower
2145
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002146CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002147M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002148W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002149W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002150S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002151F: Documentation/cgroups/cpusets.txt
2152F: include/linux/cpuset.h
2153F: kernel/cpuset.c
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002154
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002156W: http://sourceforge.net/projects/cramfs/
2157S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002158F: Documentation/filesystems/cramfs.txt
2159F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
2161CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002162M: Mikael Starvik <starvik@axis.com>
2163M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002164L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165W: http://developer.axis.com
2166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002167F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002168F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
2170CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002171M: Herbert Xu <herbert@gondor.apana.org.au>
2172M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002174T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002176F: Documentation/crypto/
2177F: arch/*/crypto/
2178F: crypto/
2179F: drivers/crypto/
2180F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
Neil Horman5b07bd52009-02-05 16:03:04 +11002182CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002183M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002184L: linux-crypto@vger.kernel.org
2185S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002186F: crypto/ansi_cprng.c
2187F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002188
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002189CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002190M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002192F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002193
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002194CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002195M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002196L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002197L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002198T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002199W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002200W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002202F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002203F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002204F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002205
Hans Verkuil3f101d92012-11-23 07:00:02 -03002206CX2341X MPEG ENCODER HELPER MODULE
2207M: Hans Verkuil <hverkuil@xs4all.nl>
2208L: linux-media@vger.kernel.org
2209T: git git://linuxtv.org/media_tree.git
2210W: http://linuxtv.org
2211S: Maintained
2212F: drivers/media/i2c/cx2341x*
2213F: include/media/cx2341x*
2214
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002215CX88 VIDEO4LINUX DRIVER
2216M: Mauro Carvalho Chehab <mchehab@redhat.com>
2217L: linux-media@vger.kernel.org
2218W: http://linuxtv.org
2219T: git git://linuxtv.org/media_tree.git
2220S: Odd fixes
2221F: Documentation/video4linux/cx88/
2222F: drivers/media/pci/cx88/
2223
Antti Palosaari91952bc2012-10-01 12:28:46 -03002224CXD2820R MEDIA DRIVER
2225M: Antti Palosaari <crope@iki.fi>
2226L: linux-media@vger.kernel.org
2227W: http://linuxtv.org/
2228W: http://palosaari.fi/linux/
2229Q: http://patchwork.linuxtv.org/project/linux-media/list/
2230T: git git://linuxtv.org/anttip/media_tree.git
2231S: Maintained
2232F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002233
Steve Wisee5ec3782008-05-20 14:06:33 -07002234CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002235M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002236L: netdev@vger.kernel.org
2237W: http://www.chelsio.com
2238S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002239F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002240
2241CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002242M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002243L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002244W: http://www.openfabrics.org
2245S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002246F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002247
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002248CXGB4 ETHERNET DRIVER (CXGB4)
2249M: Dimitris Michailidis <dm@chelsio.com>
2250L: netdev@vger.kernel.org
2251W: http://www.chelsio.com
2252S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002253F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002254
2255CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2256M: Steve Wise <swise@chelsio.com>
2257L: linux-rdma@vger.kernel.org
2258W: http://www.openfabrics.org
2259S: Supported
2260F: drivers/infiniband/hw/cxgb4/
2261
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002262CXGB4VF ETHERNET DRIVER (CXGB4VF)
2263M: Casey Leedom <leedom@chelsio.com>
2264L: netdev@vger.kernel.org
2265W: http://www.chelsio.com
2266S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002267F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002268
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002269STMMAC ETHERNET DRIVER
2270M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2271L: netdev@vger.kernel.org
2272W: http://www.stlinux.com
2273S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002274F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002275
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002277M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002278L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279W: http://www.arm.linux.org.uk/
2280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002281F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002284M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002285W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002287F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
2289CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002291S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002292F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002293F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
2295CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002297S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002298F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002300CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002301M: Javier Martinez Canillas <javier@dowhile0.org>
2302L: linux-input@vger.kernel.org
2303S: Maintained
2304F: drivers/input/touchscreen/cyttsp*
2305F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002308M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309W: http://yaina.de/jreuter/
2310W: http://www.qsl.net/dl1bke/
2311L: linux-hams@vger.kernel.org
2312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002313F: net/ax25/af_ax25.c
2314F: net/ax25/ax25_dev.c
2315F: net/ax25/ax25_ds_*
2316F: net/ax25/ax25_in.c
2317F: net/ax25/ax25_out.c
2318F: net/ax25/ax25_timer.c
2319F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002321DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002322L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002323S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002324F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002325F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002326
2327DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002328M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002329W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002330M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002332F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002335M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002336M: Ali Akcaagac <aliakc@web.de>
2337M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002339L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340L: http://lists.twibble.org/mailman/listinfo/dc395x/
2341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002342F: Documentation/scsi/dc395x.txt
2343F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002345DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002346M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002347L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002348W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002350F: include/linux/dccp.h
2351F: include/linux/tfrc.h
2352F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002353
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355W: http://linux-decnet.sourceforge.net
2356L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002357S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002358F: Documentation/networking/decnet.txt
2359F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
2361DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002362M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002364F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002366DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002367M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05002368L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002370F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002371
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002373M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374W: http://www.debian.org/~dz/i8k/
2375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002376F: drivers/char/i8k.c
2377F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
Doug Warzecha90563ec2005-09-06 15:17:15 -07002379DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002380M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002382F: Documentation/dcdbas.txt
2383F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002384
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002385DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002386M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002387S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002388F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002389
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002390DESIGNWARE USB3 DRD IP DRIVER
2391M: Felipe Balbi <balbi@ti.com>
2392L: linux-usb@vger.kernel.org
2393L: linux-omap@vger.kernel.org
2394T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2395S: Maintained
2396F: drivers/usb/dwc3/
2397
Kyungmin Park89d07762012-01-10 15:09:09 -08002398DEVICE FREQUENCY (DEVFREQ)
2399M: MyungJoo Ham <myungjoo.ham@samsung.com>
2400M: Kyungmin Park <kyungmin.park@samsung.com>
2401L: linux-kernel@vger.kernel.org
2402S: Maintained
2403F: drivers/devfreq/
2404
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002406M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408S: Maintained
2409
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002410DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002411M: Alasdair Kergon <agk@redhat.com>
2412M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002413L: dm-devel@redhat.com
2414W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002415Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002416T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002418F: Documentation/device-mapper/
2419F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002420F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002421F: include/linux/device-mapper.h
2422F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002423
Guenter Roeck335d7c52011-01-26 11:45:49 -08002424DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002425M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002426L: linux-i2c@vger.kernel.org
2427S: Maintained
2428F: drivers/i2c/busses/i2c-diolan-u2c.c
2429
Randy Dunlape7839f22008-10-12 16:11:45 -07002430DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002431M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002433F: Documentation/filesystems/dnotify.txt
2434F: fs/notify/dnotify/
2435F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
2437DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002438M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2440W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2441W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2442S: Maintained
2443
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002444DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002445M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002447F: Documentation/filesystems/quota.txt
2448F: fs/quota/
2449F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Bernie Thompson702686a2012-03-01 13:52:13 -08002451DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2452M: Bernie Thompson <bernie@plugable.com>
2453L: linux-fbdev@vger.kernel.org
2454S: Maintained
2455W: http://plugable.com/category/projects/udlfb/
2456F: drivers/video/udlfb.c
2457F: include/video/udlfb.h
2458F: Documentation/fb/udlfb.txt
2459
Randy Dunlape7839f22008-10-12 16:11:45 -07002460DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002461M: Christine Caulfield <ccaulfie@redhat.com>
2462M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002463L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002464W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002465T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002466S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002467F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002468
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302469DMA BUFFER SHARING FRAMEWORK
2470M: Sumit Semwal <sumit.semwal@linaro.org>
2471S: Maintained
2472L: linux-media@vger.kernel.org
2473L: dri-devel@lists.freedesktop.org
2474L: linaro-mm-sig@lists.linaro.org
2475F: drivers/base/dma-buf*
2476F: include/linux/dma-buf*
2477F: Documentation/dma-buf-sharing.txt
2478T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2479
Dan Williamsb3e5f262007-08-07 10:26:35 -07002480DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002481M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002482M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002483S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002484F: drivers/dma/
2485F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302486T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2487T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002488
Juerg Haefligerb8250372007-06-09 10:11:16 -04002489DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002490M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002491L: lm-sensors@lm-sensors.org
2492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002493F: Documentation/hwmon/dme1737
2494F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002495
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002496DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002497M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002498L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002500F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002501
Joe Perches7d2c86b2009-04-07 20:59:01 -07002502DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002503M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002504L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002505T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002507F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002508
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002510M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511L: blinux-list@redhat.com
2512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002513F: drivers/char/dtlk.c
2514F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002516DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002517M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002518L: linux-scsi@vger.kernel.org
2519W: http://www.adaptec.com/
2520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002521F: drivers/scsi/dpt*
2522F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002523
Philipp Reisnerb411b362009-09-25 16:07:19 -07002524DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002525P: Philipp Reisner
2526P: Lars Ellenberg
2527M: drbd-dev@lists.linbit.com
2528L: drbd-user@lists.linbit.com
2529W: http://www.drbd.org
2530T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2531T: git git://git.drbd.org/drbd-8.3.git
2532S: Supported
2533F: drivers/block/drbd/
2534F: lib/lru_cache.c
2535F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002536
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002537DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002538M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002539T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002541F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002542F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002543F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002544F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002545F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002546F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002547F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
2549DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002550M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002551L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002552T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002554F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002555F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Chris Wilson8daf7472010-09-28 14:07:26 +01002557INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002558M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002559L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002560L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002561T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002562S: Supported
2563F: drivers/gpu/drm/i915
2564F: include/drm/i915*
2565
Kyungmin Park398a6d42011-11-02 11:33:16 +09002566DRM DRIVERS FOR EXYNOS
2567M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002568M: Joonyoung Shim <jy0922.shim@samsung.com>
2569M: Seung-Woo Kim <sw0312.kim@samsung.com>
2570M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002571L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002572T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002573S: Supported
2574F: drivers/gpu/drm/exynos
2575F: include/drm/exynos*
2576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002578M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002579L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002581F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
Antti Palosaari91952bc2012-10-01 12:28:46 -03002583DVB_USB_AF9015 MEDIA DRIVER
2584M: Antti Palosaari <crope@iki.fi>
2585L: linux-media@vger.kernel.org
2586W: http://linuxtv.org/
2587W: http://palosaari.fi/linux/
2588Q: http://patchwork.linuxtv.org/project/linux-media/list/
2589T: git git://linuxtv.org/anttip/media_tree.git
2590S: Maintained
2591F: drivers/media/usb/dvb-usb-v2/af9015*
2592
2593DVB_USB_AF9035 MEDIA DRIVER
2594M: Antti Palosaari <crope@iki.fi>
2595L: linux-media@vger.kernel.org
2596W: http://linuxtv.org/
2597W: http://palosaari.fi/linux/
2598Q: http://patchwork.linuxtv.org/project/linux-media/list/
2599T: git git://linuxtv.org/anttip/media_tree.git
2600S: Maintained
2601F: drivers/media/usb/dvb-usb-v2/af9035*
2602
2603DVB_USB_ANYSEE MEDIA DRIVER
2604M: Antti Palosaari <crope@iki.fi>
2605L: linux-media@vger.kernel.org
2606W: http://linuxtv.org/
2607W: http://palosaari.fi/linux/
2608Q: http://patchwork.linuxtv.org/project/linux-media/list/
2609T: git git://linuxtv.org/anttip/media_tree.git
2610S: Maintained
2611F: drivers/media/usb/dvb-usb-v2/anysee*
2612
2613DVB_USB_AU6610 MEDIA DRIVER
2614M: Antti Palosaari <crope@iki.fi>
2615L: linux-media@vger.kernel.org
2616W: http://linuxtv.org/
2617W: http://palosaari.fi/linux/
2618Q: http://patchwork.linuxtv.org/project/linux-media/list/
2619T: git git://linuxtv.org/anttip/media_tree.git
2620S: Maintained
2621F: drivers/media/usb/dvb-usb-v2/au6610*
2622
2623DVB_USB_CE6230 MEDIA DRIVER
2624M: Antti Palosaari <crope@iki.fi>
2625L: linux-media@vger.kernel.org
2626W: http://linuxtv.org/
2627W: http://palosaari.fi/linux/
2628Q: http://patchwork.linuxtv.org/project/linux-media/list/
2629T: git git://linuxtv.org/anttip/media_tree.git
2630S: Maintained
2631F: drivers/media/usb/dvb-usb-v2/ce6230*
2632
Michael Krufkyd099dea2012-10-02 00:56:20 -03002633DVB_USB_CXUSB MEDIA DRIVER
2634M: Michael Krufky <mkrufky@linuxtv.org>
2635L: linux-media@vger.kernel.org
2636W: http://linuxtv.org/
2637W: http://github.com/mkrufky
2638Q: http://patchwork.linuxtv.org/project/linux-media/list/
2639T: git git://linuxtv.org/media_tree.git
2640S: Maintained
2641F: drivers/media/usb/dvb-usb-v2/cxusb*
2642
Antti Palosaari91952bc2012-10-01 12:28:46 -03002643DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2644M: Antti Palosaari <crope@iki.fi>
2645L: linux-media@vger.kernel.org
2646W: http://linuxtv.org/
2647W: http://palosaari.fi/linux/
2648Q: http://patchwork.linuxtv.org/project/linux-media/list/
2649T: git git://linuxtv.org/anttip/media_tree.git
2650S: Maintained
2651F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2652
2653DVB_USB_EC168 MEDIA DRIVER
2654M: Antti Palosaari <crope@iki.fi>
2655L: linux-media@vger.kernel.org
2656W: http://linuxtv.org/
2657W: http://palosaari.fi/linux/
2658Q: http://patchwork.linuxtv.org/project/linux-media/list/
2659T: git git://linuxtv.org/anttip/media_tree.git
2660S: Maintained
2661F: drivers/media/usb/dvb-usb-v2/ec168*
2662
Michael Krufky8856f5f2012-10-02 00:55:50 -03002663DVB_USB_MXL111SF MEDIA DRIVER
2664M: Michael Krufky <mkrufky@linuxtv.org>
2665L: linux-media@vger.kernel.org
2666W: http://linuxtv.org/
2667W: http://github.com/mkrufky
2668Q: http://patchwork.linuxtv.org/project/linux-media/list/
2669T: git git://linuxtv.org/mkrufky/mxl111sf.git
2670S: Maintained
2671F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2672
Antti Palosaari91952bc2012-10-01 12:28:46 -03002673DVB_USB_RTL28XXU MEDIA DRIVER
2674M: Antti Palosaari <crope@iki.fi>
2675L: linux-media@vger.kernel.org
2676W: http://linuxtv.org/
2677W: http://palosaari.fi/linux/
2678Q: http://patchwork.linuxtv.org/project/linux-media/list/
2679T: git git://linuxtv.org/anttip/media_tree.git
2680S: Maintained
2681F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2682
2683DVB_USB_V2 MEDIA DRIVER
2684M: Antti Palosaari <crope@iki.fi>
2685L: linux-media@vger.kernel.org
2686W: http://linuxtv.org/
2687W: http://palosaari.fi/linux/
2688Q: http://patchwork.linuxtv.org/project/linux-media/list/
2689T: git git://linuxtv.org/anttip/media_tree.git
2690S: Maintained
2691F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2692F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2693
Jason Baronac0ac382011-08-11 14:36:43 -04002694DYNAMIC DEBUG
2695M: Jason Baron <jbaron@redhat.com>
2696S: Maintained
2697F: lib/dynamic_debug.c
2698F: include/linux/dynamic_debug.h
2699
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002700DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002701M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002702S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002703F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002704
Antti Palosaari91952bc2012-10-01 12:28:46 -03002705E4000 MEDIA DRIVER
2706M: Antti Palosaari <crope@iki.fi>
2707L: linux-media@vger.kernel.org
2708W: http://linuxtv.org/
2709W: http://palosaari.fi/linux/
2710Q: http://patchwork.linuxtv.org/project/linux-media/list/
2711T: git git://linuxtv.org/anttip/media_tree.git
2712S: Maintained
2713F: drivers/media/tuners/e4000*
2714
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002716M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002717L: linux-eata@i-connect.net
2718L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002720F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
2722EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002723M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724L: linux-scsi@vger.kernel.org
2725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002726F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
2728EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002729M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002730L: linux-eata@i-connect.net
2731L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002733F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734
2735EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002736M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002737L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738W: http://ebtables.sourceforge.net/
2739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002740F: include/linux/netfilter_bridge/ebt_*.h
2741F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
Antti Palosaari91952bc2012-10-01 12:28:46 -03002743EC100 MEDIA DRIVER
2744M: Antti Palosaari <crope@iki.fi>
2745L: linux-media@vger.kernel.org
2746W: http://linuxtv.org/
2747W: http://palosaari.fi/linux/
2748Q: http://patchwork.linuxtv.org/project/linux-media/list/
2749T: git git://linuxtv.org/anttip/media_tree.git
2750S: Maintained
2751F: drivers/media/dvb-frontends/ec100*
2752
Michael Halcrow237fead2006-10-04 02:16:22 -07002753ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002754M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002755M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002756L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002757W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002758S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002759F: Documentation/filesystems/ecryptfs.txt
2760F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002761
Alan Coxda9bb1d2006-01-18 17:44:13 -08002762EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002763M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002764L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002765W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002766S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002767F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002768F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002769F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002770
Borislav Petkovc476c232009-05-20 20:31:58 +02002771EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002772M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002773M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002774L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002775W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002776S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002777F: drivers/edac/amd64_edac*
2778
Dave Peterson0e438e32006-03-26 01:38:55 -08002779EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002780M: Mark Gross <mark.gross@intel.com>
2781M: 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/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002786
2787EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002788M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002789L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002790W: bluesmoke.sourceforge.net
2791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002792F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002793
Douglas Thompson6bc78402007-07-19 01:50:12 -07002794EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002795M: Tim Small <tim@buttersideup.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/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002800
2801EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002802M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002803L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002804W: bluesmoke.sourceforge.net
2805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002806F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002807
2808EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002809M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002810L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002811W: bluesmoke.sourceforge.net
2812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002813F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002814
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002815EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002816M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002817L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002818W: bluesmoke.sourceforge.net
2819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002820F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002821
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002822EDAC-I7300
2823M: Mauro Carvalho Chehab <mchehab@redhat.com>
2824L: linux-edac@vger.kernel.org
2825W: bluesmoke.sourceforge.net
2826S: Maintained
2827F: drivers/edac/i7300_edac.c
2828
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002829EDAC-I7CORE
2830M: Mauro Carvalho Chehab <mchehab@redhat.com>
2831L: linux-edac@vger.kernel.org
2832W: bluesmoke.sourceforge.net
2833S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002834F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002835
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002836EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002837M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302838M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002839L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002840W: bluesmoke.sourceforge.net
2841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002842F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002843
2844EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002845M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002846L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002847W: bluesmoke.sourceforge.net
2848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002849F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002850
Dave Peterson0e438e32006-03-26 01:38:55 -08002851EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002852M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002853L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002854W: bluesmoke.sourceforge.net
2855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002856F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002857
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002858EDAC-SBRIDGE
2859M: Mauro Carvalho Chehab <mchehab@redhat.com>
2860L: linux-edac@vger.kernel.org
2861W: bluesmoke.sourceforge.net
2862S: Maintained
2863F: drivers/edac/sb_edac.c
2864
Clemens Ladischaf399172011-01-10 16:32:54 +01002865EDIROL UA-101/UA-1000 DRIVER
2866M: Clemens Ladisch <clemens@ladisch.de>
2867L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2868T: git git://git.alsa-project.org/alsa-kernel.git
2869S: Maintained
2870F: sound/usb/misc/ua101.c
2871
Matt Fleming1f7df952012-10-03 10:04:02 +01002872EXTENSIBLE FIRMWARE INTERFACE (EFI)
2873M: Matt Fleming <matt.fleming@intel.com>
2874L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002875T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002876S: Maintained
2877F: Documentation/x86/efi-stub.txt
2878F: arch/ia64/kernel/efi.c
2879F: arch/x86/boot/compressed/eboot.[ch]
2880F: arch/x86/include/asm/efi.h
2881F: arch/x86/platform/efi/*
2882F: drivers/firmware/efivars.c
2883F: include/linux/efi*.h
2884
Peter Jones85a00d92010-09-22 13:05:04 -07002885EFIFB FRAMEBUFFER DRIVER
2886L: linux-fbdev@vger.kernel.org
2887M: Peter Jones <pjones@redhat.com>
2888S: Maintained
2889F: drivers/video/efifb.c
2890
Josh Triplett0bee8d22006-07-30 03:03:58 -07002891EFS FILESYSTEM
2892W: http://aeschi.ch.eu.org/efs/
2893S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002894F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002895
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002896EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002897M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2898M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002899L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002900S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002901F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002902
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002903EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002904M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002905L: netdev@vger.kernel.org
2906S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002907F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002908
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02002909EM28XX VIDEO4LINUX DRIVER
2910M: Mauro Carvalho Chehab <mchehab@redhat.com>
2911L: linux-media@vger.kernel.org
2912W: http://linuxtv.org
2913T: git git://linuxtv.org/media_tree.git
2914S: Maintained
2915F: drivers/media/usb/em28xx/
2916
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002917EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002918M: Paul Gortmaker <paul.gortmaker@windriver.com>
2919M: Matt Mackall <mpm@selenic.com>
2920M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002921L: linux-embedded@vger.kernel.org
2922S: Maintained
2923
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002924EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002925M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002926L: linux-scsi@vger.kernel.org
2927W: http://sourceforge.net/projects/lpfcxxxx
2928S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002929F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002930
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002931ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002932M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002933S: Maintained
2934F: drivers/misc/cb710/
2935F: drivers/mmc/host/cb710-mmc.*
2936F: include/linux/cb710.h
2937
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002938ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2939M: Maxim Levitsky <maximlevitsky@gmail.com>
2940S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002941F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002942
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002944M: Christopher Hoover <ch@murgatroid.com>
2945M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002947F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002949EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002950M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002951S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002952T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002953F: drivers/video/s1d13xxxfb.c
2954F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002955
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002957M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002958L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002960F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
2962ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002963M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002964L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002965L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002966W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002968F: include/linux/netfilter_bridge/
2969F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970
2971ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002972M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002974F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
2976EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002977M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002978L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002980F: Documentation/filesystems/ext2.txt
2981F: fs/ext2/
2982F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
2984EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002985M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002986M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002987M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002988L: linux-ext4@vger.kernel.org
2989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002990F: Documentation/filesystems/ext3.txt
2991F: fs/ext3/
2992F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002993
2994EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002995M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002996M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002997L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002998W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002999Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003001F: Documentation/filesystems/ext4.txt
3002F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
Mimi Zoharc5532b02011-08-17 18:52:24 -04003004Extended Verification Module (EVM)
3005M: Mimi Zohar <zohar@us.ibm.com>
3006S: Supported
3007F: security/integrity/evm/
3008
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003009EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3010M: MyungJoo Ham <myungjoo.ham@samsung.com>
3011M: Chanwoo Choi <cw00.choi@samsung.com>
3012L: linux-kernel@vger.kernel.org
3013S: Maintained
3014F: drivers/extcon/
3015F: Documentation/extcon/
3016
Jingoo Han0a799512012-02-06 11:30:39 +09003017EXYNOS DP DRIVER
3018M: Jingoo Han <jg1.han@samsung.com>
3019L: linux-fbdev@vger.kernel.org
3020S: Maintained
3021F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003022F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003023
Donghwa Lee33ad3912012-03-06 11:44:58 +09003024EXYNOS MIPI DISPLAY DRIVERS
3025M: Inki Dae <inki.dae@samsung.com>
3026M: Donghwa Lee <dh09.lee@samsung.com>
3027M: Kyungmin Park <kyungmin.park@samsung.com>
3028L: linux-fbdev@vger.kernel.org
3029S: Maintained
3030F: drivers/video/exynos/exynos_mipi*
3031F: include/video/exynos_mipi*
3032
Jean Delvaree53004e2006-01-09 23:26:14 +01003033F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003034M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003035L: lm-sensors@lm-sensors.org
3036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003037F: Documentation/hwmon/f71805f
3038F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003039
Michael Büscheea977e2012-04-02 12:14:32 -03003040FC0011 TUNER DRIVER
3041M: Michael Buesch <m@bues.ch>
3042L: linux-media@vger.kernel.org
3043S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003044F: drivers/media/tuners/fc0011.h
3045F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003046
Antti Palosaari91952bc2012-10-01 12:28:46 -03003047FC2580 MEDIA DRIVER
3048M: Antti Palosaari <crope@iki.fi>
3049L: linux-media@vger.kernel.org
3050W: http://linuxtv.org/
3051W: http://palosaari.fi/linux/
3052Q: http://patchwork.linuxtv.org/project/linux-media/list/
3053T: git git://linuxtv.org/anttip/media_tree.git
3054S: Maintained
3055F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Eric Paris88b2dbd2010-08-18 12:25:50 -04003057FANOTIFY
3058M: Eric Paris <eparis@redhat.com>
3059S: Maintained
3060F: fs/notify/fanotify/
3061F: include/linux/fanotify.h
3062
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003064M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065W: http://www.farsite.co.uk/
3066S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003067F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
Akinobu Mitac5408b82007-04-23 14:41:20 -07003069FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003070M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003071S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003072F: Documentation/fault-injection/
3073F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003074
Robert Lovecae727d2010-02-16 12:16:00 -08003075FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3076M: Robert Love <robert.w.love@intel.com>
3077L: devel@open-fcoe.org
3078W: www.Open-FCoE.org
3079S: Supported
3080F: drivers/scsi/libfc/
3081F: drivers/scsi/fcoe/
3082F: include/scsi/fc/
3083F: include/scsi/libfc.h
3084F: include/scsi/libfcoe.h
3085
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003086FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003087M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003088L: linux-fsdevel@vger.kernel.org
3089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003090F: include/linux/fcntl.h
3091F: include/linux/fs.h
3092F: fs/fcntl.c
3093F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003094
3095FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003096M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003097L: linux-fsdevel@vger.kernel.org
3098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003099F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003100
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003101FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003102M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003103L: lm-sensors@lm-sensors.org
3104S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003105F: drivers/hwmon/f75375s.c
3106F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003107
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003108FIREWIRE AUDIO DRIVERS
3109M: Clemens Ladisch <clemens@ladisch.de>
3110L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3111T: git git://git.alsa-project.org/alsa-kernel.git
3112S: Maintained
3113F: sound/firewire/
3114
Stefan Richtereb86ec52012-11-03 09:25:20 +01003115FIREWIRE MEDIA DRIVERS (firedtv)
3116M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3117L: linux-media@vger.kernel.org
3118L: linux1394-devel@lists.sourceforge.net
3119T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3120S: Maintained
3121F: drivers/media/firewire/
3122
Chris Boota511ce32012-04-14 17:50:35 -07003123FIREWIRE SBP-2 TARGET
3124M: Chris Boot <bootc@bootc.net>
3125L: linux-scsi@vger.kernel.org
3126L: target-devel@vger.kernel.org
3127L: linux1394-devel@lists.sourceforge.net
3128T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3129S: Maintained
3130F: drivers/target/sbp/
3131
Joe Perches7d2c86b2009-04-07 20:59:01 -07003132FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003133M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003134L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003135W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003136T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003138F: drivers/firewire/
3139F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003140F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003141
3142FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003143M: Ming Lei <ming.lei@canonical.com>
3144L: linux-kernel@vger.kernel.org
3145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003146F: Documentation/firmware_class/
3147F: drivers/base/firmware*.c
3148F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003149
Jiri Kosina8206f662012-05-18 13:52:29 +02003150FLOPPY DRIVER
3151M: Jiri Kosina <jkosina@suse.cz>
3152T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3153S: Odd fixes
3154F: drivers/block/floppy.c
3155
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003156FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003157M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003158W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003160F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003161
3162FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003163L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003164S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003165F: drivers/net/wan/dlci.c
3166F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003167
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003169M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003170L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003172Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003173T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003175F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003176F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003177F: drivers/video/
3178F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003179F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180
Zhang Wei173acc72008-03-01 07:42:48 -07003181FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003182M: Li Yang <leoli@freescale.com>
3183M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003184L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003186F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003187
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003188FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003189M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003190L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003191L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003193F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003194
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003195FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003196M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003197L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003198L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003200F: arch/arm/plat-mxc/include/mach/imxfb.h
3201F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003202
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003203FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003204M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3205M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003206L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003207L: netdev@vger.kernel.org
3208S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003209F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003210F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003211
Timur Tabid9e9d822008-04-24 08:45:26 +10003212FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003213M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003214L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003215S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003216F: arch/powerpc/sysdev/qe_lib/
3217F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003218
Joe Perchesb55ef9292009-10-26 16:49:46 -07003219FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003220M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003221L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003222L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003223S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003224F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003225
Li Yangbeaf53b2007-05-25 13:54:02 +08003226FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003227M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003228L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003229L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003230S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003231F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003232
Timur Tabid9e9d822008-04-24 08:45:26 +10003233FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003234M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003235L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003236S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003237F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003238
3239FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003240M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003241L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003242L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003243S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003244F: sound/soc/fsl/fsl*
3245F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003246
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003248M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003251F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252
Pavel Machek71038f52009-01-15 13:51:02 -08003253FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003254M: Pavel Machek <pavel@ucw.cz>
3255M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003256L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003257S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003258F: Documentation/power/freezing-of-tasks.txt
3259F: include/linux/freezer.h
3260F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003261
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003262FRONTSWAP API
3263M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3264L: linux-kernel@vger.kernel.org
3265S: Maintained
3266F: mm/frontswap.c
3267F: include/linux/frontswap.h
3268
David Howellsa5432f5a2009-04-20 15:46:45 +01003269FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003270M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01003271L: linux-cachefs@redhat.com
3272S: Supported
3273F: Documentation/filesystems/caching/
3274F: fs/fscache/
3275F: include/linux/fscache*.h
3276
David Howells5ab7ffe2007-04-10 15:10:45 +01003277FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003278M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003280F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
Jonathan Woithe20b93732008-06-11 10:14:56 +09303282FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303283M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05003284L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003286F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303287
Heungjun Kim4da621b62011-11-11 08:05:33 -03003288FUJITSU M-5MO LS CAMERA ISP DRIVER
3289M: Kyungmin Park <kyungmin.park@samsung.com>
3290M: Heungjun Kim <riverful.kim@samsung.com>
3291L: linux-media@vger.kernel.org
3292S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003293F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b62011-11-11 08:05:33 -03003294F: include/media/m5mols.h
3295
Robert Gerlach2d24c492012-01-18 14:26:22 +01003296FUJITSU TABLET EXTRAS
3297M: Robert Gerlach <khnz@gmx.de>
3298L: platform-driver-x86@vger.kernel.org
3299S: Maintained
3300F: drivers/platform/x86/fujitsu-tablet.c
3301
Miklos Szeredi04578f12005-09-09 13:10:22 -07003302FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003303M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003304L: fuse-devel@lists.sourceforge.net
3305W: http://fuse.sourceforge.net/
3306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003307F: fs/fuse/
3308F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003309
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003311M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003313S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003314F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315
3316GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003317M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318L: linux-scsi@vger.kernel.org
3319W: http://www.icp-vortex.com/
3320S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003321F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003323GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003324M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003325S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003326F: drivers/i2c/busses/i2c-gpio.c
3327F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003328
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003329GENERIC GPIO I2C MULTIPLEXER DRIVER
3330M: Peter Korsgaard <peter.korsgaard@barco.com>
3331L: linux-i2c@vger.kernel.org
3332S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003333F: drivers/i2c/muxes/i2c-mux-gpio.c
3334F: include/linux/i2c-mux-gpio.h
3335F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003336
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003337GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003338M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003341F: drivers/net/wan/c101.c
3342F: drivers/net/wan/hd6457*
3343F: drivers/net/wan/hdlc*
3344F: drivers/net/wan/n2.c
3345F: drivers/net/wan/pc300too.c
3346F: drivers/net/wan/pci200syn.c
3347F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003349GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003350M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003351L: linux-arch@vger.kernel.org
3352T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3353S: Maintained
3354F: include/asm-generic
3355
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003356GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003357M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003358L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003359S: Supported
3360F: drivers/uio/uio_pci_generic.c
3361
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003362GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003363M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003364L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003365W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003366T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3367T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003368S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003369F: Documentation/filesystems/gfs2*.txt
3370F: fs/gfs2/
3371F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003372
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003373GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003374M: Hansjoerg Lipp <hjlipp@web.de>
3375M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003376L: gigaset307x-common@lists.sourceforge.net
3377W: http://gigaset307x.sourceforge.net/
3378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003379F: Documentation/isdn/README.gigaset
3380F: drivers/isdn/gigaset/
3381F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003382
Grant Likelya0dc00b2011-02-12 01:48:14 -07003383GPIO SUBSYSTEM
3384M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003385M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003386S: Maintained
3387T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003388F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003389F: drivers/gpio/
3390F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003391F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003392
Harry Wei71a6d0a2011-05-11 15:13:33 -07003393GRE DEMULTIPLEXER DRIVER
3394M: Dmitry Kozlov <xeb@mail.ru>
3395L: netdev@vger.kernel.org
3396S: Maintained
3397F: net/ipv4/gre.c
3398F: include/net/gre.h
3399
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003400GRETH 10/100/1G Ethernet MAC device driver
3401M: Kristoffer Glembo <kristoffer@gaisler.com>
3402L: netdev@vger.kernel.org
3403S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003404F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003405
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003406GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003407M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003408L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003409T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003410S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003411F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003412
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003413GSPCA GL860 SUBDRIVER
3414M: Olivier Lorin <o.lorin@laposte.net>
3415L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003416T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003417S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003418F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003419
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003420GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003421M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003422L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003423T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003424S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003425F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003426
3427GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003428M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003429L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003430T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003431S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003432F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003433
Brian Johnson261982f2009-07-19 15:58:56 -03003434GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003435M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003436L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003437T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003438S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003439F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003440
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003441GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003442M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003443L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003444T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003445S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003446F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003447
3448GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003449M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003450L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003451T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003452S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003453F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003454
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003455STK1160 USB VIDEO CAPTURE DRIVER
3456M: Ezequiel Garcia <elezegarcia@gmail.com>
3457L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003458T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003459S: Maintained
3460F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003461
Harry Wei71a6d0a2011-05-11 15:13:33 -07003462HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3463M: Frank Seidel <frank@f-seidel.de>
3464L: platform-driver-x86@vger.kernel.org
3465W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3466S: Maintained
3467F: drivers/platform/x86/hdaps.c
3468
3469HWPOISON MEMORY FAILURE HANDLING
3470M: Andi Kleen <andi@firstfloor.org>
3471L: linux-mm@kvack.org
3472T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3473S: Maintained
3474F: mm/memory-failure.c
3475F: mm/hwpoison-inject.c
3476
3477HYPERVISOR VIRTUAL CONSOLE DRIVER
3478L: linuxppc-dev@lists.ozlabs.org
3479S: Odd Fixes
3480F: drivers/tty/hvc/
3481
Michael Buesch844dd052006-06-26 00:24:59 -07003482HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003483M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003484M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003485L: lm-sensors@lm-sensors.org
3486W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003487T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003488T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003489S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003490F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003491F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003492F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003493
3494HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003495M: Matt Mackall <mpm@selenic.com>
3496M: Herbert Xu <herbert@gondor.apana.org.au>
3497S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003498F: Documentation/hw_random.txt
3499F: drivers/char/hw_random/
3500F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003501
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003502HARDWARE SPINLOCK CORE
3503M: Ohad Ben-Cohen <ohad@wizery.com>
3504S: Maintained
3505F: Documentation/hwspinlock.txt
3506F: drivers/hwspinlock/hwspinlock_*
3507F: include/linux/hwspinlock.h
3508
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003510L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003512F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
Antti Palosaari91952bc2012-10-01 12:28:46 -03003514HD29L2 MEDIA DRIVER
3515M: Antti Palosaari <crope@iki.fi>
3516L: linux-media@vger.kernel.org
3517W: http://linuxtv.org/
3518W: http://palosaari.fi/linux/
3519Q: http://patchwork.linuxtv.org/project/linux-media/list/
3520T: git git://linuxtv.org/anttip/media_tree.git
3521S: Maintained
3522F: drivers/media/dvb-frontends/hd29l2*
3523
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003524HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003525M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003526L: iss_storagedev@hp.com
3527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003528F: Documentation/blockdev/cpqarray.txt
3529F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003530
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003531HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003532M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003533L: iss_storagedev@hp.com
3534S: Supported
3535F: Documentation/scsi/hpsa.txt
3536F: drivers/scsi/hpsa*.[ch]
3537F: include/linux/cciss*.h
3538
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003539HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003540M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003541L: iss_storagedev@hp.com
3542S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003543F: Documentation/blockdev/cciss.txt
3544F: drivers/block/cciss*
3545F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003546
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003548L: linux-fsdevel@vger.kernel.org
3549S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003550F: Documentation/filesystems/hfs.txt
3551F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552
3553HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003554M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555L: linux-nvidia@lists.surfsouth.com
3556W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003558F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003560HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003561M: Pavel Machek <pavel@ucw.cz>
3562M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003563L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003564S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003565F: arch/x86/power/
3566F: drivers/base/power/
3567F: kernel/power/
3568F: include/linux/suspend.h
3569F: include/linux/freezer.h
3570F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003571F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003572
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003573HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003574M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003575L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003576T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003578F: drivers/hid/
3579F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003580
Ingo Molnar38bed542007-02-22 09:09:34 +01003581HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003582M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003583T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003585F: Documentation/timers/
3586F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003587F: kernel/time/clockevents.c
3588F: kernel/time/tick*.*
3589F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003590F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003591F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003595S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003596F: drivers/net/hamradio/dmascc.c
3597F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003599HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003600M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003601W: http://www.highpoint-tech.com
3602S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003603F: Documentation/scsi/hptiop.txt
3604F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003605
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003607M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608L: linux-hippi@sunsite.dk
3609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003610F: include/linux/hippidevice.h
3611F: include/linux/if_hippi.h
3612F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003613F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Jouni Malinenff1d2762005-05-12 22:54:16 -04003615HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003616M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003617L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003618L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003619W: http://hostap.epitest.fi/
3620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003621F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003622
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003623HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05003624L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003625S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003626F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003627
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003628HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003629M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003630S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003631F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003632
Joe Perches7d2c86b2009-04-07 20:59:01 -07003633HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003634M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003636F: Documentation/timers/hpet.txt
3637F: drivers/char/hpet.c
3638F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003639
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003640HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003641M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003643F: arch/x86/kernel/hpet.c
3644F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003645
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003647M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003650F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651
Joe Perches7d2c86b2009-04-07 20:59:01 -07003652HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003653M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003654W: http://www.pharscape.org
3655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003656F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003657
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003658HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003659M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003660L: linux-input@vger.kernel.org
3661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003662F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003663
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003665M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003667F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003669Hyper-V CORE AND DRIVERS
3670M: K. Y. Srinivasan <kys@microsoft.com>
3671M: Haiyang Zhang <haiyangz@microsoft.com>
3672L: devel@linuxdriverproject.org
3673S: Maintained
3674F: drivers/hv/
3675F: drivers/hid/hid-hyperv.c
3676F: drivers/net/hyperv/
3677F: drivers/staging/hv/
3678
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003679I2C OVER PARALLEL PORT
3680M: Jean Delvare <khali@linux-fr.org>
3681L: linux-i2c@vger.kernel.org
3682S: Maintained
3683F: Documentation/i2c/busses/i2c-parport
3684F: Documentation/i2c/busses/i2c-parport-light
3685F: drivers/i2c/busses/i2c-parport.c
3686F: drivers/i2c/busses/i2c-parport-light.c
3687
3688I2C/SMBUS CONTROLLER DRIVERS FOR PC
3689M: Jean Delvare <khali@linux-fr.org>
3690L: linux-i2c@vger.kernel.org
3691S: Maintained
3692F: Documentation/i2c/busses/i2c-ali1535
3693F: Documentation/i2c/busses/i2c-ali1563
3694F: Documentation/i2c/busses/i2c-ali15x3
3695F: Documentation/i2c/busses/i2c-amd756
3696F: Documentation/i2c/busses/i2c-amd8111
3697F: Documentation/i2c/busses/i2c-i801
3698F: Documentation/i2c/busses/i2c-nforce2
3699F: Documentation/i2c/busses/i2c-piix4
3700F: Documentation/i2c/busses/i2c-sis5595
3701F: Documentation/i2c/busses/i2c-sis630
3702F: Documentation/i2c/busses/i2c-sis96x
3703F: Documentation/i2c/busses/i2c-via
3704F: Documentation/i2c/busses/i2c-viapro
3705F: drivers/i2c/busses/i2c-ali1535.c
3706F: drivers/i2c/busses/i2c-ali1563.c
3707F: drivers/i2c/busses/i2c-ali15x3.c
3708F: drivers/i2c/busses/i2c-amd756.c
3709F: drivers/i2c/busses/i2c-amd756-s4882.c
3710F: drivers/i2c/busses/i2c-amd8111.c
3711F: drivers/i2c/busses/i2c-i801.c
3712F: drivers/i2c/busses/i2c-isch.c
3713F: drivers/i2c/busses/i2c-nforce2.c
3714F: drivers/i2c/busses/i2c-nforce2-s4985.c
3715F: drivers/i2c/busses/i2c-piix4.c
3716F: drivers/i2c/busses/i2c-sis5595.c
3717F: drivers/i2c/busses/i2c-sis630.c
3718F: drivers/i2c/busses/i2c-sis96x.c
3719F: drivers/i2c/busses/i2c-via.c
3720F: drivers/i2c/busses/i2c-viapro.c
3721
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003722I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003723M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003724L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003726F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003727
Jean Delvare5b543962005-08-15 19:51:02 +02003728I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003729M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003730M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003731L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003732W: http://i2c.wiki.kernel.org/
3733T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003734T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003736F: Documentation/i2c/
3737F: drivers/i2c/
3738F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003739F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003741I2C-TAOS-EVM DRIVER
3742M: Jean Delvare <khali@linux-fr.org>
3743L: linux-i2c@vger.kernel.org
3744S: Maintained
3745F: Documentation/i2c/busses/i2c-taos-evm
3746F: drivers/i2c/busses/i2c-taos-evm.c
3747
Till Harbaume8c76ee2007-05-01 23:26:35 +02003748I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003749M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003750L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003751W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003753F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003754
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003756M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003758F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759
3760i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003761M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003762T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763S: Maintained
3764
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003766M: Tony Luck <tony.luck@intel.com>
3767M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003769T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003771F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772
Kent Yoder956c2032012-09-07 04:17:01 +08003773IBM Power in-Nest Crypto Acceleration
3774M: Kent Yoder <key@linux.vnet.ibm.com>
3775L: linux-crypto@vger.kernel.org
3776S: Supported
3777F: drivers/crypto/nx/
3778
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003779IBM Power 842 compression accelerator
3780M: Robert Jennings <rcj@linux.vnet.ibm.com>
3781S: Supported
3782F: drivers/crypto/nx/nx-842.c
3783F: include/linux/nx842.h
3784
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003786M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003788F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789
Santiago Leon9d348af2010-09-03 18:29:53 +00003790IBM Power Virtual Ethernet Device Driver
3791M: Santiago Leon <santil@linux.vnet.ibm.com>
3792L: netdev@vger.kernel.org
3793S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003794F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003795
Robert Jennings4b7652c2012-07-31 12:34:36 -05003796IBM Power Virtual SCSI/FC Device Drivers
3797M: Robert Jennings <rcj@linux.vnet.ibm.com>
3798L: linux-scsi@vger.kernel.org
3799S: Supported
3800F: drivers/scsi/ibmvscsi/
3801X: drivers/scsi/ibmvscsi/ibmvstgt.c
3802
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803IBM ServeRAID RAID DRIVER
3804P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003805M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003807S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003808F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003810ICH LPC AND GPIO DRIVER
3811M: Peter Tyser <ptyser@xes-inc.com>
3812S: Maintained
3813F: drivers/mfd/lpc_ich.c
3814F: drivers/gpio/gpio-ich.c
3815
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003816IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003817M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003819Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003820T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003822F: Documentation/ide/
3823F: drivers/ide/
3824F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825
Ike Panhc6cb8c132011-08-25 22:28:45 +08003826IDEAPAD LAPTOP EXTRAS DRIVER
3827M: Ike Panhc <ike.pan@canonical.com>
3828L: platform-driver-x86@vger.kernel.org
3829W: http://launchpad.net/ideapad-laptop
3830S: Maintained
3831F: drivers/platform/x86/ideapad-laptop.c
3832
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003833IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003834M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003835L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003837F: Documentation/cdrom/ide-cd
3838F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839
Andy Henroid27471fd2008-10-09 11:45:22 -07003840IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003841M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003842L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003843S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003844F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003845
Sergey Lapin02cf2282009-06-08 12:18:50 +00003846IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003847M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003848M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003849L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003850W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003851T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003852S: Maintained
3853F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003854F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003855F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003856
Sean Young40ad4a32012-11-19 10:32:53 -03003857IGUANAWORKS USB IR TRANSCEIVER
3858M: Sean Young <sean@mess.org>
3859L: linux-media@vger.kernel.org
3860S: Maintained
3861F: drivers/media/rc/iguanair.c
3862
Ameya Palande9545f862012-01-10 09:00:58 -08003863IIO SUBSYSTEM AND DRIVERS
3864M: Jonathan Cameron <jic23@cam.ac.uk>
3865L: linux-iio@vger.kernel.org
3866S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003867F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003868F: drivers/staging/iio/
3869
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003870IKANOS/ADI EAGLE ADSL USB DRIVER
3871M: Matthieu Castet <castet.matthieu@free.fr>
3872M: Stanislaw Gruszka <stf_xl@wp.pl>
3873S: Maintained
3874F: drivers/usb/atm/ueagle-atm.c
3875
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003876INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003877M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003878S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003879F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003880
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003882L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003883S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003884F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885
3886INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003887M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003888M: Sean Hefty <sean.hefty@intel.com>
3889M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003890L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003891W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003892Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003893T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003895F: Documentation/infiniband/
3896F: drivers/infiniband/
3897F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Robert Lovec9f04f52005-07-15 12:21:07 -04003899INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003900M: John McCutchan <john@johnmccutchan.com>
3901M: Robert Love <rlove@rlove.org>
3902M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003904F: Documentation/filesystems/inotify.txt
3905F: fs/notify/inotify/
3906F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003907
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003908INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003909M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3910M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003911L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003912Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003913T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003914S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003915F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003916F: include/linux/input.h
3917F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003918
Henrik Rydberg3267a872010-06-24 19:10:40 -07003919INPUT MULTITOUCH (MT) PROTOCOL
3920M: Henrik Rydberg <rydberg@euromail.se>
3921L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003922T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003923S: Maintained
3924F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003925F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003926K: \b(ABS|SYN)_MT_
3927
Dave Jiang4ac13e12011-07-29 17:16:55 -07003928INTEL C600 SERIES SAS CONTROLLER DRIVER
3929M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003930M: Lukasz Dorau <lukasz.dorau@intel.com>
3931M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003932M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003933L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003934T: git git://git.code.sf.net/p/intel-sas/isci
3935S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003936F: drivers/scsi/isci/
3937F: firmware/isci/
3938
Len Brown26717172010-03-08 14:07:30 -05003939INTEL IDLE DRIVER
3940M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003941L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003942T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003943S: Supported
3944F: drivers/idle/intel_idle.c
3945
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003946INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003947M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003948L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003950F: Documentation/fb/intelfb.txt
3951F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003952
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003954M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003955L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003957F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303959INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003960M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05003961L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303962W: http://www.lesswatts.org/projects/acpi/
3963S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003964F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303965
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003967M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003969F: arch/x86/kernel/microcode_core.c
3970F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003972INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003973M: Dan Williams <djbw@fb.com>
3974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003975F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003976
David Woodhouse6c8909b2008-10-18 16:12:17 +01003977INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003978M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003979L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003980T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003981S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003982F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003983F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003984
Dan Williamsb3e5f262007-08-07 10:26:35 -07003985INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003986M: Dan Williams <djbw@fb.com>
3987S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003988F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003989
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003990INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003991M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003993F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3994F: arch/arm/mach-ixp4xx/include/mach/npe.h
3995F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3996F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003997F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003998F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003999
Michael Buesch844dd052006-06-26 00:24:59 -07004000INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004001M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004003F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004004
Jeff Kirsher0d164402010-10-05 01:15:17 +00004005INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004006M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4007M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4008M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004009M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4010M: Don Skidmore <donald.c.skidmore@intel.com>
4011M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004012M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004013M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004014M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004015L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08004016W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004017T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4018T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004020F: Documentation/networking/e100.txt
4021F: Documentation/networking/e1000.txt
4022F: Documentation/networking/e1000e.txt
4023F: Documentation/networking/igb.txt
4024F: Documentation/networking/igbvf.txt
4025F: Documentation/networking/ixgb.txt
4026F: Documentation/networking/ixgbe.txt
4027F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004028F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
Len Brown6dccf9c2011-07-12 22:29:32 -04004030INTEL MRST PMU DRIVER
4031M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004032L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04004033S: Supported
4034F: arch/x86/platform/mrst/pmu.*
4035
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004036INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4037M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004038L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004040F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004041F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004042F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004043
Shane Wang4bd96a72010-03-10 14:36:10 +08004044INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004045M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4046M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004047M: Shane Wang <shane.wang@intel.com>
4048L: tboot-devel@lists.sourceforge.net
4049W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004050T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004051S: Supported
4052F: Documentation/intel_txt.txt
4053F: include/linux/tboot.h
4054F: arch/x86/kernel/tboot.c
4055
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004056INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004057M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004058M: linux-wimax@intel.com
4059L: wimax@linuxwimax.org
4060S: Supported
4061W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004062F: Documentation/wimax/README.i2400m
4063F: drivers/net/wimax/i2400m/
4064F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004065
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004066INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4067M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004068L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004069S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004070F: drivers/net/wireless/iwlegacy/
4071
Zhu Yib481de92007-09-25 17:54:57 -07004072INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004073M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004074M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004075M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004076L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004077W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07004078T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004079S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004080F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004081
Tomas Winklerde8fe022012-05-09 16:39:02 +03004082INTEL MANAGEMENT ENGINE (mei)
4083M: Tomas Winkler <tomas.winkler@intel.com>
4084L: linux-kernel@vger.kernel.org
4085S: Supported
4086F: include/linux/mei.h
4087F: drivers/misc/mei/*
4088F: Documentation/mei/*
4089
Ralf Baechlecb109a02007-08-30 23:56:30 -07004090IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004091M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092L: linux-mips@linux-mips.org
4093S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004094F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095
Ralf Baechlecb109a02007-08-30 23:56:30 -07004096IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004097M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004098L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004099S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004100F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004101
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004102IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004103M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004105F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106
Francois Romieu1202d6f2007-09-17 17:13:55 -07004107IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004108M: Francois Romieu <romieu@fr.zoreil.com>
4109M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004110L: netdev@vger.kernel.org
4111S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004112F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004113
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004114IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004115M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004116L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004118F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004119
Corey Minyard4409ebe2006-04-20 02:43:12 -07004120IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004121M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004122L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004123W: http://openipmi.sourceforge.net/
4124S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004125F: Documentation/IPMI.txt
4126F: drivers/char/ipmi/
4127F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004128
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004129IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004130M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004131L: linux-scsi@vger.kernel.org
4132W: http://www.adaptec.com/
4133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004134F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004135
4136IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004137M: Wensong Zhang <wensong@linux-vs.org>
4138M: Simon Horman <horms@verge.net.au>
4139M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004140L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004141L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004143F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004144F: include/net/ip_vs.h
4145F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004146F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147
Randy Dunlape7839f22008-10-12 16:11:45 -07004148IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004149M: Jiri Kosina <jkosina@suse.cz>
4150M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004151S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004152F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004153
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004154IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004155M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004156L: netdev@vger.kernel.org
4157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004158F: include/linux/ipx.h
4159F: include/net/ipx.h
4160F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004161
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004163M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004164L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004165L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004167S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004168T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004169F: Documentation/networking/irda.txt
4170F: drivers/net/irda/
4171F: include/net/irda/
4172F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004174IRQ SUBSYSTEM
4175M: Thomas Gleixner <tglx@linutronix.de>
4176S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004177T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004178F: kernel/irq/
4179
Grant Likely7ab3a832012-02-14 14:06:47 -07004180IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4181M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4182M: Grant Likely <grant.likely@secretlab.ca>
4183T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4184S: Maintained
4185F: Documentation/IRQ-domain.txt
4186F: include/linux/irqdomain.h
4187F: kernel/irq/irqdomain.c
4188
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004189ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004190M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004192F: Documentation/isapnp.txt
4193F: drivers/pnp/isapnp/
4194F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004195
Harry Wei71a6d0a2011-05-11 15:13:33 -07004196iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4197M: Peter Jones <pjones@redhat.com>
4198M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4199S: Maintained
4200F: drivers/firmware/iscsi_ibft*
4201
Mike Christie14816b1e2007-11-28 16:22:06 -08004202ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004203M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004204L: open-iscsi@googlegroups.com
4205W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004206T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004208F: drivers/scsi/*iscsi*
4209F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004210
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004212M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004213L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004214L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004216T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004218F: Documentation/isdn/
4219F: drivers/isdn/
4220F: include/linux/isdn.h
4221F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222
4223ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004224M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004225L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226W: http://www.melware.de
4227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004228F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229
Jean Delvared6248702010-03-05 22:17:20 +01004230IT87 HARDWARE MONITORING DRIVER
4231M: Jean Delvare <khali@linux-fr.org>
4232L: lm-sensors@lm-sensors.org
4233S: Maintained
4234F: Documentation/hwmon/it87
4235F: drivers/hwmon/it87.c
4236
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004237IT913X MEDIA DRIVER
4238M: Malcolm Priestley <tvboxspy@gmail.com>
4239L: linux-media@vger.kernel.org
4240W: http://linuxtv.org/
4241Q: http://patchwork.linuxtv.org/project/linux-media/list/
4242S: Maintained
4243F: drivers/media/usb/dvb-usb-v2/it913x*
4244
4245IT913X FE MEDIA DRIVER
4246M: Malcolm Priestley <tvboxspy@gmail.com>
4247L: linux-media@vger.kernel.org
4248W: http://linuxtv.org/
4249Q: http://patchwork.linuxtv.org/project/linux-media/list/
4250S: Maintained
4251F: drivers/media/dvb-frontends/it913x-fe*
4252
Hans Verkuil91821ff2007-12-02 09:35:33 -03004253IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004254M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004255L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004256L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004257T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004258W: http://www.ivtvdriver.org
4259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004260F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004261F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004262F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004263
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004264IX2505V 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/ix2505v*
4271
Guenter Roeck4453d732010-08-09 17:21:08 -07004272JC42.4 TEMPERATURE SENSOR DRIVER
4273M: Guenter Roeck <linux@roeck-us.net>
4274L: lm-sensors@lm-sensors.org
4275S: Maintained
4276F: drivers/hwmon/jc42.c
4277F: Documentation/hwmon/jc42
4278
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004279JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004280M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004281L: jfs-discussion@lists.sourceforge.net
4282W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004283T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004285F: Documentation/filesystems/jfs.txt
4286F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004287
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004288JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004289M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004290L: netdev@vger.kernel.org
4291S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004292F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004293
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004295M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004296L: linux-mtd@lists.infradead.org
4297W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004299F: fs/jffs2/
4300F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301
Josh Triplettde456d32006-07-30 03:04:00 -07004302JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004303M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004304M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004305L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004306S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004307F: fs/jbd/
4308F: include/linux/ext3_jbd.h
4309F: include/linux/jbd.h
4310
4311JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4312M: "Theodore Ts'o" <tytso@mit.edu>
4313L: linux-ext4@vger.kernel.org
4314S: Maintained
4315F: fs/jbd2/
4316F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004317
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004318JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004319M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004320L: linux-serial@vger.kernel.org
4321S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004322F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004323
Clemens Ladischaf399172011-01-10 16:32:54 +01004324K10TEMP HARDWARE MONITORING DRIVER
4325M: Clemens Ladisch <clemens@ladisch.de>
4326L: lm-sensors@lm-sensors.org
4327S: Maintained
4328F: Documentation/hwmon/k10temp
4329F: drivers/hwmon/k10temp.c
4330
Rudolf Marek4660cb32006-10-08 22:01:26 +02004331K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004332M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004333L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004335F: Documentation/hwmon/k8temp
4336F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337
4338KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004339M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004340L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004341S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004342F: Documentation/kbuild/kconfig-language.txt
4343F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344
Vivek Goyalea6c2082006-05-20 14:59:55 -07004345KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004346M: Vivek Goyal <vgoyal@redhat.com>
4347M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004348L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004349W: http://lse.sourceforge.net/kdump/
4350S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004351F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004352
Hans Verkuilf41bf022012-11-23 07:04:36 -03004353KEENE FM RADIO TRANSMITTER DRIVER
4354M: Hans Verkuil <hverkuil@xs4all.nl>
4355L: linux-media@vger.kernel.org
4356T: git git://linuxtv.org/media_tree.git
4357W: http://linuxtv.org
4358S: Maintained
4359F: drivers/media/radio/radio-keene*
4360
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004362M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004363L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004365F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366
Michal Marek70fb7ba2010-01-29 14:22:43 +01004367KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004368M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004369T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4370T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004371L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004373F: Documentation/kbuild/
4374F: Makefile
4375F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004376F: scripts/basic/
4377F: scripts/mk*
4378F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
4380KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004381L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004382W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004383S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004385KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004386M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004387L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388W: http://nfs.sourceforge.net/
NeilBrown98fac23f2007-01-26 00:56:57 -08004389S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004390F: fs/nfsd/
4391F: include/linux/nfsd/
4392F: fs/lockd/
4393F: fs/nfs_common/
4394F: net/sunrpc/
4395F: include/linux/lockd/
4396F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397
Avi Kivity426d62e2006-12-13 00:34:03 -08004398KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004399M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004400M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004401L: kvm@vger.kernel.org
4402W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004403S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004404F: Documentation/*/kvm.txt
4405F: arch/*/kvm/
4406F: arch/*/include/asm/kvm*
4407F: include/linux/kvm*
4408F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004409
Joerg Roedelad8003d2008-09-10 20:01:07 +02004410KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004411M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004412L: kvm@vger.kernel.org
4413W: http://kvm.qumranet.com
4414S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004415F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004416F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004417
Hollis Blanchard513014b2008-04-16 23:28:08 -05004418KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004419M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004420L: kvm-ppc@vger.kernel.org
4421W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004422S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004423F: arch/powerpc/include/asm/kvm*
4424F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004425
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004426KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004427M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004428L: kvm-ia64@vger.kernel.org
4429W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004430S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004431F: Documentation/ia64/kvm.txt
4432F: arch/ia64/include/asm/kvm*
4433F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004434
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004435KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004436M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004437M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004438M: linux390@de.ibm.com
4439L: linux-s390@vger.kernel.org
4440W: http://www.ibm.com/developerworks/linux/linux390/
4441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004442F: Documentation/s390/kvm.txt
4443F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004444F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004445F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004446
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004447KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004448M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004449W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004450L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004452F: include/linux/kexec.h
4453F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004454
David Howellse9714612010-03-29 23:42:09 +01004455KEYS/KEYRINGS:
4456M: David Howells <dhowells@redhat.com>
4457L: keyrings@linux-nfs.org
4458S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004459F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004460F: include/linux/key.h
4461F: include/linux/key-type.h
4462F: include/keys/
4463F: security/keys/
4464
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004465KEYS-TRUSTED
4466M: David Safford <safford@watson.ibm.com>
4467M: Mimi Zohar <zohar@us.ibm.com>
4468L: linux-security-module@vger.kernel.org
4469L: keyrings@linux-nfs.org
4470S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004471F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004472F: include/keys/trusted-type.h
4473F: security/keys/trusted.c
4474F: security/keys/trusted.h
4475
4476KEYS-ENCRYPTED
4477M: Mimi Zohar <zohar@us.ibm.com>
4478M: David Safford <safford@watson.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/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004484F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004485
Jason Wessel5b778da2010-05-20 21:04:28 -05004486KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004487M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004488W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004489L: kgdb-bugreport@lists.sourceforge.net
4490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004491F: Documentation/DocBook/kgdb.tmpl
4492F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004493F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004494F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004495F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004496F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004497
Pekka Enberg456db8c2008-04-28 22:47:29 +03004498KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004499M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004500M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004501S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004502F: Documentation/kmemcheck.txt
4503F: arch/x86/include/asm/kmemcheck.h
4504F: arch/x86/mm/kmemcheck/
4505F: include/linux/kmemcheck.h
4506F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004507
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004508KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004509M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004510S: Maintained
4511F: Documentation/kmemleak.txt
4512F: include/linux/kmemleak.h
4513F: mm/kmemleak.c
4514F: mm/kmemleak-test.c
4515
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004516KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004517M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4518M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4519M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004520M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004522F: Documentation/kprobes.txt
4523F: include/linux/kprobes.h
4524F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004525
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004526KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004527M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004528W: http://miguelojeda.es/auxdisplay.htm
4529W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004531F: Documentation/auxdisplay/ks0108
4532F: drivers/auxdisplay/ks0108.c
4533F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004534
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004537S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004538F: Documentation/networking/lapb-module.txt
4539F: include/*/lapb.h
4540F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541
4542LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004543M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544L: linux-scsi@vger.kernel.org
4545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004546F: Documentation/scsi/53c700.txt
4547F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548
Richard Purdie263de9b2006-05-15 09:44:16 -07004549LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004550M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004551M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004552L: linux-leds@vger.kernel.org
4553T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004555F: drivers/leds/
4556F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004557
Jean Delvareb0461a42011-06-15 15:08:46 -07004558LEGACY EEPROM DRIVER
4559M: Jean Delvare <khali@linux-fr.org>
4560S: Maintained
4561F: Documentation/misc-devices/eeprom
4562F: drivers/misc/eeprom/eeprom.c
4563
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004565M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566L: legousb-devel@lists.sourceforge.net
4567W: http://legousb.sourceforge.net/
4568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004569F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570
Michael Krufky055616a2012-10-02 00:56:06 -03004571LG2160 MEDIA DRIVER
4572M: Michael Krufky <mkrufky@linuxtv.org>
4573L: linux-media@vger.kernel.org
4574W: http://linuxtv.org/
4575W: http://github.com/mkrufky
4576Q: http://patchwork.linuxtv.org/project/linux-media/list/
4577T: git git://linuxtv.org/mkrufky/tuners.git
4578S: Maintained
4579F: drivers/media/dvb-frontends/lg2160.*
4580
Michael Krufky6f0e7722012-10-02 00:56:00 -03004581LGDT3305 MEDIA DRIVER
4582M: Michael Krufky <mkrufky@linuxtv.org>
4583L: linux-media@vger.kernel.org
4584W: http://linuxtv.org/
4585W: http://github.com/mkrufky
4586Q: http://patchwork.linuxtv.org/project/linux-media/list/
4587T: git git://linuxtv.org/mkrufky/tuners.git
4588S: Maintained
4589F: drivers/media/dvb-frontends/lgdt3305.*
4590
Rusty Russell568a17f2007-10-25 14:12:24 +10004591LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004592M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004593L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004594W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004595S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004596F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004597F: arch/x86/lguest/
4598F: drivers/lguest/
4599F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004600F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004601
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004603M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604W: http://www.ibm.com/linux/ltc/projects/ppc
4605S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004606F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004608LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004609M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4610M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004612L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004613Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004614T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004616F: Documentation/powerpc/
4617F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618
4619LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004620M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004622L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004624F: arch/powerpc/platforms/powermac/
4625F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
Grant Likely77a76362008-07-12 12:11:43 -06004627LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004628M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004629L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004630T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004632F: arch/powerpc/platforms/512x/
4633F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634
4635LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004636M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004637M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004639L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004640T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004642F: arch/powerpc/platforms/40x/
4643F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644
Grant Likely260c02a2007-10-02 12:15:34 +10004645LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004646M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004647W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004648L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004649T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004651F: arch/powerpc/*/*virtex*
4652F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653
Tom Rinie93adf12005-07-26 12:49:53 -07004654LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004655M: Vitaly Bordug <vitb@kernel.crashing.org>
4656M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004657W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004658L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004659S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004660F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004661
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004663M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004664W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004665L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004666S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004667F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004668F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669
Olof Johanssonab06ff32006-09-06 14:44:54 -05004670LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004671M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004672L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004673S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004674F: arch/powerpc/platforms/pasemi/
4675F: drivers/*/*pasemi*
4676F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004677
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004679M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004680L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681S: Supported
4682
Harry Weia23ce6d2011-02-11 16:52:20 +01004683LIS3LV02D ACCELEROMETER DRIVER
4684M: Eric Piel <eric.piel@tremplin-utc.net>
4685S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004686F: Documentation/misc-devices/lis3lv02d
4687F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004688F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004689
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004690LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004691M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004693F: include/linux/llc.h
4694F: include/net/llc*
4695F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004696
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004697LM73 HARDWARE MONITOR DRIVER
4698M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4699L: lm-sensors@lm-sensors.org
4700S: Maintained
4701F: drivers/hwmon/lm73.c
4702
Jean Delvare156e2d12011-07-25 21:46:11 +02004703LM78 HARDWARE MONITOR DRIVER
4704M: Jean Delvare <khali@linux-fr.org>
4705L: lm-sensors@lm-sensors.org
4706S: Maintained
4707F: Documentation/hwmon/lm78
4708F: drivers/hwmon/lm78.c
4709
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004711M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004712L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004714F: Documentation/hwmon/lm83
4715F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716
4717LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004718M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004719L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004721F: Documentation/hwmon/lm90
4722F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004724LME2510 MEDIA DRIVER
4725M: Malcolm Priestley <tvboxspy@gmail.com>
4726L: linux-media@vger.kernel.org
4727W: http://linuxtv.org/
4728Q: http://patchwork.linuxtv.org/project/linux-media/list/
4729S: Maintained
4730F: drivers/media/usb/dvb-usb-v2/lmedm04*
4731
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004732LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004733M: Peter Zijlstra <peterz@infradead.org>
4734M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004735T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004737F: Documentation/lockdep*.txt
4738F: Documentation/lockstat.txt
4739F: include/linux/lockdep.h
4740F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004741
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004742LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004743M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004744L: linux-ntfs-dev@lists.sourceforge.net
4745W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004747F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004748F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749
Joern Engelef6ada32009-11-20 22:17:12 +01004750LogFS
4751M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304752M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004753L: logfs@logfs.org
4754W: logfs.org
4755S: Maintained
4756F: fs/logfs/
4757
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004758LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004759M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004760M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004761L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004762L: linux-scsi@vger.kernel.org
4763W: http://www.lsilogic.com/support
4764S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004765F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004766
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004768M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769L: linux-scsi@vger.kernel.org
4770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004771F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772
Guenter Roecke5f5c992010-06-25 11:59:54 -07004773LTC4261 HARDWARE MONITOR DRIVER
4774M: Guenter Roeck <linux@roeck-us.net>
4775L: lm-sensors@lm-sensors.org
4776S: Maintained
4777F: Documentation/hwmon/ltc4261
4778F: drivers/hwmon/ltc4261.c
4779
Mike Frysinger81365c32008-10-29 14:01:12 -07004780LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004781M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004782M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004783M: Cyril Hrubis <chrubis@suse.cz>
4784M: Caspar Zhang <caspar@casparzhang.com>
4785M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004786L: ltp-list@lists.sourceforge.net (subscribers-only)
4787W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004788T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004789T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004790S: Maintained
4791
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004792M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004793M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004794L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004795L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4796W: http://www.linux-m32r.org/
4797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004798F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004799
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004801M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802L: linux-m68k@lists.linux-m68k.org
4803W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004804T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004806F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004807F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808
4809M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004810M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004812L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004814F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815
4816M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004817M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818W: http://www.tazenda.demon.co.uk/phil/linux-hp
4819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004820F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004822M88RS2000 MEDIA DRIVER
4823M: Malcolm Priestley <tvboxspy@gmail.com>
4824L: linux-media@vger.kernel.org
4825W: http://linuxtv.org/
4826Q: http://patchwork.linuxtv.org/project/linux-media/list/
4827S: Maintained
4828F: drivers/media/dvb-frontends/m88rs2000*
4829
Jiri Benc64a327a2007-05-05 11:47:08 -07004830MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004831M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004832L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004833W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004834T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4835T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004837F: Documentation/networking/mac80211-injection.txt
4838F: include/net/mac80211.h
4839F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004840
Stefano Brivio1036d862007-12-23 04:46:27 +01004841MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004842M: Stefano Brivio <stefano.brivio@polimi.it>
4843M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004844L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004845W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004846T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4847T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004849F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004850
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004851MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004852M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004853L: netdev@vger.kernel.org
4854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004855F: drivers/net/macvlan.c
4856F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004857
Michael Kerriskfaf16682005-07-31 22:34:47 -07004858MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004859M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004860W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004861L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004862S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004863
stephen hemminger44c14c12012-04-02 12:59:47 +00004864MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4865M: Mirko Lindner <mlindner@marvell.com>
4866M: Stephen Hemminger <shemminger@vyatta.com>
4867L: netdev@vger.kernel.org
4868S: Maintained
4869F: drivers/net/ethernet/marvell/sk*
4870
Stefano Brivio74cda162007-11-19 20:27:46 +01004871MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004872M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004873L: libertas-dev@lists.infradead.org
4874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004875F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004876
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004877MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004878M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004879L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004880S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004881F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004882F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883
Bing Zhaofcad5842011-07-13 13:11:58 -07004884MARVELL MWIFIEX WIRELESS DRIVER
4885M: Bing Zhao <bzhao@marvell.com>
4886L: linux-wireless@vger.kernel.org
4887S: Maintained
4888F: drivers/net/wireless/mwifiex/
4889
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004890MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004891M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004892L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004893S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004894F: drivers/net/wireless/mwl8k.c
4895
Pierre Ossman2a695672009-03-16 19:52:26 +01004896MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004897M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004898S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004899F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004900
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004902L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004903S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004904F: drivers/video/matrox/matroxfb_*
4905F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906
Guenter Roeckca462082012-06-01 23:28:23 -07004907MAX16065 HARDWARE MONITOR DRIVER
4908M: Guenter Roeck <linux@roeck-us.net>
4909L: lm-sensors@lm-sensors.org
4910S: Maintained
4911F: Documentation/hwmon/max16065
4912F: drivers/hwmon/max16065.c
4913
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004914MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004915M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004916L: lm-sensors@lm-sensors.org
4917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004918F: Documentation/hwmon/max6650
4919F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004920
Joe Perches127c49a2009-04-08 08:34:04 -07004921MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004922M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07004923P: LinuxTV.org Project
4924L: linux-media@vger.kernel.org
4925W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004926Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004927T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07004928S: Maintained
4929F: Documentation/dvb/
4930F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004931F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004932F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004933F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004934F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02004935F: include/uapi/linux/dvb/
4936F: include/uapi/linux/videodev2.h
4937F: include/uapi/linux/media.h
4938F: include/uapi/linux/v4l2-*
4939F: include/uapi/linux/meye.h
4940F: include/uapi/linux/ivtv*
4941F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004942
4943MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004944M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004945L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004946W: http://megaraid.lsilogic.com
4947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004948F: Documentation/scsi/megaraid.txt
4949F: drivers/scsi/megaraid.*
4950F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004951
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004952MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954W: http://www.linux-mm.org
4955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004956F: include/linux/mm.h
4957F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004958
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004959MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004960M: Johannes Weiner <hannes@cmpxchg.org>
4961M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004962M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004963M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004964L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004965L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004967F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004968F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004969
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004971M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004973W: http://www.linux-mtd.infradead.org/
4974Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004975T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004977F: drivers/mtd/
4978F: include/linux/mtd/
4979F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980
Michal Simekc6375b02009-03-27 14:25:52 +01004981MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004982M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004983L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004984W: http://www.monstr.eu/fdt/
4985T: git git://git.monstr.eu/linux-2.6-microblaze.git
4986S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004987F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988
4989MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004990M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004992F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993
4994MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004995M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004997W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004998T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004999Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005000S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005001F: Documentation/mips/
5002F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005005M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005007F: include/linux/module.h
5008F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009
5010MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005012S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005013F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005014F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005015F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016
Pavel Pisac58ff042007-05-16 01:10:41 +02005017MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005018M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005019L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02005020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005021F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02005022
Jiri Slabyb9705b62008-04-30 00:53:48 -07005023MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005024M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005026F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005027F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005028
Alexey Klimov889b2f82012-11-16 17:43:59 -03005029MR800 AVERMEDIA USB FM RADIO DRIVER
5030M: Alexey Klimov <klimov.linux@gmail.com>
5031L: linux-media@vger.kernel.org
5032T: git git://linuxtv.org/media_tree.git
5033S: Maintained
5034F: drivers/media/radio/radio-mr800.c
5035
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005036MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07005037M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005038L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005040F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005041
Anisse Astier0f1006b2009-12-17 11:28:49 +01005042MSI WMI SUPPORT
5043M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd09448532010-02-11 10:40:13 -05005044L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005045S: Supported
5046F: drivers/platform/x86/msi-wmi.c
5047
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005048MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005049M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005050T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005051S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005052F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005053
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005054MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005055M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005056L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005057T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005059F: drivers/mmc/
5060F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005061
David Brownell15a05802007-08-08 09:12:54 -07005062MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005063S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005064F: drivers/mmc/host/mmc_spi.c
5065F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005066
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005068M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005070F: Documentation/sound/oss/MultiSound
5071F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072
Jiri Slabyd7354102006-12-08 02:38:35 -08005073MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005074S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005075F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005076F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005077
Felipe Balbi550a7372008-07-24 12:27:36 +03005078MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005079M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005080L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005081T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005083F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005084
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005085MXL5007T MEDIA DRIVER
5086M: Michael Krufky <mkrufky@linuxtv.org>
5087L: linux-media@vger.kernel.org
5088W: http://linuxtv.org/
5089W: http://github.com/mkrufky
5090Q: http://patchwork.linuxtv.org/project/linux-media/list/
5091T: git git://linuxtv.org/mkrufky/tuners.git
5092S: Maintained
5093F: drivers/media/tuners/mxl5007t.*
5094
Brice Goglin2d3cf582008-05-17 12:45:36 +02005095MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005096M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005097L: netdev@vger.kernel.org
5098W: http://www.myri.com/scs/download-Myri10GE.html
5099S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005100F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005101
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005103S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005104F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105
Daniel Mack23dc05a2011-05-18 11:28:38 +02005106NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5107M: Daniel Mack <zonque@gmail.com>
5108S: Maintained
5109L: alsa-devel@alsa-project.org
5110W: http://www.native-instruments.com
5111F: sound/usb/caiaq/
5112
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005114M: Petr Vandrovec <petr@vandrovec.name>
5115S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005116F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117
5118NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005119M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120L: linux-scsi@vger.kernel.org
5121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005122F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005124NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005125M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005126L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005127W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005128S: Supported
5129F: drivers/infiniband/hw/nes/
5130
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005131NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05005132M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07005133L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005135F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005136
Jon Masonb2f5a052010-07-15 08:47:27 +00005137NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005138M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005139L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005140S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005141F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005142F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005143F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005144
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146P: Harald Welte
5147P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005148M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005149M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005150L: netfilter-devel@vger.kernel.org
5151L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005152L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153W: http://www.netfilter.org/
5154W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005155T: git git://1984.lsi.us.es/nf
5156T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005158F: include/linux/netfilter*
5159F: include/linux/netfilter/
5160F: include/net/netfilter/
5161F: net/*/netfilter.c
5162F: net/*/netfilter/
5163F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164
Paul Moore4cc67732006-09-25 15:57:13 -07005165NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005166M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005167W: http://netlabel.sf.net
5168L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005169S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005170F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005171F: include/net/netlabel.h
5172F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005173
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005175M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005177W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005179F: include/linux/netrom.h
5180F: include/net/netrom.h
5181F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005183NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005184M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005186F: Documentation/blockdev/nbd.txt
5187F: drivers/block/nbd.c
5188F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189
Neil Horman6e436502009-10-05 03:56:55 +00005190NETWORK DROP MONITOR
5191M: Neil Horman <nhorman@tuxdriver.com>
5192L: netdev@vger.kernel.org
5193S: Maintained
5194W: https://fedorahosted.org/dropwatch/
5195F: net/core/drop_monitor.c
5196
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005198M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005199L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005200W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00005201W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005202T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5203T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005205F: net/
5206F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005207F: include/linux/in.h
5208F: include/linux/net.h
5209F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210
5211NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005212M: "David S. Miller" <davem@davemloft.net>
5213M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005214M: James Morris <jmorris@namei.org>
5215M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5216M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005217L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005218T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005220F: net/ipv4/
5221F: net/ipv6/
5222F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005223F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224
David S. Miller73b76562012-10-16 14:08:40 -04005225NETWORKING [IPSEC]
5226M: Steffen Klassert <steffen.klassert@secunet.com>
5227M: Herbert Xu <herbert@gondor.apana.org.au>
5228M: "David S. Miller" <davem@davemloft.net>
5229L: netdev@vger.kernel.org
5230T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5231S: Maintained
5232F: net/xfrm/
5233F: net/key/
5234F: net/ipv4/xfrm*
5235F: net/ipv6/xfrm*
5236F: include/uapi/linux/xfrm.h
5237F: include/net/xfrm.h
5238
James Morris10e2ff12007-08-25 14:41:28 -07005239NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005240M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005241L: netdev@vger.kernel.org
5242S: Maintained
5243
John W. Linville29f8f632006-01-18 14:52:48 -08005244NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005245M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005246L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005247Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005248T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005249S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005250F: net/mac80211/
5251F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005252F: net/wireless/
5253F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005254F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005255F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005256F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005257
Joe Perches788873a2009-04-16 09:38:45 +00005258NETWORKING DRIVERS
5259L: netdev@vger.kernel.org
5260W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005261T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5262T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005263S: Odd Fixes
5264F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005265F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005266F: include/linux/netdevice.h
5267F: include/linux/arcdevice.h
5268F: include/linux/etherdevice.h
5269F: include/linux/fcdevice.h
5270F: include/linux/fddidevice.h
5271F: include/linux/hippidevice.h
5272F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005273
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005274NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005275M: Sony Chacko <sony.chacko@qlogic.com>
5276M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005277L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005278W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005279S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005280F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005281
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005282NFC SUBSYSTEM
5283M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5284M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5285M: Samuel Ortiz <sameo@linux.intel.com>
5286L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005287L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005288S: Maintained
5289F: net/nfc/
5290F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005291F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005292F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005294NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005295M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005296L: linux-nfs@vger.kernel.org
5297W: http://client.linux-nfs.org
5298T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005300F: fs/lockd/
5301F: fs/nfs/
5302F: fs/nfs_common/
5303F: net/sunrpc/
5304F: include/linux/lockd/
5305F: include/linux/nfs*
5306F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307
5308NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005309M: Jan-Pascal van Best <janpascal@vanbest.org>
5310M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005311L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005313F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005315NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005316M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005317L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005318W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005319T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005320S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005321F: Documentation/filesystems/nilfs2.txt
5322F: fs/nilfs2/
5323F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005324
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005326M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005329F: Documentation/scsi/NinjaSCSI.txt
5330F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331
5332NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005333M: GOTO Masanori <gotom@debian.or.jp>
5334M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005337F: Documentation/scsi/NinjaSCSI.txt
5338F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005341M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005343W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005344T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005346F: Documentation/filesystems/ntfs.txt
5347F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005349NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005350M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005351L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005353F: drivers/video/riva/
5354F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355
Tony Lindgrenf5525782009-05-28 13:23:53 -07005356OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005357M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005358L: linux-omap@vger.kernel.org
5359W: http://www.muru.com/linux/omap/
5360W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005361Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005362T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005363S: Maintained
Felipe Contreras4e04d5a32009-09-21 17:04:25 -07005364F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005365F: drivers/i2c/busses/i2c-omap.c
5366F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005367
5368OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005369M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005370L: linux-omap@vger.kernel.org
5371S: Maintained
5372F: arch/arm/*omap*/*clock*
5373
5374OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005375M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005376L: linux-omap@vger.kernel.org
5377S: Maintained
5378F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005379F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005380
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005381OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5382M: Rajendra Nayak <rnayak@ti.com>
5383M: Paul Walmsley <paul@pwsan.com>
5384L: linux-omap@vger.kernel.org
5385S: Maintained
5386F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5387F: arch/arm/mach-omap2/powerdomain44xx.c
5388F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5389F: arch/arm/mach-omap2/clockdomain44xx.c
5390
Tony Lindgrenf5525782009-05-28 13:23:53 -07005391OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005392M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005393M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005394L: alsa-devel@alsa-project.org (subscribers-only)
5395L: linux-omap@vger.kernel.org
5396S: Maintained
5397F: sound/soc/omap/
5398
5399OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005400M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005401L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005402L: linux-omap@vger.kernel.org
5403S: Maintained
5404F: drivers/video/omap/
5405
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005406OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005407M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005408L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005409L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005410S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005411F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005412F: Documentation/arm/OMAP/DSS
5413
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005414OMAP HARDWARE SPINLOCK SUPPORT
5415M: Ohad Ben-Cohen <ohad@wizery.com>
5416L: linux-omap@vger.kernel.org
5417S: Maintained
5418F: drivers/hwspinlock/omap_hwspinlock.c
5419F: arch/arm/mach-omap2/hwspinlock.c
5420
Tony Lindgrenf5525782009-05-28 13:23:53 -07005421OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005422M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005423L: linux-omap@vger.kernel.org
5424S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005425F: drivers/mmc/host/omap.c
5426
5427OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305428M: Venkatraman S <svenkatr@ti.com>
5429L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005430L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305431S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005432F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005433
5434OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005435M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005436S: Maintained
5437F: drivers/char/hw_random/omap-rng.c
5438
Paul Walmsleyf400c822010-12-06 19:08:54 -07005439OMAP HWMOD SUPPORT
5440M: Benoît Cousson <b-cousson@ti.com>
5441M: Paul Walmsley <paul@pwsan.com>
5442L: linux-omap@vger.kernel.org
5443S: Maintained
5444F: arch/arm/mach-omap2/omap_hwmod.c
5445F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5446
5447OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5448M: Benoît Cousson <b-cousson@ti.com>
5449L: linux-omap@vger.kernel.org
5450S: Maintained
5451F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5452
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005453OMAP IMAGE SIGNAL PROCESSOR (ISP)
5454M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5455L: linux-media@vger.kernel.org
5456S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005457F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005458
Tony Lindgrenf5525782009-05-28 13:23:53 -07005459OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005460M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005461L: linux-usb@vger.kernel.org
5462L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005463T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005464S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005465F: drivers/usb/*/*omap*
5466F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005467
Kevin Hilman6d994712012-07-16 10:05:07 -07005468OMAP GPIO DRIVER
5469M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5470M: Kevin Hilman <khilman@ti.com>
5471L: linux-omap@vger.kernel.org
5472S: Maintained
5473F: drivers/gpio/gpio-omap.c
5474
Bob Copeland0ad122d2008-07-25 19:45:18 -07005475OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005476M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005477L: linux-karma-devel@lists.sourceforge.net
5478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005479F: Documentation/filesystems/omfs.txt
5480F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005481
Harald Weltec1986ee2005-11-13 16:06:29 -08005482OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005483M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005485F: drivers/char/pcmcia/cm4000_cs.c
5486F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005487
Harald Welte77c44ab2005-11-13 16:06:26 -08005488OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005489M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005491F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005492
Jonathan Corbet77d51402007-03-22 19:44:17 -03005493OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005494M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005495L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005496T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005497S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005498F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005499
Thomas Gleixner431bca72007-05-02 09:31:35 +02005500ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005501M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005502L: linux-mtd@lists.infradead.org
5503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005504F: drivers/mtd/onenand/
5505F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005506
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005508M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509L: osst-users@lists.sourceforge.net
5510L: linux-scsi@vger.kernel.org
5511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005512F: drivers/scsi/osst*
5513F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005515OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005516M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005517L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005519F: Documentation/i2c/busses/i2c-ocores
5520F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005521
Grant Likely860c44c2009-10-26 16:49:49 -07005522OPEN FIRMWARE AND FLATTENED DEVICE TREE
5523M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005524M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005525L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005526W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005527T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005528S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005529F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005530F: drivers/of
5531F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005532F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005533K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005534K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005535
Jonas Bonn19f9d392011-06-04 22:00:38 +03005536OPENRISC ARCHITECTURE
5537M: Jonas Bonn <jonas@southpole.se>
5538W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005539L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005540S: Maintained
5541T: git git://openrisc.net/~jonas/linux
5542F: arch/openrisc
5543
Jesse Grossccb13522011-10-25 19:26:31 -07005544OPENVSWITCH
5545M: Jesse Gross <jesse@nicira.com>
5546L: dev@openvswitch.org
5547W: http://openvswitch.org
5548T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5549S: Maintained
5550F: net/openvswitch/
5551
Clemens Ladischaf399172011-01-10 16:32:54 +01005552OPL4 DRIVER
5553M: Clemens Ladisch <clemens@ladisch.de>
5554L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5555T: git git://git.alsa-project.org/alsa-kernel.git
5556S: Maintained
5557F: sound/drivers/opl4/
5558
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005560M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561L: oprofile-list@lists.sf.net
5562S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005563F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005564F: arch/*/oprofile/
5565F: drivers/oprofile/
5566F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005568ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005569M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005570M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005571L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5572W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005573T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005574S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005575F: Documentation/filesystems/ocfs2.txt
5576F: Documentation/filesystems/dlmfs.txt
5577F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005578
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005580L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005581W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005582W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005583S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005584F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005586OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005587M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005588M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005589L: osd-dev@open-osd.org
5590W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005591T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005592S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005593F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005594F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005595F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005596
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005597P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005598M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005599L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005600W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005602F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005603
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005604PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005605M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005606L: netdev@vger.kernel.org
5607S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005608F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005609
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005610PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005611M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005612L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005614F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005615
Steffen Klassert48fc2672010-08-13 10:10:46 -04005616PADATA PARALLEL EXECUTION MECHANISM
5617M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005618L: linux-crypto@vger.kernel.org
5619S: Maintained
5620F: kernel/padata.c
5621F: include/linux/padata.h
5622F: Documentation/padata.txt
5623
Harald Welte709ee532008-09-23 17:46:57 +02005624PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005625M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05005626L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005628F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005629
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005630PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005631M: David Howells <dhowells@redhat.com>
5632M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005633L: linux-am33-list@redhat.com (moderated for non-subscribers)
5634W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005636F: Documentation/mn10300/
5637F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005638
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005640L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005641S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005642F: drivers/parport/
5643F: include/linux/parport*.h
5644F: drivers/char/ppdev.c
5645F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005647PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005648M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005649M: Chris Wright <chrisw@sous-sol.org>
5650M: Alok Kataria <akataria@vmware.com>
5651M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005652L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005653S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005654F: Documentation/ia64/paravirt_ops.txt
5655F: arch/*/kernel/paravirt*
5656F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005657
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005659M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005660L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661W: http://www.torque.net/linux-pp.html
5662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005663F: Documentation/blockdev/paride.txt
5664F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665
5666PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005667M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005668M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005669L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005670W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005671Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005672T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005674F: arch/parisc/
5675F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676
Jim Cromie1662d322006-10-06 00:43:59 -07005677PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005678M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005679L: lm-sensors@lm-sensors.org
5680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005681F: Documentation/hwmon/pc87360
5682F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005683
5684PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005685M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005687F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005688
Jean Delvare1ad107f2010-08-14 21:09:00 +02005689PC87427 HARDWARE MONITORING DRIVER
5690M: Jean Delvare <khali@linux-fr.org>
5691L: lm-sensors@lm-sensors.org
5692S: Maintained
5693F: Documentation/hwmon/pc87427
5694F: drivers/hwmon/pc87427.c
5695
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005696PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005697M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005698S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005699F: drivers/leds/leds-pca9532.c
5700F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005701
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005702PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005703M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005704L: linux-i2c@vger.kernel.org
5705S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005706F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005707
Wolfram Sanga1867d32009-09-18 22:45:51 +02005708PCA9564/PCA9665 I2C BUS DRIVER
5709M: Wolfram Sang <w.sang@pengutronix.de>
5710L: linux-i2c@vger.kernel.org
5711S: Maintained
5712F: drivers/i2c/algos/i2c-algo-pca.c
5713F: drivers/i2c/busses/i2c-pca-*
5714F: include/linux/i2c-algo-pca.h
5715F: include/linux/i2c-pca-platform.h
5716
Khalid Aziz3971dae2012-04-12 12:49:13 -07005717PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005718M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005719S: Maintained
5720F: drivers/firmware/pcdp.*
5721
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005722PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005723M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005724L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005725S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005726F: Documentation/PCI/pci-error-recovery.txt
5727F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005728
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005730M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005731L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005732Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005733T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005734S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005735F: Documentation/PCI/
5736F: drivers/pci/
5737F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005740P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005741L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005742W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005743T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005745F: Documentation/pcmcia/
5746F: drivers/pcmcia/
5747F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748
5749PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005750M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005751L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005753F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754
Steffen Klassert48fc2672010-08-13 10:10:46 -04005755PCRYPT PARALLEL CRYPTO ENGINE
5756M: Steffen Klassert <steffen.klassert@secunet.com>
5757L: linux-crypto@vger.kernel.org
5758S: Maintained
5759F: crypto/pcrypt.c
5760F: include/crypto/pcrypt.h
5761
Tejun Heoe72df0b2010-12-10 17:02:49 +01005762PER-CPU MEMORY ALLOCATOR
5763M: Tejun Heo <tj@kernel.org>
5764M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005765T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5766S: Maintained
5767F: include/linux/percpu*.h
5768F: mm/percpu*.c
5769F: arch/*/include/asm/percpu.h
5770
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005771PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005772M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005774F: include/linux/delayacct.h
5775F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005776
Ingo Molnar57c0c152009-09-21 12:20:38 +02005777PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005778M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5779M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005780M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005781M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005782T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005783S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005784F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005785F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005786F: arch/*/kernel/perf_event*.c
5787F: arch/*/kernel/*/perf_event*.c
5788F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005789F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005790F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005791F: arch/*/kernel/perf_callchain.c
5792F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005793
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005794PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005795M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005796L: linux-abi-devel@lists.sourceforge.net
5797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005798F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005799
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005800PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005801M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005802S: Supported
5803F: Documentation/networking/phonet.txt
5804F: include/linux/phonet.h
5805F: include/net/phonet/
5806F: net/phonet/
5807
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005809M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810L: linux-mtd@lists.infradead.org
5811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005812F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813
Bruno Prémontefdbb102012-07-30 21:39:03 +02005814PICOLCD HID DRIVER
5815M: Bruno Prémont <bonbons@linux-vserver.org>
5816L: linux-input@vger.kernel.org
5817S: Maintained
5818F: drivers/hid/hid-picolcd*
5819
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005820PICOXCELL SUPPORT
5821M: Jamie Iles <jamie@jamieiles.com>
5822L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5823T: git git://github.com/jamieiles/linux-2.6-ji.git
5824S: Supported
5825F: arch/arm/mach-picoxcell
5826F: drivers/*/picoxcell*
5827F: drivers/*/*/picoxcell*
5828
Linus Walleij2744e8a2011-05-02 20:50:54 +02005829PIN CONTROL SUBSYSTEM
5830M: Linus Walleij <linus.walleij@linaro.org>
5831S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005832F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005833F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005834
Viresh Kumardeda8282012-03-28 22:27:07 +05305835PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005836M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305837L: spear-devel@list.st.com
5838L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5839W: http://www.st.com/spear
5840S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005841F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305842
Peter Osterlund249a6772005-09-27 21:45:30 -07005843PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005844M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005846F: drivers/block/pktcdvd.c
5847F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005848
GuanXuetaob31d8272011-01-16 00:35:49 +08005849PKUNITY SOC DRIVERS
5850M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5851W: http://mprc.pku.edu.cn/~guanxuetao/linux
5852S: Maintained
5853T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5854F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005855F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005856F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005857F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005858
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005859PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005860M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005861L: lm-sensors@lm-sensors.org
5862W: http://www.lm-sensors.org/
5863W: http://www.roeck-us.net/linux/drivers/
5864T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5865S: Maintained
5866F: Documentation/hwmon/pmbus
5867F: drivers/hwmon/pmbus/
5868F: include/linux/i2c/pmbus.h
5869
Anil Ravindranath89a36812009-08-25 17:35:18 -07005870PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005871M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005872L: linux-scsi@vger.kernel.org
5873W: http://www.pmc-sierra.com/
5874S: Supported
5875F: drivers/scsi/pmcraid.*
5876
jack wangdbf9bfe2009-10-14 16:19:21 +08005877PMC SIERRA PM8001 DRIVER
5878M: jack_wang@usish.com
5879M: lindar_liu@usish.com
5880L: linux-scsi@vger.kernel.org
5881S: Supported
5882F: drivers/scsi/pm8001/
5883
Linus Torvalds1da177e2005-04-16 15:20:36 -07005884POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005885M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005886T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005888F: fs/timerfd.c
5889F: include/linux/timer*
5890F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891
Anton Vorontsov3be86142007-07-15 04:43:36 +04005892POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005893M: Anton Vorontsov <cbou@mail.ru>
5894M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005895T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005897F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005898F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005899
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005901M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005902M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005904F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905
Vitaly Wool999445d2007-01-04 13:07:03 +01005906PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005907M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005908L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005910F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005911
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005913M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914L: linux-ppp@vger.kernel.org
5915S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005916F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917
5918PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005919M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005921F: net/atm/pppoatm.c
5922F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923
5924PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005925M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005927F: drivers/net/ppp/pppoe.c
5928F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929
James Chapmana6d23702007-06-27 15:53:17 -07005930PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005931M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005932S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005933F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005934F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005935
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005936PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005937M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005938W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5939L: linuxpps@ml.enneenne.com (subscribers-only)
5940S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005941F: Documentation/pps/
5942F: drivers/pps/
5943F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005944
Harry Wei71a6d0a2011-05-11 15:13:33 -07005945PPTP DRIVER
5946M: Dmitry Kozlov <xeb@mail.ru>
5947L: netdev@vger.kernel.org
5948S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005949F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005950W: http://sourceforge.net/projects/accel-pptp
5951
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005953M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954L: kpreempt-tech@lists.sourceforge.net
5955W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5956S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005957F: Documentation/preempt-locking.txt
5958F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959
5960PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005961M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005962L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005963W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005964S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005965F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005967PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005968M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005969L: linux-ide@vger.kernel.org
5970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005971F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005972
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005973PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005974M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005975L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005976L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005977S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005978F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005979
Geoff Levandf58a9d12006-11-23 00:46:51 +01005980PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005981M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005982L: linuxppc-dev@lists.ozlabs.org
5983L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005985F: arch/powerpc/boot/ps3*
5986F: arch/powerpc/include/asm/lv1call.h
5987F: arch/powerpc/include/asm/ps3*.h
5988F: arch/powerpc/platforms/ps3/
5989F: drivers/*/ps3*
5990F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005991F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005992F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005993F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005994
Jim Pariscffb4add2009-01-06 11:32:10 +00005995PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005996M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005997L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005998S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005999F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006000
Anton Vorontsov8defe592012-08-03 18:07:20 -07006001PSTORE FILESYSTEM
6002M: Anton Vorontsov <cbouatmailru@gmail.com>
6003M: Colin Cross <ccross@android.com>
6004M: Kees Cook <keescook@chromium.org>
6005M: Tony Luck <tony.luck@intel.com>
6006S: Maintained
6007T: git git://git.infradead.org/users/cbou/linux-pstore.git
6008F: fs/pstore/
6009F: include/linux/pstore*
6010F: drivers/firmware/efivars.c
6011F: drivers/acpi/apei/erst.c
6012
Richard Cochran7fbc4152012-03-10 01:55:53 +00006013PTP HARDWARE CLOCK SUPPORT
6014M: Richard Cochran <richardcochran@gmail.com>
6015S: Maintained
6016W: http://linuxptp.sourceforge.net/
6017F: Documentation/ABI/testing/sysfs-ptp
6018F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006019F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006020F: drivers/net/phy/dp83640*
6021F: drivers/ptp/*
6022F: include/linux/ptp_cl*
6023
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006024PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006025M: Roland McGrath <roland@redhat.com>
6026M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006027S: Maintained
6028F: include/asm-generic/syscall.h
6029F: include/linux/ptrace.h
6030F: include/linux/regset.h
6031F: include/linux/tracehook.h
6032F: kernel/ptrace.c
6033
Michael Krufky83202042006-07-03 00:24:18 -07006034PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006035M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006036L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006037L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006038W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006039T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006041F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006042F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006043
Hans de Goede39532e62012-11-04 17:05:59 -03006044PWC WEBCAM DRIVER
6045M: Hans de Goede <hdegoede@redhat.com>
6046L: linux-media@vger.kernel.org
6047T: git git://linuxtv.org/media_tree.git
6048S: Maintained
6049F: drivers/media/usb/pwc/*
6050
Thierry Reding200efed2012-03-27 13:16:18 +02006051PWM SUBSYSTEM
6052M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006053L: linux-kernel@vger.kernel.org
6054S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006055W: http://gitorious.org/linux-pwm
6056T: git git://gitorious.org/linux-pwm/linux-pwm.git
6057F: Documentation/pwm.txt
6058F: Documentation/devicetree/bindings/pwm/
6059F: include/linux/pwm.h
6060F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006061F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006062F: drivers/video/backlight/pwm_bl.c
6063F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006064
Eric Miao30ec2612008-06-12 15:21:41 -07006065PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006066M: Eric Miao <eric.y.miao@gmail.com>
6067M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006068M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006069L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006070T: git git://github.com/hzhuang1/linux.git
6071T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006073F: arch/arm/mach-pxa/
6074F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006075F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006076F: drivers/usb/gadget/pxa2*
6077F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006078F: sound/arm/pxa*
6079F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006081MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006082M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006083M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006084L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006085T: git git://github.com/hzhuang1/linux.git
6086T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006087S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006088F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006089
Pierre Ossman272f1332007-05-14 21:25:26 +02006090PXA MMCI DRIVER
6091S: Orphan
6092
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006093PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006094M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006095L: rtc-linux@googlegroups.com
6096S: Maintained
6097
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006098QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006099M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006100L: linux-rdma@vger.kernel.org
6101S: Supported
6102F: drivers/infiniband/hw/qib/
6103
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006104QLOGIC QLA1280 SCSI DRIVER
6105M: Michael Reed <mdr@sgi.com>
6106L: linux-scsi@vger.kernel.org
6107S: Maintained
6108F: drivers/scsi/qla1280.[ch]
6109
Linus Torvalds1da177e2005-04-16 15:20:36 -07006110QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006111M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006112M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113L: linux-scsi@vger.kernel.org
6114S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006115F: Documentation/scsi/LICENSE.qla2xxx
6116F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117
Ravi Anand883c98f2010-04-28 11:45:49 +05306118QLOGIC QLA4XXX iSCSI DRIVER
6119M: Ravi Anand <ravi.anand@qlogic.com>
6120M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6121M: iscsi-driver@qlogic.com
6122L: linux-scsi@vger.kernel.org
6123S: Supported
6124F: drivers/scsi/qla4xxx/
6125
Ron Mercer5a4faa872006-07-25 00:40:21 -07006126QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006127M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006128M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006129M: linux-driver@qlogic.com
6130L: netdev@vger.kernel.org
6131S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006132F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006133F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006134
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006135QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006136M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006137M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006138M: linux-driver@qlogic.com
6139L: netdev@vger.kernel.org
6140S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006141F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006142
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006143QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006144M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006145M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006146M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006147L: netdev@vger.kernel.org
6148S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006149F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006150
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006152M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153W: http://www.alarsen.net/linux/qnx4fs/
6154S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006155F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07006156F: include/linux/qnx4_fs.h
6157F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158
Antti Palosaari91952bc2012-10-01 12:28:46 -03006159QT1010 MEDIA DRIVER
6160M: Antti Palosaari <crope@iki.fi>
6161L: linux-media@vger.kernel.org
6162W: http://linuxtv.org/
6163W: http://palosaari.fi/linux/
6164Q: http://patchwork.linuxtv.org/project/linux-media/list/
6165T: git git://linuxtv.org/anttip/media_tree.git
6166S: Maintained
6167F: drivers/media/tuners/qt1010*
6168
Richard Kuo4f4567c2011-10-31 18:56:38 -05006169QUALCOMM HEXAGON ARCHITECTURE
6170M: Richard Kuo <rkuo@codeaurora.org>
6171L: linux-hexagon@vger.kernel.org
6172S: Supported
6173F: arch/hexagon/
6174
Hans Verkuil35e35402012-11-23 07:02:29 -03006175QUICKCAM PARALLEL PORT WEBCAMS
6176M: Hans Verkuil <hverkuil@xs4all.nl>
6177L: linux-media@vger.kernel.org
6178T: git git://linuxtv.org/media_tree.git
6179W: http://linuxtv.org
6180S: Odd Fixes
6181F: drivers/media/parport/*-qcam*
6182
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006183RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006184M: Yehuda Sadeh <yehuda@inktank.com>
6185M: Sage Weil <sage@inktank.com>
6186M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006187M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006188W: http://ceph.com/
6189T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006190S: Supported
6191F: drivers/block/rbd.c
6192F: drivers/block/rbd_types.h
6193
Linus Torvalds1da177e2005-04-16 15:20:36 -07006194RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006195M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006196L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006198F: drivers/video/aty/radeon*
6199F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200
Hans de Goedec6c9b342012-11-04 17:03:58 -03006201RADIOSHARK RADIO DRIVER
6202M: Hans de Goede <hdegoede@redhat.com>
6203L: linux-media@vger.kernel.org
6204T: git git://linuxtv.org/media_tree.git
6205S: Maintained
6206F: drivers/media/radio/radio-shark.c
6207
6208RADIOSHARK2 RADIO DRIVER
6209M: Hans de Goede <hdegoede@redhat.com>
6210L: linux-media@vger.kernel.org
6211T: git git://linuxtv.org/media_tree.git
6212S: Maintained
6213F: drivers/media/radio/radio-shark2.c
6214F: drivers/media/radio/radio-tea5777.c
6215
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006217M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006218L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006220F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221
Randy Dunlape7839f22008-10-12 16:11:45 -07006222RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006223P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006224M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006225M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006226M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006227L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006228L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006229W: http://rt2x00.serialmonkey.com/
6230S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006231T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006232F: drivers/net/wireless/rt2x00/
6233
Nick Piggin9db55792008-02-08 04:19:49 -08006234RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006235M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006237F: Documentation/blockdev/ramdisk.txt
6238F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006239
Matt Mackall9e95ce22005-04-16 15:25:56 -07006240RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006241M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006243F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006244
Matt Porter394b7012005-11-07 01:00:15 -08006245RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006246M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006247M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006249F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006250
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006251RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006252L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006253S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006254F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006255
6256RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006257M: Josh Triplett <josh@freedesktop.org>
6258M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006259S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006260T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006261F: Documentation/RCU/torture.txt
6262F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006263
Florian Fainellic1f766b2008-02-06 22:39:44 +01006264RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006265M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006266S: Maintained
6267
Florian Fainellidb17f3952007-12-19 11:30:30 +01006268RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006269M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f3952007-12-19 11:30:30 +01006270L: netdev@vger.kernel.org
6271S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006272F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f3952007-12-19 11:30:30 +01006273
Andy Grovera09ed662009-02-24 15:30:41 +00006274RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006275M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006276L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006277S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006278F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006279
Josh Triplett595182b2006-10-04 02:17:21 -07006280READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006281M: Dipankar Sarma <dipankar@in.ibm.com>
6282M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006283W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006284S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006285T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006286F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006287X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006288F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006289F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006290X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006291
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006292REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006293M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo764654932006-12-10 02:19:06 -08006294L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006295Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006297F: Documentation/rtc.txt
6298F: drivers/rtc/
6299F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006300
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006302L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006304F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305
Mark Brownb83a3132011-05-11 19:59:58 +02006306REGISTER MAP ABSTRACTION
6307M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6308T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6309S: Supported
6310F: drivers/base/regmap/
6311F: include/linux/regmap.h
6312
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006313REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6314M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006315T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006316S: Maintained
6317F: drivers/remoteproc/
6318F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006319F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006320
Ivo van Doorne08976452008-04-12 19:23:55 +02006321RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006322M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006323L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006324W: http://wireless.kernel.org/
6325T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6326T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006327S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006328F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006329F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006330
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006331RICOH SMARTMEDIA/XD DRIVER
6332M: Maxim Levitsky <maximlevitsky@gmail.com>
6333S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006334F: drivers/mtd/nand/r852.c
6335F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006336
Maxim Levitsky92634122011-03-25 01:56:59 -07006337RICOH R5C592 MEMORYSTICK DRIVER
6338M: Maxim Levitsky <maximlevitsky@gmail.com>
6339S: Maintained
6340F: drivers/memstick/host/r592.*
6341
Linus Torvalds1da177e2005-04-16 15:20:36 -07006342ROCKETPORT DRIVER
6343P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006344W: http://www.comtrol.com
6345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006346F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006347F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348
6349ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006350M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006352W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006354F: include/linux/rose.h
6355F: include/net/rose.h
6356F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357
Antti Palosaari91952bc2012-10-01 12:28:46 -03006358RTL2830 MEDIA DRIVER
6359M: Antti Palosaari <crope@iki.fi>
6360L: linux-media@vger.kernel.org
6361W: http://linuxtv.org/
6362W: http://palosaari.fi/linux/
6363Q: http://patchwork.linuxtv.org/project/linux-media/list/
6364T: git git://linuxtv.org/anttip/media_tree.git
6365S: Maintained
6366F: drivers/media/dvb-frontends/rtl2830*
6367
Larry Finger59840482008-11-12 17:13:09 -06006368RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006369M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006370L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006371W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006372T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006373S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006374F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006375
Larry Finger59840482008-11-12 17:13:09 -06006376RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006377M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006378M: Hin-Tak Leung <htl10@users.sourceforge.net>
6379M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006380L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006381W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006382T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006383S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006384F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006385
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006386RTL8192CE WIRELESS DRIVER
6387M: Larry Finger <Larry.Finger@lwfinger.net>
6388M: Chaoming Li <chaoming_li@realsil.com.cn>
6389L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006390W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006391T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6392S: Maintained
6393F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006394F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006395
6396S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006397M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006398L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006400F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006401
Linus Torvalds1da177e2005-04-16 15:20:36 -07006402S390
Joe Perches8b58be82009-07-29 15:04:30 -07006403M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6404M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006406L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006407W: http://www.ibm.com/developerworks/linux/linux390/
6408S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006409F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006410F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006411F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006412F: Documentation/s390/
6413F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006414
6415S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006416M: Ursula Braun <ursula.braun@de.ibm.com>
6417M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006418M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006419L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006420W: http://www.ibm.com/developerworks/linux/linux390/
6421S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006422F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006423
Felix Beckfeed9b62009-03-26 15:24:23 +01006424S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006425M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006426M: linux390@de.ibm.com
6427L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006428W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006429S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006430F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006431
Heiko Carstens5238da42006-02-11 17:56:01 -08006432S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006433M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006434M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006435L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006436W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006438F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439
Ursula Braundd96df22007-09-19 13:09:02 +02006440S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006441M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006442M: linux390@de.ibm.com
6443L: linux-s390@vger.kernel.org
6444W: http://www.ibm.com/developerworks/linux/linux390/
6445S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006446F: drivers/s390/net/*iucv*
6447F: include/net/iucv/
6448F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006449
Ben Dooks4dde7f72008-06-30 22:40:38 +01006450S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006451M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006452L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006453S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006454F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006455
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006456SAA7134 VIDEO4LINUX DRIVER
6457M: Mauro Carvalho Chehab <mchehab@redhat.com>
6458L: linux-media@vger.kernel.org
6459W: http://linuxtv.org
6460T: git git://linuxtv.org/media_tree.git
6461S: Odd fixes
6462F: Documentation/video4linux/saa7134/
6463F: drivers/media/pci/saa7134/
6464
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006466M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006467L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006468T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469W: http://www.mihu.de/linux/saa7146
6470S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006471F: drivers/media/common/saa7146/
6472F: drivers/media/pci/saa7146/
6473F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474
Corentin Chary92304a42011-12-05 12:38:35 -05006475SAMSUNG LAPTOP DRIVER
6476M: Corentin Chary <corentincj@iksaif.net>
6477L: platform-driver-x86@vger.kernel.org
6478S: Maintained
6479F: drivers/platform/x86/samsung-laptop.c
6480
Mark Brown4a109cc2010-09-24 10:50:46 +01006481SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006482M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006483L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6484S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006485F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006486
Jingoo Han0d89a282011-12-19 11:09:35 +09006487SAMSUNG FRAMEBUFFER DRIVER
6488M: Jingoo Han <jg1.han@samsung.com>
6489L: linux-fbdev@vger.kernel.org
6490S: Maintained
6491F: drivers/video/s3c-fb.c
6492
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006493SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6494M: Sangbeom Kim <sbkim73@samsung.com>
6495L: linux-kernel@vger.kernel.org
6496S: Supported
6497F: drivers/mfd/sec*.c
6498F: drivers/regulator/s2m*.c
6499F: drivers/regulator/s5m*.c
6500F: drivers/rtc/rtc-sec.c
6501F: include/linux/mfd/samsung/
6502
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006503SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6504M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6505L: linux-media@vger.kernel.org
6506L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6507S: Maintained
6508F: drivers/media/platform/s3c-camif/
6509F: include/media/s3c_camif.h
6510
Alan Coxca749e22011-03-18 13:56:14 +00006511SERIAL DRIVERS
6512M: Alan Cox <alan@linux.intel.com>
6513L: linux-serial@vger.kernel.org
6514S: Maintained
6515F: drivers/tty/serial
6516
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306517SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006518M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306519S: Maintained
6520F: include/linux/dw_dmac.h
6521F: drivers/dma/dw_dmac_regs.h
6522F: drivers/dma/dw_dmac.c
6523
Thomas Gleixner88606e82010-12-14 21:37:13 +01006524TIMEKEEPING, NTP
6525M: John Stultz <johnstul@us.ibm.com>
6526M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006527T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006528S: Supported
6529F: include/linux/clocksource.h
6530F: include/linux/time.h
6531F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006532F: kernel/time/clocksource.c
6533F: kernel/time/time*.c
6534F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006535F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006536
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006537TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006538M: Huang Shijie <shijie8@gmail.com>
6539M: Kang Yong <kangyong@telegent.com>
6540M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006541S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006542F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006543
Linus Torvalds1da177e2005-04-16 15:20:36 -07006544SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006545M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006547F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548
6549SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006550M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006551M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006552T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006553S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006554F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006555F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006556
Chen Liqin6bcf6732009-06-13 15:24:33 +08006557SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006558M: Chen Liqin <liqin.chen@sunplusct.com>
6559M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006560W: http://www.sunplusct.com
6561S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006562F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006563
Linus Torvalds1da177e2005-04-16 15:20:36 -07006564SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006565M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566L: linux-scsi@vger.kernel.org
6567W: http://www.kernel.dk
6568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006569F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570
Roland Dreierfb50a832010-10-07 09:54:53 -07006571SCSI RDMA PROTOCOL (SRP) INITIATOR
6572M: David Dillow <dillowda@ornl.gov>
6573L: linux-rdma@vger.kernel.org
6574S: Supported
6575W: http://www.openfabrics.org
6576Q: http://patchwork.kernel.org/project/linux-rdma/list/
6577T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6578F: drivers/infiniband/ulp/srp/
6579F: include/scsi/srp.h
6580
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006582M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583L: linux-scsi@vger.kernel.org
6584W: http://www.torque.net/sg
6585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006586F: drivers/scsi/sg.c
6587F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588
6589SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006590M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006591L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006592T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6593T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6594T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006596F: drivers/scsi/
6597F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598
6599SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006600M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601L: linux-scsi@vger.kernel.org
6602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006603F: Documentation/scsi/st.txt
6604F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605
6606SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006607M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006608M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006609L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006610W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006612F: Documentation/networking/sctp.txt
6613F: include/linux/sctp.h
6614F: include/net/sctp/
6615F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616
6617SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006618M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006619S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006620F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006621F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006622F: drivers/watchdog/scx200_wdt.c
6623F: drivers/i2c/busses/scx200*
6624F: drivers/mtd/maps/scx200_docflash.c
6625F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006626
6627SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006628M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006630F: drivers/char/scx200_gpio.c
6631F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006632
6633SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006634M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006636F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637
Sascha Sommer6a369132008-07-15 14:21:29 +02006638SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006639M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006640L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006642F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006643
Randy Dunlape7839f22008-10-12 16:11:45 -07006644SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006645M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006646L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006647T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6648S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006649F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006650F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006651
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006652SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006653M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006654L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006655L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006656S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006657F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006658
Ben Dooks0d1bb412009-06-14 13:52:37 +01006659SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006660M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006661L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006662S: Maintained
6663F: drivers/mmc/host/sdhci-s3c.c
6664
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006665SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006666M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006667L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006668L: linux-mmc@vger.kernel.org
6669S: Maintained
6670F: drivers/mmc/host/sdhci-spear.c
6671
James Morris8711cca2008-12-04 03:19:45 +11006672SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006673M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006674L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006675T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006676W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006677S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006678F: security/
James Morris8711cca2008-12-04 03:19:45 +11006679
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006681M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006682S: Supported
6683
6684SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006685M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006686M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006687M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006688L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006689W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006690T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006691S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006692F: include/linux/selinux*
6693F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006694F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695
John Johansenc1c124e2010-07-29 14:48:09 -07006696APPARMOR SECURITY MODULE
6697M: John Johansen <john.johansen@canonical.com>
6698L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6699W: apparmor.wiki.kernel.org
6700T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6701S: Supported
6702F: security/apparmor/
6703
Jiri Slabycef2cf02007-05-08 00:31:45 -07006704SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006705M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006707F: drivers/misc/phantom.c
6708F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006709
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006710SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006711M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006712L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006713T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006714S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006715F: drivers/ata/
6716F: include/linux/ata.h
6717F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006718
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306719SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006720M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006721L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006722W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006723S: Supported
6724F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306725
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006726SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006727M: Sathya Perla <sathya.perla@emulex.com>
6728M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6729M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006730L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006731W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006732S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006733F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006734
Ben Hutchings8ceee662008-04-27 12:55:59 +01006735SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006736M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006737M: Ben Hutchings <bhutchings@solarflare.com>
6738L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006739S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006740F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006741
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006742SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006743M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006745F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006746
6747SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006748M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006749L: linux-ia64@vger.kernel.org
6750S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006751F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006752F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006753F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006754
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006756M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006757L: linux-visws-devel@lists.sf.net
6758W: http://linux-visws.sf.net
6759S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006760F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006761
Jack Steiner75312612008-08-15 00:40:42 -07006762SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006763M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006764S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006765F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006766
Len Brown6349d992009-08-14 15:07:14 -04006767SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006768M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006769L: sfi-devel@simplefirmware.org
6770W: http://simplefirmware.org/
6771T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006772S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006773F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006774F: drivers/sfi/
6775F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006776
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777SIMTEC EB110ATX (Chalice CATS)
6778P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006779P: Vincent Sanders <vince@simtec.co.uk>
6780M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006781W: http://www.simtec.co.uk/products/EB110ATX/
6782S: Supported
6783
6784SIMTEC EB2410ITX (BAST)
6785P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006786P: Vincent Sanders <vince@simtec.co.uk>
6787M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006788W: http://www.simtec.co.uk/products/EB2410ITX/
6789S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006790F: arch/arm/mach-s3c2410/mach-bast.c
6791F: arch/arm/mach-s3c2410/bast-ide.c
6792F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006794TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006795M: Sekhar Nori <nsekhar@ti.com>
6796M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306797L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306798T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006799Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006800S: Supported
6801F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006802F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006803
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03006804TI DAVINCI SERIES MEDIA DRIVER
6805M: Manjunath Hadli <manjunath.hadli@ti.com>
6806M: Prabhakar Lad <prabhakar.lad@ti.com>
6807L: linux-media@vger.kernel.org
6808L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
6809W: http://linuxtv.org/
6810Q: http://patchwork.linuxtv.org/project/linux-media/list/
6811T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
6812S: Supported
6813F: drivers/media/platform/davinci/
6814F: include/media/davinci/
6815
Francois Romieu92aab3c2005-07-30 13:11:18 +02006816SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006817M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006818L: netdev@vger.kernel.org
6819S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006820F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006821
Linus Torvalds1da177e2005-04-16 15:20:36 -07006822SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006823M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006824W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006825L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006826S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006827F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006829SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006830M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006831L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006833F: Documentation/i2c/busses/i2c-sis96x
6834F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006835
Linus Torvalds1da177e2005-04-16 15:20:36 -07006836SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006837M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006840F: Documentation/fb/sisfb.txt
6841F: drivers/video/sis/
6842F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006843
6844SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006845M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006846W: http://www.winischhofer.at/linuxsisusbvga.shtml
6847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006848F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849
Christoph Lameter415ad262007-07-26 10:40:56 -07006850SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006851M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006852M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006853M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07006854L: linux-mm@kvack.org
6855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006856F: include/linux/sl?b*.h
6857F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07006858
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006859SLEEPABLE READ-COPY UPDATE (SRCU)
6860M: Lai Jiangshan <laijs@cn.fujitsu.com>
6861M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6862W: http://www.rdrop.com/users/paulmck/RCU/
6863S: Supported
6864T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6865F: include/linux/srcu*
6866F: kernel/srcu*
6867
Casey Schaufler66372842012-05-23 18:34:52 -07006868SMACK SECURITY MODULE
6869M: Casey Schaufler <casey@schaufler-ca.com>
6870L: linux-security-module@vger.kernel.org
6871W: http://schaufler-ca.com
6872T: git git://git.gitorious.org/smack-next/kernel.git
6873S: Maintained
6874F: Documentation/security/Smack.txt
6875F: security/smack/
6876
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006878M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006879S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006880F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006881
Sakari Ailuse8e31622012-11-12 18:14:39 -03006882SMIA AND SMIA++ IMAGE SENSOR DRIVER
6883M: Sakari Ailus <sakari.ailus@iki.fi>
6884L: linux-media@vger.kernel.org
6885S: Maintained
6886F: drivers/media/i2c/smiapp
6887F: include/media/smiapp.h
6888F: drivers/media/i2c/smiapp-pll.c
6889F: drivers/media/i2c/smiapp-pll.h
6890
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006891SMM665 HARDWARE MONITOR DRIVER
6892M: Guenter Roeck <linux@roeck-us.net>
6893L: lm-sensors@lm-sensors.org
6894S: Maintained
6895F: Documentation/hwmon/smm665
6896F: drivers/hwmon/smm665.c
6897
Steve Glendinning9df73052010-08-14 21:08:54 +02006898SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006899M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006900L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006901S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006902F: Documentation/hwmon/emc2103
6903F: drivers/hwmon/emc2103.c
6904
Hans de Goedea98d5062011-03-21 17:59:36 +01006905SMSC SCH5627 HARDWARE MONITOR DRIVER
6906M: Hans de Goede <hdegoede@redhat.com>
6907L: lm-sensors@lm-sensors.org
6908S: Supported
6909F: Documentation/hwmon/sch5627
6910F: drivers/hwmon/sch5627.c
6911
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006912SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006913M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006914L: lm-sensors@lm-sensors.org
6915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006916F: Documentation/hwmon/smsc47b397
6917F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006918
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006919SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006920M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006921L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006923F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006924F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006925
Steve Glendinning2cb37722008-12-11 20:54:30 -08006926SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006927M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006928L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006929S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006930F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006931
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006932SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006933M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006934L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006935S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006936F: drivers/video/smscufx.c
6937
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006938SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006939M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006940L: linux-altix@sgi.com
6941L: linux-ia64@vger.kernel.org
6942W: http://www.sgi.com/altix
6943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006944F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006945
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006946SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006947M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006948L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006949T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006950S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006951F: include/media/soc*
6952F: drivers/media/i2c/soc_camera/
6953F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006954
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006955SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006956M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006958F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006959
Linus Torvalds1da177e2005-04-16 15:20:36 -07006960SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006961M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006962L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006963S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006964F: drivers/md/
6965F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006966
Linus Torvalds1da177e2005-04-16 15:20:36 -07006967SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006968M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006969L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006971F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006972
Michael Buesch61e115a2007-09-18 15:12:50 -04006973SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006974M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006975L: netdev@vger.kernel.org
6976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006977F: drivers/ssb/
6978F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006979
Linus Torvalds1da177e2005-04-16 15:20:36 -07006980SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006981M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05006982L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006983W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006985F: Documentation/laptops/sony-laptop.txt
6986F: drivers/char/sonypi.c
6987F: drivers/platform/x86/sony-laptop.c
6988F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989
Alex Dubovbaf85322008-02-09 10:20:54 -08006990SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006991M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006992W: http://tifmxx.berlios.de/
6993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006994F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006995
Linus Torvalds1da177e2005-04-16 15:20:36 -07006996SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006997M: Jaroslav Kysela <perex@perex.cz>
6998M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006999L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007000W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007001T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007002T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007003S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007004F: Documentation/sound/
7005F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007006F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007007
Mark Brownbd903bd2008-11-19 19:16:05 +00007008SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01007009M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007010M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007011T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007012L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007013W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007014S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007015F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007016F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007017
Sam Ravnborg473321f2009-01-04 15:47:49 -08007018SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007019M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007021Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007022T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7023T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007025F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007026F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027
David S. Miller6404fcc2010-03-16 01:00:17 -07007028SPARC SERIAL DRIVERS
7029M: "David S. Miller" <davem@davemloft.net>
7030L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007031T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7032T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007033S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007034F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007035F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007036F: drivers/tty/serial/sunhv.c
7037F: drivers/tty/serial/sunsab.c
7038F: drivers/tty/serial/sunsab.h
7039F: drivers/tty/serial/sunsu.c
7040F: drivers/tty/serial/sunzilog.c
7041F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007042
Christopher Li389325b2012-04-05 14:25:14 -07007043SPARSE CHECKER
7044M: "Christopher Li" <sparse@chrisli.org>
7045L: linux-sparse@vger.kernel.org
7046W: https://sparse.wiki.kernel.org/
7047T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7048T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7049S: Maintained
7050F: include/linux/compiler.h
7051
viresh kumarfc0c1952010-04-01 12:31:21 +01007052SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007053M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307054M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007055L: spear-devel@list.st.com
7056L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007057W: http://www.st.com/spear
7058S: Maintained
7059F: arch/arm/plat-spear/
7060
Viresh Kumar71e09a92012-04-20 22:39:48 +05307061SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007062M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307063M: Shiraz Hashim <shiraz.hashim@st.com>
7064L: spear-devel@list.st.com
7065L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7066W: http://www.st.com/spear
7067S: Maintained
7068F: arch/arm/mach-spear13xx/
7069
viresh kumarfc0c1952010-04-01 12:31:21 +01007070SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007071M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307072M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007073L: spear-devel@list.st.com
7074L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007075W: http://www.st.com/spear
7076S: Maintained
7077F: arch/arm/mach-spear3xx/
7078
7079SPEAR6XX MACHINE SUPPORT
7080M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307081M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007082M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007083L: spear-devel@list.st.com
7084L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007085W: http://www.st.com/spear
7086S: Maintained
7087F: arch/arm/mach-spear6xx/
7088
7089SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007090M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007091L: spear-devel@list.st.com
7092L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007093W: http://www.st.com/spear
7094S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307095F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007096
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007097SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007098M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007099L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007100Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007101T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007103F: Documentation/spi/
7104F: drivers/spi/
7105F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007106
Jim Lewis2752e4012006-09-29 02:01:19 -07007107SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007108M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7109M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e4012006-09-29 02:01:19 -07007110L: netdev@vger.kernel.org
7111S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007112F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007113F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07007114
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007115SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007116M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007117L: linuxppc-dev@lists.ozlabs.org
7118L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007119W: http://www.ibm.com/developerworks/power/cell/
7120S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007121F: Documentation/filesystems/spufs.txt
7122F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007123
Phillip Lougherfc555842009-01-05 08:46:29 +00007124SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007125M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007126L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7127W: http://squashfs.org.uk
7128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007129F: Documentation/filesystems/squashfs.txt
7130F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007131
Linus Torvalds1da177e2005-04-16 15:20:36 -07007132SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007133M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007135F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007136
Linus Torvalds26e9a392008-10-17 09:50:12 -07007137STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007138M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007139L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007140S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007141
Linus Torvalds26e9a392008-10-17 09:50:12 -07007142STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007143M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007144T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007145L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007146S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007147F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007148
Joe Perchesc8c8b102011-07-05 09:42:12 -07007149STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7150M: Henk de Groot <pe1dnn@amsat.org>
7151S: Odd Fixes
7152F: drivers/staging/wlags49_h2/
7153F: drivers/staging/wlags49_h25/
7154
Joe Perchesc9555152011-07-05 09:42:01 -07007155STAGING - ASUS OLED
7156M: Jakub Schmidtke <sjakub@gmail.com>
7157S: Odd Fixes
7158F: drivers/staging/asus_oled/
7159
Joe Perchesebd3d012011-07-05 09:42:02 -07007160STAGING - COMEDI
7161M: Ian Abbott <abbotti@mev.co.uk>
7162M: Mori Hess <fmhess@users.sourceforge.net>
7163S: Odd Fixes
7164F: drivers/staging/comedi/
7165
Joe Perches8ca572c2011-07-05 09:42:03 -07007166STAGING - CRYSTAL HD VIDEO DECODER
7167M: Naren Sankar <nsankar@broadcom.com>
7168M: Jarod Wilson <jarod@wilsonet.com>
7169M: Scott Davilla <davilla@4pi.com>
7170M: Manu Abraham <abraham.manu@gmail.com>
7171S: Odd Fixes
7172F: drivers/staging/crystalhd/
7173
Joe Perches0f16ffc2011-07-05 09:42:04 -07007174STAGING - ECHO CANCELLER
7175M: Steve Underwood <steveu@coppice.org>
7176M: David Rowe <david@rowetel.com>
7177S: Odd Fixes
7178F: drivers/staging/echo/
7179
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007180STAGING - ET131X NETWORK DRIVER
7181M: Mark Einon <mark.einon@gmail.com>
7182S: Odd Fixes
7183F: drivers/staging/et131x/
7184
Joe Perchesa0138162011-07-05 15:21:34 -07007185STAGING - FLARION FT1000 DRIVERS
7186M: Marek Belisko <marek.belisko@gmail.com>
7187S: Odd Fixes
7188F: drivers/staging/ft1000/
7189
Joe Perchesec3fab92011-07-05 09:42:05 -07007190STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7191M: David Täht <d@teklibre.com>
7192S: Odd Fixes
7193F: drivers/staging/frontier/
7194
Joe Perches6c1bb422011-07-05 09:42:07 -07007195STAGING - INDUSTRIAL IO
7196M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007197L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007198S: Odd Fixes
7199F: drivers/staging/iio/
7200
Joe Perchesa0138162011-07-05 15:21:34 -07007201STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7202M: Jarod Wilson <jarod@wilsonet.com>
7203W: http://www.lirc.org/
7204S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007205F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007206
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007207STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007208M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007209M: Marc Dietrich <marvin24@gmx.de>
7210L: ac100@lists.launchpad.net (moderated for non-subscribers)
7211S: Maintained
7212F: drivers/staging/nvec/
7213
Joe Perchesa0138162011-07-05 15:21:34 -07007214STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7215M: Andres Salomon <dilinger@queued.net>
7216M: Chris Ball <cjb@laptop.org>
7217M: Jon Nettleton <jon.nettleton@gmail.com>
7218W: http://wiki.laptop.org/go/DCON
7219S: Odd Fixes
7220F: drivers/staging/olpc_dcon/
7221
Chris Kelly94cfdd12012-03-14 10:55:42 +00007222STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007223M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007224M: Chris Kelly <ckelly@ozmodevices.com>
7225S: Maintained
7226F: drivers/staging/ozwpan/
7227
Joe Perchesa0138162011-07-05 15:21:34 -07007228STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007229M: Willy Tarreau <willy@meta-x.org>
7230S: Odd Fixes
7231F: drivers/staging/panel/
7232
Joe Perchesa0138162011-07-05 15:21:34 -07007233STAGING - REALTEK RTL8712U DRIVERS
7234M: Larry Finger <Larry.Finger@lwfinger.net>
7235M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7236S: Odd Fixes
7237F: drivers/staging/rtl8712/
7238
Joe Perches9629fa82011-07-05 09:42:09 -07007239STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7240M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7241S: Odd Fixes
7242F: drivers/staging/sm7xx/
7243
Joe Perchesa0138162011-07-05 15:21:34 -07007244STAGING - SOFTLOGIC 6x10 MPEG CODEC
7245M: Ben Collins <bcollins@bluecherry.net>
7246S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007247F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007248
7249STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7250M: William Hubbs <w.d.hubbs@gmail.com>
7251M: Chris Brannon <chris@the-brannons.com>
7252M: Kirk Reiser <kirk@braille.uwo.ca>
7253M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7254L: speakup@braille.uwo.ca
7255W: http://www.linux-speakup.org/
7256S: Odd Fixes
7257F: drivers/staging/speakup/
7258
7259STAGING - TI DSP BRIDGE DRIVERS
7260M: Omar Ramirez Luna <omar.ramirez@ti.com>
7261S: Odd Fixes
7262F: drivers/staging/tidspbridge/
7263
Joe Perchesa0138162011-07-05 15:21:34 -07007264STAGING - USB ENE SM/MS CARD READER DRIVER
7265M: Al Cho <acho@novell.com>
7266S: Odd Fixes
7267F: drivers/staging/keucr/
7268
Joe Perchesb3e871c2011-07-05 09:42:10 -07007269STAGING - VIA VT665X DRIVERS
7270M: Forest Bond <forest@alittletooquiet.net>
7271S: Odd Fixes
7272F: drivers/staging/vt665?/
7273
Joe Perches81a9a522011-07-05 09:42:11 -07007274STAGING - WINBOND IS89C35 WLAN USB DRIVER
7275M: Pavel Machek <pavel@ucw.cz>
7276S: Odd Fixes
7277F: drivers/staging/winbond/
7278
Joe Perches709bcb02011-07-05 09:42:13 -07007279STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007280M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007281S: Odd Fixes
7282F: drivers/staging/xgifb/
7283
Linus Torvalds1da177e2005-04-16 15:20:36 -07007284STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007285M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007286S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007287F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007288
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007289SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007290M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007291W: http://sammy.net/sun3/
7292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007293F: arch/m68k/kernel/*sun3*
7294F: arch/m68k/sun3*/
7295F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007296F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007297
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007298SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007299M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007300L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007301W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007302Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007303T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007304S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007305F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007306F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007307F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007308
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007309SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007310M: Len Brown <len.brown@intel.com>
7311M: Pavel Machek <pavel@ucw.cz>
7312M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007313L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007314S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007315F: Documentation/power/
7316F: arch/x86/kernel/acpi/
7317F: drivers/base/power/
7318F: kernel/power/
7319F: include/linux/suspend.h
7320F: include/linux/freezer.h
7321F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007322
7323SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007324M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007325L: linux-video@atrey.karlin.mff.cuni.cz
7326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007327F: Documentation/svga.txt
7328F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007329
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007330SWIOTLB SUBSYSTEM
7331M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7332L: linux-kernel@vger.kernel.org
7333S: Supported
7334F: lib/swiotlb.c
7335F: arch/*/kernel/pci-swiotlb.c
7336F: include/linux/swiotlb.h
7337
Linus Torvalds1da177e2005-04-16 15:20:36 -07007338SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007339M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007341F: Documentation/filesystems/sysv-fs.txt
7342F: fs/sysv/
7343F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007344
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007345TARGET SUBSYSTEM
7346M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7347L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007348L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007349L: http://groups.google.com/group/linux-iscsi-target-dev
7350W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007351T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007352S: Supported
7353F: drivers/target/
7354F: include/target/
7355F: Documentation/target/
7356
Alan Cox4e688522008-04-30 00:52:11 -07007357TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007358M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007360F: Documentation/accounting/taskstats*
7361F: include/linux/taskstats*
7362F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007363
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007364TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007365M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007366L: netdev@vger.kernel.org
7367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007368F: include/linux/pkt_cls.h
7369F: include/net/pkt_cls.h
7370F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007371
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007372TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007373M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7374M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007375W: http://tcp-lp-mod.sourceforge.net/
7376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007377F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007378
Antti Palosaari91952bc2012-10-01 12:28:46 -03007379TDA10071 MEDIA DRIVER
7380M: Antti Palosaari <crope@iki.fi>
7381L: linux-media@vger.kernel.org
7382W: http://linuxtv.org/
7383W: http://palosaari.fi/linux/
7384Q: http://patchwork.linuxtv.org/project/linux-media/list/
7385T: git git://linuxtv.org/anttip/media_tree.git
7386S: Maintained
7387F: drivers/media/dvb-frontends/tda10071*
7388
7389TDA18212 MEDIA DRIVER
7390M: Antti Palosaari <crope@iki.fi>
7391L: linux-media@vger.kernel.org
7392W: http://linuxtv.org/
7393W: http://palosaari.fi/linux/
7394Q: http://patchwork.linuxtv.org/project/linux-media/list/
7395T: git git://linuxtv.org/anttip/media_tree.git
7396S: Maintained
7397F: drivers/media/tuners/tda18212*
7398
7399TDA18218 MEDIA DRIVER
7400M: Antti Palosaari <crope@iki.fi>
7401L: linux-media@vger.kernel.org
7402W: http://linuxtv.org/
7403W: http://palosaari.fi/linux/
7404Q: http://patchwork.linuxtv.org/project/linux-media/list/
7405T: git git://linuxtv.org/anttip/media_tree.git
7406S: Maintained
7407F: drivers/media/tuners/tda18218*
7408
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007409TDA18271 MEDIA DRIVER
7410M: Michael Krufky <mkrufky@linuxtv.org>
7411L: linux-media@vger.kernel.org
7412W: http://linuxtv.org/
7413W: http://github.com/mkrufky
7414Q: http://patchwork.linuxtv.org/project/linux-media/list/
7415T: git git://linuxtv.org/mkrufky/tuners.git
7416S: Maintained
7417F: drivers/media/tuners/tda18271*
7418
Michael Krufkye48307a2012-10-02 00:56:33 -03007419TDA827x MEDIA DRIVER
7420M: Michael Krufky <mkrufky@linuxtv.org>
7421L: linux-media@vger.kernel.org
7422W: http://linuxtv.org/
7423W: http://github.com/mkrufky
7424Q: http://patchwork.linuxtv.org/project/linux-media/list/
7425T: git git://linuxtv.org/mkrufky/tuners.git
7426S: Maintained
7427F: drivers/media/tuners/tda8290.*
7428
Michael Krufky66cf9212012-10-02 00:56:28 -03007429TDA8290 MEDIA DRIVER
7430M: Michael Krufky <mkrufky@linuxtv.org>
7431L: linux-media@vger.kernel.org
7432W: http://linuxtv.org/
7433W: http://github.com/mkrufky
7434Q: http://patchwork.linuxtv.org/project/linux-media/list/
7435T: git git://linuxtv.org/mkrufky/tuners.git
7436S: Maintained
7437F: drivers/media/tuners/tda8290.*
7438
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007439TEA5761 TUNER DRIVER
7440M: Mauro Carvalho Chehab <mchehab@redhat.com>
7441L: linux-media@vger.kernel.org
7442W: http://linuxtv.org
7443T: git git://linuxtv.org/media_tree.git
7444S: Odd fixes
7445F: drivers/media/tuners/tea5761.*
7446
7447TEA5767 TUNER DRIVER
7448M: Mauro Carvalho Chehab <mchehab@redhat.com>
7449L: linux-media@vger.kernel.org
7450W: http://linuxtv.org
7451T: git git://linuxtv.org/media_tree.git
7452S: Maintained
7453F: drivers/media/tuners/tea5767.*
7454
Jiri Pirko3d249d42011-11-11 22:16:48 +00007455TEAM DRIVER
7456M: Jiri Pirko <jpirko@redhat.com>
7457L: netdev@vger.kernel.org
7458S: Supported
7459F: drivers/net/team/
7460F: include/linux/if_team.h
7461
Sean Young40ad4a32012-11-19 10:32:53 -03007462TECHNOTREND USB IR RECEIVER
7463M: Sean Young <sean@mess.org>
7464L: linux-media@vger.kernel.org
7465S: Maintained
7466F: drivers/media/rc/ttusbir.c
7467
Erik Gilling84b94142010-06-09 15:35:53 -07007468TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007469M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007470L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007471Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7472T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007473S: Supported
7474F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007475F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007476F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007477
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007478TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007479M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007480L: netdev@vger.kernel.org
7481S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007482F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007483
Alan Cox4e688522008-04-30 00:52:11 -07007484Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007485M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007486S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007487F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007488
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007489TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007490M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007491M: Max Filippov <jcmvbkbc@gmail.com>
7492L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007494F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007495
Zhang Ruid3fb6952012-11-15 08:58:27 +08007496THERMAL
7497M: Zhang Rui <rui.zhang@intel.com>
7498L: linux-pm@vger.kernel.org
7499T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7500S: Supported
7501F: drivers/thermal/
7502F: include/linux/thermal.h
7503
Alan Cox4e688522008-04-30 00:52:11 -07007504THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007505M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007506L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05007507L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007508W: http://ibm-acpi.sourceforge.net
7509W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007510T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007512F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007513
Alex Dubov4020f2d2006-10-04 02:15:37 -07007514TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007515M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007517F: drivers/misc/tifm*
7518F: drivers/mmc/host/tifm_sd.c
7519F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007520
M R Swami Reddy152ad442012-04-02 20:02:31 +05307521TI LM49xxx FAMILY ASoC CODEC DRIVERS
7522M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307523M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307524L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7525S: Maintained
7526F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307527F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307528
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007529TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007530M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007531L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7532S: Maintained
7533F: sound/soc/codecs/twl4030*
7534
Luciano Coelho90921012011-11-20 21:40:41 +02007535TI WILINK WIRELESS DRIVERS
7536M: Luciano Coelho <coelho@ti.com>
7537L: linux-wireless@vger.kernel.org
7538W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7539W: http://wireless.kernel.org/en/users/Drivers/wl1251
7540T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7541S: Maintained
7542F: drivers/net/wireless/ti/
7543F: include/linux/wl12xx.h
7544
Per Lidene86eaa32006-01-12 16:45:18 +01007545TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007546M: Jon Maloy <jon.maloy@ericsson.com>
7547M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007548L: netdev@vger.kernel.org (core kernel code)
7549L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007550W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007552F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007553F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007554
Chris Metcalf867e3592010-05-28 23:09:12 -04007555TILE ARCHITECTURE
7556M: Chris Metcalf <cmetcalf@tilera.com>
7557W: http://www.tilera.com/scm/
7558S: Supported
7559F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007560F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007561F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007562F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007563
Linus Torvalds1da177e2005-04-16 15:20:36 -07007564TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007565M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007566L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007567W: http://sourceforge.net/projects/tlan/
7568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007569F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007570F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007571
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007572TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007573M: Kentaro Takeda <takedakn@nttdata.co.jp>
7574M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007575L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7576L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007577L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7578L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7579W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007580T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007582F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007583
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007584TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007585M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007586L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007587S: Maintained
7588F: drivers/platform/x86/topstar-laptop.c
7589
Linus Torvalds1da177e2005-04-16 15:20:36 -07007590TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05007591L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007592S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007593F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007594
7595TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007596M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007597L: tlinux-users@tce.toshiba-dme.co.jp
7598W: http://www.buzzard.org.uk/toshiba/
7599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007600F: drivers/char/toshiba.c
7601F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007602
Pierre Ossmand719f902009-03-24 21:06:09 +01007603TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007604M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007605M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007606L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007607S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007608F: drivers/mmc/host/tmio_mmc*
7609F: drivers/mmc/host/sh_mobile_sdhi.c
7610F: include/linux/mmc/tmio.h
7611F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007612
Hugh Dickins98f32602009-05-21 20:33:58 +01007613TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007614M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007615L: linux-mm@kvack.org
7616S: Maintained
7617F: include/linux/shmem_fs.h
7618F: mm/shmem.c
7619
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02007620TM6000 VIDEO4LINUX DRIVER
7621M: Mauro Carvalho Chehab <mchehab@redhat.com>
7622L: linux-media@vger.kernel.org
7623W: http://linuxtv.org
7624T: git git://linuxtv.org/media_tree.git
7625S: Odd fixes
7626F: drivers/media/usb/tm6000/
7627
Alan Cox4e688522008-04-30 00:52:11 -07007628TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007629M: Kent Yoder <key@linux.vnet.ibm.com>
7630M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007631W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007632M: Marcel Selhorst <tpmdd@selhorst.net>
7633M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007634W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007635L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007637F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007638
Joe Perchesd6f005a2009-10-26 16:49:40 -07007639TRACING
7640M: Steven Rostedt <rostedt@goodmis.org>
7641M: Frederic Weisbecker <fweisbec@gmail.com>
7642M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007643T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007644S: Maintained
7645F: Documentation/trace/ftrace.txt
7646F: arch/*/*/*/ftrace.h
7647F: arch/*/kernel/ftrace.c
7648F: include/*/ftrace.h
7649F: include/linux/trace*.h
7650F: include/trace/
7651F: kernel/trace/
7652
Linus Torvalds1da177e2005-04-16 15:20:36 -07007653TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007654M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007655T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007656S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007657K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007658
Alan Cox4e688522008-04-30 00:52:11 -07007659TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007660M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7661S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007662T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007663F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007664F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007665F: include/linux/serial_core.h
7666F: include/linux/serial.h
7667F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007668
Antti Palosaari91952bc2012-10-01 12:28:46 -03007669TUA9001 MEDIA DRIVER
7670M: Antti Palosaari <crope@iki.fi>
7671L: linux-media@vger.kernel.org
7672W: http://linuxtv.org/
7673W: http://palosaari.fi/linux/
7674Q: http://patchwork.linuxtv.org/project/linux-media/list/
7675T: git git://linuxtv.org/anttip/media_tree.git
7676S: Maintained
7677F: drivers/media/tuners/tua9001*
7678
Grant Grundler740db6d2008-02-17 11:53:49 -07007679TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007680M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007681L: netdev@vger.kernel.org
7682S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007683F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007684
7685TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007686M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007687L: vtun@office.satix.net
7688W: http://vtun.sourceforge.net/tun
7689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007690F: Documentation/networking/tuntap.txt
7691F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007692
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007693TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007694M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007696F: drivers/tc/
7697F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007698
Linus Torvalds1da177e2005-04-16 15:20:36 -07007699U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007700M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007701L: linux-scsi@vger.kernel.org
7702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007703F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007704
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007705UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007706M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007707M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007708L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007709T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007710W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007712F: Documentation/filesystems/ubifs.txt
7713F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007714
Alan Coxcc2020e2008-05-19 14:21:51 +01007715UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007716M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007717W: http://www.uclinux.org/
7718L: uclinux-dev@uclinux.org (subscribers-only)
7719S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007720F: arch/m68k/*/*_no.*
7721F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007722
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007723UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007724M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007725W: http://uclinux-h8.sourceforge.jp/
7726S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007727F: arch/h8300/
7728F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007729F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007730
Linus Torvalds1da177e2005-04-16 15:20:36 -07007731UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007732M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007734F: Documentation/filesystems/udf.txt
7735F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007736
Alan Coxcc2020e2008-05-19 14:21:51 +01007737UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007738M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007740F: Documentation/filesystems/ufs.txt
7741F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007742
David Herrmann0a09d3a2012-06-10 15:16:28 +02007743UHID USERSPACE HID IO DRIVER:
7744M: David Herrmann <dh.herrmann@googlemail.com>
7745L: linux-input@vger.kernel.org
7746S: Maintained
7747F: drivers/hid/uhid.c
7748F: include/linux/uhid.h
7749
David Vrabel18332a82008-09-17 16:34:44 +01007750ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007751L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007752S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007753F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007754F: include/linux/uwb.h
7755F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007756
GuanXuetaob31d8272011-01-16 00:35:49 +08007757UNICORE32 ARCHITECTURE:
7758M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7759W: http://mprc.pku.edu.cn/~guanxuetao/linux
7760S: Maintained
7761T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7762F: arch/unicore32/
7763
Tony Finchd8379ab2009-11-27 15:50:30 +00007764UNIFDEF
7765M: Tony Finch <dot@dotat.at>
7766W: http://dotat.at/prog/unifdef
7767S: Maintained
7768F: scripts/unifdef.c
7769
Linus Torvalds1da177e2005-04-16 15:20:36 -07007770UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007771M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007772W: http://www.kernel.dk
7773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007774F: Documentation/cdrom/
7775F: drivers/cdrom/cdrom.c
7776F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007777
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307778UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7779M: Vinayak Holikatti <vinholikatti@gmail.com>
7780M: Santosh Y <santoshsy@gmail.com>
7781L: linux-scsi@vger.kernel.org
7782S: Supported
7783F: Documentation/scsi/ufs.txt
7784F: drivers/scsi/ufs/
7785
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007786UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007787M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007788W: http://www.linux-mtd.infradead.org/
7789L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007790T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007791S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007792F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007793F: include/linux/mtd/ubi.h
7794F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007795
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007796UNSORTED BLOCK IMAGES (UBI) Fastmap
7797M: Richard Weinberger <richard@nod.at>
7798L: linux-mtd@lists.infradead.org
7799S: Maintained
7800F: drivers/mtd/ubi/fastmap.c
7801
Linus Torvalds1da177e2005-04-16 15:20:36 -07007802USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007803M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007804L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007806F: Documentation/usb/acm.txt
7807F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007808
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007809USB ATTACHED SCSI
7810M: Matthew Wilcox <willy@linux.intel.com>
7811M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7812L: linux-usb@vger.kernel.org
7813L: linux-scsi@vger.kernel.org
7814S: Supported
7815F: drivers/usb/storage/uas.c
7816
Linus Torvalds1da177e2005-04-16 15:20:36 -07007817USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007818M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007819L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007820S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007821F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007822
Linus Torvalds1da177e2005-04-16 15:20:36 -07007823USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007824M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007825L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007827F: drivers/net/usb/cdc_*.c
7828F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007829
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007830USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007831M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007832L: linux-usb@vger.kernel.org
7833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007834F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007835
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007836USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007837M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007838L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007839W: http://www.linux-usb.org/usbnet
7840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007841F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007842
Alan Coxcc2020e2008-05-19 14:21:51 +01007843USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007844M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007845L: rio500-users@lists.sourceforge.net
7846W: http://rio500.sourceforge.net
7847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007848F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007849
Linus Torvalds1da177e2005-04-16 15:20:36 -07007850USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007851M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007852L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007854F: Documentation/usb/ehci.txt
7855F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007856
David Brownell69ae9e32006-11-14 02:03:31 -08007857USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007858M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007859L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007860W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007861T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007863F: drivers/usb/gadget/
7864F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007865
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007866USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007867M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007868L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007869T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007870S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007871F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007872F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007873
matt mooney857aab32011-06-17 15:50:46 -07007874USB/IP DRIVERS
7875M: Matt Mooney <mfm@muteddisk.com>
7876L: linux-usb@vger.kernel.org
7877S: Maintained
7878F: drivers/staging/usbip/
7879
Olav Kongas959eea22005-11-03 17:38:14 +02007880USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007881M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007882L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007884F: drivers/usb/host/isp116x*
7885F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007886
Linus Torvalds1da177e2005-04-16 15:20:36 -07007887USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007888M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007889L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007891F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007892
7893USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007894M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007895L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007896L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007897S: Maintained
7898W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007899F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007900
Clemens Ladischaf399172011-01-10 16:32:54 +01007901USB MIDI DRIVER
7902M: Clemens Ladisch <clemens@ladisch.de>
7903L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7904T: git git://git.alsa-project.org/alsa-kernel.git
7905S: Maintained
7906F: sound/usb/midi.*
7907
Linus Torvalds1da177e2005-04-16 15:20:36 -07007908USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007909M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007910L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007912F: Documentation/usb/ohci.txt
7913F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007914
Matthias Urlichsba460e42005-07-14 00:33:47 -07007915USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007916M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007917L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007919F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007920
Linus Torvalds1da177e2005-04-16 15:20:36 -07007921USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007922M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007923L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007924L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007925W: http://pegasus2.sourceforge.net/
7926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007927F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007928
Felipe Balbid3ad5582012-05-21 16:24:49 +03007929USB PHY LAYER
7930M: Felipe Balbi <balbi@ti.com>
7931L: linux-usb@vger.kernel.org
7932T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7933S: Maintained
7934F: drivers/usb/phy/
7935F: drivers/usb/otg/
7936
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007937USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007938M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007939L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007940S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007941F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007942
7943USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007944M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007945L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007946L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007947W: http://pegasus2.sourceforge.net/
7948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007949F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007950
Alan Cox4e688522008-04-30 00:52:11 -07007951USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007952M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007953L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007955F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007956
7957USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007958M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007959L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007960S: Maintained
7961W: http://geocities.com/i0xox0i
7962W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007963F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007964
Linus Torvalds1da177e2005-04-16 15:20:36 -07007965USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007966M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007967W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007969F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007970
7971USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007972M: Peter Berger <pberger@brimson.com>
7973M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007974L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007976F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007977
7978USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007979M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007980L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007982F: Documentation/usb/usb-serial.txt
7983F: drivers/usb/serial/generic.c
7984F: drivers/usb/serial/usb-serial.c
7985F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007986
Linus Torvalds1da177e2005-04-16 15:20:36 -07007987USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007988M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007989L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007991F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007992
7993USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007994M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007995L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007997F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007998
7999USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008000M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008001L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008002W: http://www.connecttech.com
8003S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008004F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008005
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008006USB SMSC75XX ETHERNET DRIVER
8007M: Steve Glendinning <steve.glendinning@shawell.net>
8008L: netdev@vger.kernel.org
8009S: Maintained
8010F: drivers/net/usb/smsc75xx.*
8011
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008012USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008013M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008014L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008016F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008017
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008018USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008019M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008020L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008021L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008022T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008023W: http://www.linux-projects.org
8024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008025F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008026F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008027
8028USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008029M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008030L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008031W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008032T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008033S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008034F: Documentation/usb/
8035F: drivers/net/usb/
8036F: drivers/usb/
8037F: include/linux/usb.h
8038F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008039
8040USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008041M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008042L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008044F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008045
David Brownell69ae9e32006-11-14 02:03:31 -08008046USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008047M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008048L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008049W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008051F: drivers/net/usb/usbnet.c
8052F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008053
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008054USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008055M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008056L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
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
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008059W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008060S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008061F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008062F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008063
Laurent Pinchart8282da42012-10-04 02:32:42 +02008064USB WEBCAM GADGET
8065M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8066L: linux-usb@vger.kernel.org
8067S: Maintained
8068F: drivers/usb/gadget/*uvc*.c
8069F: drivers/usb/gadget/webcam.c
8070
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008071USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008072M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008073L: linux-wireless@vger.kernel.org
8074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008075F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008076
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008077USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008078M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008079L: linux-usb@vger.kernel.org
8080S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008081F: drivers/usb/host/xhci*
8082F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008083
Linus Torvalds1da177e2005-04-16 15:20:36 -07008084USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008085L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008086W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008087S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008088F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008089
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008090USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008091M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008092L: linux-usb@vger.kernel.org
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
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008095W: http://royale.zerezo.com/zr364xx/
8096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008097F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008098F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008099
Randy Dunlape7839f22008-10-12 16:11:45 -07008100USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008101M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008102M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008103L: user-mode-linux-devel@lists.sourceforge.net
8104L: user-mode-linux-user@lists.sourceforge.net
8105W: http://user-mode-linux.sourceforge.net
8106S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008107F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008108F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008109F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008110F: fs/hostfs/
8111F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008112
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008113USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008114M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008115M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008117F: Documentation/DocBook/uio-howto.tmpl
8118F: drivers/uio/
8119F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008120
Karel Zak256cccb2012-06-01 10:13:09 +02008121UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008122M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008123L: util-linux@vger.kernel.org
8124W: http://en.wikipedia.org/wiki/Util-linux
8125T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008126S: Maintained
8127
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008128UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008129M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008130L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008131W: http://dev.gentoo.org/~spock/projects/uvesafb/
8132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008133F: Documentation/fb/uvesafb.txt
8134F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008135
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008136VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008137M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008139F: Documentation/filesystems/vfat.txt
8140F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008141
Alex Williamsoncba33452012-07-31 08:16:22 -06008142VFIO DRIVER
8143M: Alex Williamson <alex.williamson@redhat.com>
8144L: kvm@vger.kernel.org
8145S: Maintained
8146F: Documentation/vfio.txt
8147F: drivers/vfio/
8148F: include/linux/vfio.h
8149
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008150VIDEOBUF2 FRAMEWORK
8151M: Pawel Osciak <pawel@osciak.com>
8152M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008153M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008154L: linux-media@vger.kernel.org
8155S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008156F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008157F: include/media/videobuf2-*
8158
Amit Shah9a824462010-03-23 18:23:09 +05308159VIRTIO CONSOLE DRIVER
8160M: Amit Shah <amit.shah@redhat.com>
8161L: virtualization@lists.linux-foundation.org
8162S: Maintained
8163F: drivers/char/virtio_console.c
8164F: include/linux/virtio_console.h
8165
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308166VIRTIO CORE, NET AND BLOCK DRIVERS
8167M: Rusty Russell <rusty@rustcorp.com.au>
8168M: "Michael S. Tsirkin" <mst@redhat.com>
8169L: virtualization@lists.linux-foundation.org
8170S: Maintained
8171F: drivers/virtio/
8172F: drivers/net/virtio_net.c
8173F: drivers/block/virtio_blk.c
8174F: include/linux/virtio_*.h
8175
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008176VIRTIO HOST (VHOST)
8177M: "Michael S. Tsirkin" <mst@redhat.com>
8178L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008179L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008180L: netdev@vger.kernel.org
8181S: Maintained
8182F: drivers/vhost/
8183F: include/linux/vhost.h
8184
Linus Torvalds1da177e2005-04-16 15:20:36 -07008185VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008186M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008187S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008188F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008189
Harald Weltef0bf7f62009-06-17 20:22:39 +02008190VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008191M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008192M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008193S: Maintained
8194F: drivers/mmc/host/via-sdmmc.c
8195
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008196VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008197M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008198L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008199S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008200F: include/linux/via-core.h
8201F: include/linux/via-gpio.h
8202F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008203F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008204
Francois Romieu01f20732007-01-26 00:57:17 -08008205VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008206M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008207L: netdev@vger.kernel.org
8208S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008209F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008210
Patrick McHardybe7f8272007-10-23 20:26:36 -07008211VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008212M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008213L: netdev@vger.kernel.org
8214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008215F: drivers/net/macvlan.c
8216F: include/linux/if_*vlan.h
8217F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008218
Florian Fainelli55e331c2009-06-16 15:33:53 -07008219VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008220M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008221L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008222S: Maintained
8223F: drivers/vlynq/vlynq.c
8224F: include/linux/vlynq.h
8225
Martyn Welch390beae2012-05-03 17:52:36 +01008226VME SUBSYSTEM
8227M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008228M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008229M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8230L: devel@driverdev.osuosl.org
8231S: Maintained
8232T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8233F: Documentation/vme_api.txt
8234F: drivers/staging/vme/
8235F: drivers/vme/
8236F: include/linux/vme*
8237
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008238VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008239M: Shreyas Bhatewara <sbhatewara@vmware.com>
8240M: "VMware, Inc." <pv-drivers@vmware.com>
8241L: netdev@vger.kernel.org
8242S: Maintained
8243F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008244
Alok Kataria851b1642009-10-13 14:51:05 -07008245VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008246M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008247M: VMware PV-Drivers <pv-drivers@vmware.com>
8248L: linux-scsi@vger.kernel.org
8249S: Maintained
8250F: drivers/scsi/vmw_pvscsi.c
8251F: drivers/scsi/vmw_pvscsi.h
8252
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008253VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008254M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008255M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008256W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008257W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008258T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008259S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008260F: drivers/regulator/
8261F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008262
Juerg Haefligerab413192006-09-24 20:54:04 +02008263VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008264M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008265L: lm-sensors@lm-sensors.org
8266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008267F: Documentation/hwmon/vt1211
8268F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008269
Roger Lucas1de9e372005-11-26 20:20:05 +01008270VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008271M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008272L: lm-sensors@lm-sensors.org
8273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008274F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008275
Tony Olech88095e72011-05-14 16:48:13 -04008276VUB300 USB to SDIO/SD/MMC bridge chip
8277M: Tony Olech <tony.olech@elandigitalsystems.com>
8278L: linux-mmc@vger.kernel.org
8279L: linux-usb@vger.kernel.org
8280S: Supported
8281F: drivers/mmc/host/vub300.c
8282
Linus Torvalds1da177e2005-04-16 15:20:36 -07008283W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008284M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008286F: Documentation/w1/
8287F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008288
Charles Spirakis13927072006-07-05 18:05:15 +02008289W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008290M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008291L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008293F: Documentation/hwmon/w83791d
8294F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008295
Rudolf Marek61db0112006-12-12 18:18:30 +01008296W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008297M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008298L: lm-sensors@lm-sensors.org
8299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008300F: Documentation/hwmon/w83793
8301F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008302
Jean Delvaree3760b42010-10-28 20:31:49 +02008303W83795 HARDWARE MONITORING DRIVER
8304M: Jean Delvare <khali@linux-fr.org>
8305L: lm-sensors@lm-sensors.org
8306S: Maintained
8307F: drivers/hwmon/w83795.c
8308
Linus Torvalds1da177e2005-04-16 15:20:36 -07008309W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008310M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008312F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008313
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008314WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008315M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008316L: linux-watchdog@vger.kernel.org
8317W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008318T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008320F: Documentation/watchdog/
8321F: drivers/watchdog/
8322F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008323
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008325M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008326L: linux-scsi@vger.kernel.org
8327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008328F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008329
David Herrmannb22e00f2011-09-06 13:50:40 +02008330WIIMOTE HID DRIVER
8331M: David Herrmann <dh.herrmann@googlemail.com>
8332L: linux-input@vger.kernel.org
8333S: Maintained
8334F: drivers/hid/hid-wiimote*
8335
David Härdemane258b802009-09-21 17:04:53 -07008336WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008337M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008338S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008339F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008340
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008341WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008342M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008343M: linux-wimax@intel.com
8344L: wimax@linuxwimax.org
8345S: Supported
8346W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008347F: Documentation/wimax/README.wimax
8348F: include/linux/wimax.h
8349F: include/linux/wimax/debug.h
8350F: include/net/wimax.h
8351F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008352
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008353WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008354M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008356F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008357
Linus Torvalds1da177e2005-04-16 15:20:36 -07008358WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008359M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008360L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008361W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008363F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008364
Mark Brownfebf1df2008-04-02 00:51:09 -04008365WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008366M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8367M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008368L: linux-input@vger.kernel.org
8369T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8370W: http://opensource.wolfsonmicro.com/node/7
8371S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008372F: drivers/input/touchscreen/*wm97*
8373F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008374
Mark Brown055bcbc2010-08-13 14:18:12 +01008375WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008376M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008377L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008378T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008379T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008380W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008381S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008382F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008383F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008384F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008385F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008386F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008387F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008388F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008389F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008390F: drivers/input/misc/wm831x-on.c
8391F: drivers/input/touchscreen/wm831x-ts.c
8392F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008393F: drivers/mfd/arizona*
8394F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008395F: drivers/power/wm83*.c
8396F: drivers/rtc/rtc-wm83*.c
8397F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008398F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008399F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008400F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008401F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008402F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008403F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008404F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008405F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008406F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008407F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008408
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008409WORKQUEUE
8410M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008411T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8412S: Maintained
8413F: include/linux/workqueue.h
8414F: kernel/workqueue.c
8415F: Documentation/workqueue.txt
8416
Linus Torvalds1da177e2005-04-16 15:20:36 -07008417X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008418M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008419L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008420S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008421F: Documentation/networking/x25*
8422F: include/net/x25*
8423F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008424
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008425X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008426M: Thomas Gleixner <tglx@linutronix.de>
8427M: Ingo Molnar <mingo@redhat.com>
8428M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008429M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008430T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008432F: Documentation/x86/
8433F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008434
Matthew Garrettd09448532010-02-11 10:40:13 -05008435X86 PLATFORM DRIVERS
8436M: Matthew Garrett <mjg@redhat.com>
8437L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008438T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -05008439S: Maintained
8440F: drivers/platform/x86
8441
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008442X86 MCE INFRASTRUCTURE
8443M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008444M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008445L: linux-edac@vger.kernel.org
8446S: Maintained
8447F: arch/x86/kernel/cpu/mcheck/*
8448
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008449XC2028/3028 TUNER DRIVER
8450M: Mauro Carvalho Chehab <mchehab@redhat.com>
8451L: linux-media@vger.kernel.org
8452W: http://linuxtv.org
8453T: git git://linuxtv.org/media_tree.git
8454S: Maintained
8455F: drivers/media/tuners/tuner-xc2028.*
8456
Ian Campbellc4468082011-04-27 15:26:46 -07008457XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008458M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008459M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008460L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8461L: virtualization@lists.linux-foundation.org
8462S: Supported
8463F: arch/x86/xen/
8464F: drivers/*/xen-*front.c
8465F: drivers/xen/
8466F: arch/x86/include/asm/xen/
8467F: include/xen/
8468
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008469XEN HYPERVISOR ARM
8470M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8471L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8472S: Supported
8473F: arch/arm/xen/
8474F: arch/arm/include/asm/xen/
8475
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008476XEN NETWORK BACKEND DRIVER
8477M: Ian Campbell <ian.campbell@citrix.com>
8478L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8479L: netdev@vger.kernel.org
8480S: Supported
8481F: drivers/net/xen-netback/*
8482
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008483XEN PCI SUBSYSTEM
8484M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008485L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008486S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008487F: arch/x86/pci/*xen*
8488F: drivers/pci/*xen*
8489
8490XEN SWIOTLB SUBSYSTEM
8491M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008492L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008493S: Supported
8494F: arch/x86/xen/*swiotlb*
8495F: drivers/xen/*swiotlb*
8496
Linus Torvalds1da177e2005-04-16 15:20:36 -07008497XFS FILESYSTEM
8498P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008499M: Ben Myers <bpm@sgi.com>
8500M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008501M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008502L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008503W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008504T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008505S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008506F: Documentation/filesystems/xfs.txt
8507F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008508
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008509XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008510M: Anirudha Sarangi <anirudh@xilinx.com>
8511M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008512S: Maintained
8513F: drivers/net/ethernet/xilinx/xilinx_axienet*
8514
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008515XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008516M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008517W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008519F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008520
Peter Korsgaard238b8722006-12-06 20:35:17 -08008521XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008522M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008523L: linux-serial@vger.kernel.org
8524S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008525F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008526
Linus Torvalds1da177e2005-04-16 15:20:36 -07008527YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008528M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008529L: linux-hams@vger.kernel.org
8530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008531F: drivers/net/hamradio/yam*
8532F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008533
Henkaf64a5e2005-10-12 15:02:56 +02008534YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008535M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008536L: usbb2k-api-dev@nongnu.org
8537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008538F: Documentation/input/yealink.txt
8539F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008540
Linus Torvalds1da177e2005-04-16 15:20:36 -07008541Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008542M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008543W: http://yaina.de/jreuter/
8544W: http://www.qsl.net/dl1bke/
8545L: linux-hams@vger.kernel.org
8546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008547F: Documentation/networking/z8530drv.txt
8548F: drivers/net/hamradio/*scc.c
8549F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008550
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008551ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008552M: Daniel Drake <dsd@gentoo.org>
8553M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008554W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008555L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008556L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008558F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008559
Linus Torvalds1da177e2005-04-16 15:20:36 -07008560ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008561L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008562L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008563W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008564T: Mercurial http://linuxtv.org/hg/v4l-dvb
8565S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008566F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008567
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008568ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008569M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008570S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008571F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008572
Linus Torvalds1da177e2005-04-16 15:20:36 -07008573THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008574M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008575L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008576Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008577T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008578S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008579F: *
8580F: */