blob: 34f4eb4fb490ffc7f5c2c158667b3425f7bf3a71 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew 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 Guo8bcb9762011-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 Kirsher2b133ad2011-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 Kirsher9f2f3812011-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 Howellsa5432f52009-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 Howellsa5432f52009-04-20 15:46:45 +01001795L: linux-cachefs@redhat.com
1796S: Supported
1797F: Documentation/filesystems/caching/cachefiles.txt
1798F: fs/cachefiles/
1799
Jonathan Corbet77d51402007-03-22 19:44:17 -03001800CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001801M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001802L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001803T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001805F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001806F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001807
Joe Perches201b6ba2010-09-07 20:33:24 +00001808CAIF NETWORK LAYER
1809M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1810L: netdev@vger.kernel.org
1811S: Supported
1812F: Documentation/networking/caif/
1813F: drivers/net/caif/
1814F: include/linux/caif/
1815F: include/net/caif/
1816F: net/caif/
1817
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001818CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001819M: Muli Ben-Yehuda <muli@il.ibm.com>
1820M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001821L: discuss@x86-64.org
1822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001823F: arch/x86/kernel/pci-calgary_64.c
1824F: arch/x86/kernel/tce_64.c
1825F: arch/x86/include/asm/calgary.h
1826F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001827
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001828CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001829M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001830L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001831W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001832T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001833S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001834F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001835F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001836F: include/linux/can/core.h
1837F: include/linux/can/bcm.h
1838F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001839F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001840
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001841CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001842M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001843M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001844L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001845W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001846T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001847S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001848F: drivers/net/can/
1849F: include/linux/can/dev.h
1850F: include/linux/can/error.h
1851F: include/linux/can/netlink.h
1852F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001853
James Morris95d16c72012-03-16 12:05:48 +11001854CAPABILITIES
1855M: Serge Hallyn <serge.hallyn@canonical.com>
1856L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001857S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001858F: include/linux/capability.h
1859F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001860F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001861F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001862
Arnd Bergmannb8154542008-05-16 11:10:59 +02001863CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001864M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001865L: linuxppc-dev@lists.ozlabs.org
1866L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001867W: http://www.ibm.com/developerworks/power/cell/
1868S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001869F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001870F: arch/powerpc/include/asm/spu*.h
1871F: arch/powerpc/oprofile/*cell*
1872F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001873
Sage Weil9030aaf2009-10-06 11:31:15 -07001874CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001875M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001876L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001877W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001878T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001879S: Supported
1880F: Documentation/filesystems/ceph.txt
1881F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001882F: net/ceph
1883F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001884F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001885
David Vrabel18332a82008-09-17 16:34:44 +01001886CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001887L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001888S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001889F: Documentation/usb/WUSB-Design-overview.txt
1890F: Documentation/usb/wusb-cbaf
David Vrabel355ffe692009-12-22 13:13:28 +00001891F: drivers/usb/host/hwa-hc.c
1892F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001893F: drivers/usb/wusbcore/
1894F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001895
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001896CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001897M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001898W: http://miguelojeda.es/auxdisplay.htm
1899W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001901F: drivers/auxdisplay/cfag12864b.c
1902F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001903
1904CFAG12864BFB LCD FRAMEBUFFER 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/cfag12864bfb.c
1910F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001911
Johannes Berg704232c2007-04-23 12:20:05 -07001912CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001913M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001914L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001915W: http://wireless.kernel.org/
1916T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1917T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001919F: include/linux/nl80211.h
1920F: include/net/cfg80211.h
1921F: net/wireless/*
1922X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001923
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001924CHAR and MISC DRIVERS
1925M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001926M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001927T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001928S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001929F: drivers/char/*
1930F: drivers/misc/*
1931
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001932CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001933M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001934S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001935F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001936
Harry Weif8407f262011-02-25 14:44:15 -08001937CHINESE DOCUMENTATION
1938M: Harry Wei <harryxiyou@gmail.com>
1939L: xiyoulinuxkernelgroup@googlegroups.com
1940L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1941S: Maintained
1942F: Documentation/zh_CN/
1943
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001944CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1945M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1946L: linux-usb@vger.kernel.org
1947S: Maintained
1948F: drivers/usb/chipidea/
1949
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001950CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001951M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001952M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001953M: Neel Patel <neepatel@cisco.com>
1954M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001955S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001956F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001957
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001958CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001959M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001960L: netdev@vger.kernel.org
1961S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001962F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001963
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001964CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001965M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001966L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001968F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001969
Timur Tabid9e9d822008-04-24 08:45:26 +10001970CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001971M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001972L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001973S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001974F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001975
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001976CLEANCACHE API
1977M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1978L: linux-kernel@vger.kernel.org
1979S: Maintained
1980F: mm/cleancache.c
1981F: include/linux/cleancache.h
1982
Russell Kingd4275352009-04-16 14:05:27 +01001983CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001984M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001985S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001986F: include/linux/clk.h
1987
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001988CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001989M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001990M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1991M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001992L: linux-scsi@vger.kernel.org
1993S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001994F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001995
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001996CMPC ACPI DRIVER
1997M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1998M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05001999L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002000S: Supported
2001F: drivers/platform/x86/classmate-laptop.c
2002
Nicolas Palix74425ee2010-06-06 17:15:01 +02002003COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002004M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002005M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002006M: Nicolas Palix <nicolas.palix@imag.fr>
2007L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002008W: http://coccinelle.lip6.fr/
2009S: Supported
2010F: scripts/coccinelle/
2011F: scripts/coccicheck
2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002014M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015M: coda@cs.cmu.edu
2016L: codalist@coda.cs.cmu.edu
2017W: http://www.coda.cs.cmu.edu/
2018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002019F: Documentation/filesystems/coda.txt
2020F: fs/coda/
2021F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Mike Turquette7704add2012-05-02 18:37:45 -07002023COMMON CLK FRAMEWORK
2024M: Mike Turquette <mturquette@ti.com>
2025M: Mike Turquette <mturquette@linaro.org>
2026L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2027T: git git://git.linaro.org/people/mturquette/linux.git
2028S: Maintained
2029F: drivers/clk/clk.c
2030F: drivers/clk/clk-*
2031F: include/linux/clk-pr*
2032
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002033COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002034M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002035L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002036L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002037W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002038Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002039T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002040S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002041F: Documentation/filesystems/cifs.txt
2042F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002045M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002046L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002048F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
2050COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002051M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002052L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002054F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
2056COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002057M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002058L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002060F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002062COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002063M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002064L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002066F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002067
Simon Arlott949be0f2007-03-06 02:47:46 -08002068CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002069M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002070L: accessrunner-general@lists.sourceforge.net
2071W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002073F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002074
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002075CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002076M: Joel Becker <jlbec@evilplan.org>
2077T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002078S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002079F: fs/configfs/
2080F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002081
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002082CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002083M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002084L: netdev@vger.kernel.org
2085S: Maintained
2086F: drivers/connector/
2087
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002088CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002089M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002090M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002091L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002092L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002093T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002095F: include/linux/cgroup*
2096F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002097F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002098
Rudolf Marekbebe4672007-05-08 17:22:02 +02002099CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002100M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002101L: lm-sensors@lm-sensors.org
2102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002103F: Documentation/hwmon/coretemp
2104F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002107M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108W: http://www.fi.muni.cz/~kas/cosa/
2109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002110F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Florian Fainelli4371ee32009-06-01 02:43:17 -07002112CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002113M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002114L: netdev@vger.kernel.org
2115S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002116F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002119M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002120L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002121L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002123F: drivers/cpufreq/
2124F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002127M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002129F: arch/x86/kernel/cpuid.c
2130F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002132CPU POWER MONITORING SUBSYSTEM
2133M: Dominik Brodowski <linux@dominikbrodowski.net>
2134M: Thomas Renninger <trenn@suse.de>
2135S: Maintained
2136F: tools/power/cpupower
2137
Paul Jacksoned90fb42005-09-27 21:45:37 -07002138CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002139M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002140W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002141W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002142S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002143F: Documentation/cgroups/cpusets.txt
2144F: include/linux/cpuset.h
2145F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002148W: http://sourceforge.net/projects/cramfs/
2149S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002150F: Documentation/filesystems/cramfs.txt
2151F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002154M: Mikael Starvik <starvik@axis.com>
2155M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002156L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157W: http://developer.axis.com
2158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002159F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002160F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
2162CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002163M: Herbert Xu <herbert@gondor.apana.org.au>
2164M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002166T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002168F: Documentation/crypto/
2169F: arch/*/crypto/
2170F: crypto/
2171F: drivers/crypto/
2172F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Neil Horman5b07bd52009-02-05 16:03:04 +11002174CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002175M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002176L: linux-crypto@vger.kernel.org
2177S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002178F: crypto/ansi_cprng.c
2179F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002180
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002181CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002182M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002184F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002185
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002186CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002187M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002188L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002189L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002190T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002191W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002192W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002194F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002195F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002196F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002197
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002198CX88 VIDEO4LINUX DRIVER
2199M: Mauro Carvalho Chehab <mchehab@redhat.com>
2200L: linux-media@vger.kernel.org
2201W: http://linuxtv.org
2202T: git git://linuxtv.org/media_tree.git
2203S: Odd fixes
2204F: Documentation/video4linux/cx88/
2205F: drivers/media/pci/cx88/
2206
Antti Palosaari91952bc2012-10-01 12:28:46 -03002207CXD2820R MEDIA DRIVER
2208M: Antti Palosaari <crope@iki.fi>
2209L: linux-media@vger.kernel.org
2210W: http://linuxtv.org/
2211W: http://palosaari.fi/linux/
2212Q: http://patchwork.linuxtv.org/project/linux-media/list/
2213T: git git://linuxtv.org/anttip/media_tree.git
2214S: Maintained
2215F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002216
Steve Wisee5ec3782008-05-20 14:06:33 -07002217CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002218M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002219L: netdev@vger.kernel.org
2220W: http://www.chelsio.com
2221S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002222F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002223
2224CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002225M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002226L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002227W: http://www.openfabrics.org
2228S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002229F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002230
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002231CXGB4 ETHERNET DRIVER (CXGB4)
2232M: Dimitris Michailidis <dm@chelsio.com>
2233L: netdev@vger.kernel.org
2234W: http://www.chelsio.com
2235S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002236F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002237
2238CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2239M: Steve Wise <swise@chelsio.com>
2240L: linux-rdma@vger.kernel.org
2241W: http://www.openfabrics.org
2242S: Supported
2243F: drivers/infiniband/hw/cxgb4/
2244
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002245CXGB4VF ETHERNET DRIVER (CXGB4VF)
2246M: Casey Leedom <leedom@chelsio.com>
2247L: netdev@vger.kernel.org
2248W: http://www.chelsio.com
2249S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002250F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002251
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002252STMMAC ETHERNET DRIVER
2253M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2254L: netdev@vger.kernel.org
2255W: http://www.stlinux.com
2256S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002257F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002258
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002260M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002261L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262W: http://www.arm.linux.org.uk/
2263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002264F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002265
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002267M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002268W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002270F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
2272CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002274S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002275F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002276F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
2278CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002280S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002281F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002283CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002284M: Javier Martinez Canillas <javier@dowhile0.org>
2285L: linux-input@vger.kernel.org
2286S: Maintained
2287F: drivers/input/touchscreen/cyttsp*
2288F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002289
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002291M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292W: http://yaina.de/jreuter/
2293W: http://www.qsl.net/dl1bke/
2294L: linux-hams@vger.kernel.org
2295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002296F: net/ax25/af_ax25.c
2297F: net/ax25/ax25_dev.c
2298F: net/ax25/ax25_ds_*
2299F: net/ax25/ax25_in.c
2300F: net/ax25/ax25_out.c
2301F: net/ax25/ax25_timer.c
2302F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002304DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002305L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002306S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002307F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002308F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002309
2310DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002311M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002312W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002313M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002315F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002316
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002318M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002319M: Ali Akcaagac <aliakc@web.de>
2320M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002322L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323L: http://lists.twibble.org/mailman/listinfo/dc395x/
2324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002325F: Documentation/scsi/dc395x.txt
2326F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002328DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002329M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002330L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002331W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002333F: include/linux/dccp.h
2334F: include/linux/tfrc.h
2335F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002336
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338W: http://linux-decnet.sourceforge.net
2339L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002340S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002341F: Documentation/networking/decnet.txt
2342F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
2344DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002345M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002347F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002349DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002350M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05002351L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002353F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002354
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002356M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357W: http://www.debian.org/~dz/i8k/
2358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002359F: drivers/char/i8k.c
2360F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Doug Warzecha90563ec2005-09-06 15:17:15 -07002362DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002363M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002365F: Documentation/dcdbas.txt
2366F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002367
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002368DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002369M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002370S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002371F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002372
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002373DESIGNWARE USB3 DRD IP DRIVER
2374M: Felipe Balbi <balbi@ti.com>
2375L: linux-usb@vger.kernel.org
2376L: linux-omap@vger.kernel.org
2377T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2378S: Maintained
2379F: drivers/usb/dwc3/
2380
Kyungmin Park89d07762012-01-10 15:09:09 -08002381DEVICE FREQUENCY (DEVFREQ)
2382M: MyungJoo Ham <myungjoo.ham@samsung.com>
2383M: Kyungmin Park <kyungmin.park@samsung.com>
2384L: linux-kernel@vger.kernel.org
2385S: Maintained
2386F: drivers/devfreq/
2387
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002389M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391S: Maintained
2392
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002393DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002394M: Alasdair Kergon <agk@redhat.com>
2395M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002396L: dm-devel@redhat.com
2397W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002398Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002399T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002401F: Documentation/device-mapper/
2402F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002403F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002404F: include/linux/device-mapper.h
2405F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002406
Guenter Roeck335d7c52011-01-26 11:45:49 -08002407DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002408M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002409L: linux-i2c@vger.kernel.org
2410S: Maintained
2411F: drivers/i2c/busses/i2c-diolan-u2c.c
2412
Randy Dunlape7839f22008-10-12 16:11:45 -07002413DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002414M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002416F: Documentation/filesystems/dnotify.txt
2417F: fs/notify/dnotify/
2418F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
2420DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002421M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2423W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2424W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2425S: Maintained
2426
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002427DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002428M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002430F: Documentation/filesystems/quota.txt
2431F: fs/quota/
2432F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Bernie Thompson702686a2012-03-01 13:52:13 -08002434DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2435M: Bernie Thompson <bernie@plugable.com>
2436L: linux-fbdev@vger.kernel.org
2437S: Maintained
2438W: http://plugable.com/category/projects/udlfb/
2439F: drivers/video/udlfb.c
2440F: include/video/udlfb.h
2441F: Documentation/fb/udlfb.txt
2442
Randy Dunlape7839f22008-10-12 16:11:45 -07002443DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002444M: Christine Caulfield <ccaulfie@redhat.com>
2445M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002446L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002447W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002448T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002449S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002450F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002451
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302452DMA BUFFER SHARING FRAMEWORK
2453M: Sumit Semwal <sumit.semwal@linaro.org>
2454S: Maintained
2455L: linux-media@vger.kernel.org
2456L: dri-devel@lists.freedesktop.org
2457L: linaro-mm-sig@lists.linaro.org
2458F: drivers/base/dma-buf*
2459F: include/linux/dma-buf*
2460F: Documentation/dma-buf-sharing.txt
2461T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2462
Dan Williamsb3e5f262007-08-07 10:26:35 -07002463DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002464M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002465M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002466S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002467F: drivers/dma/
2468F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302469T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2470T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002471
Juerg Haefligerb8250372007-06-09 10:11:16 -04002472DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002473M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002474L: lm-sensors@lm-sensors.org
2475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002476F: Documentation/hwmon/dme1737
2477F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002478
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002479DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002480M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002481L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002482S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002483F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002484
Joe Perches7d2c86b2009-04-07 20:59:01 -07002485DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002486M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002487L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002488T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002490F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002491
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002493M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494L: blinux-list@redhat.com
2495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002496F: drivers/char/dtlk.c
2497F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002499DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002500M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002501L: linux-scsi@vger.kernel.org
2502W: http://www.adaptec.com/
2503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002504F: drivers/scsi/dpt*
2505F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002506
Philipp Reisnerb411b362009-09-25 16:07:19 -07002507DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002508P: Philipp Reisner
2509P: Lars Ellenberg
2510M: drbd-dev@lists.linbit.com
2511L: drbd-user@lists.linbit.com
2512W: http://www.drbd.org
2513T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2514T: git git://git.drbd.org/drbd-8.3.git
2515S: Supported
2516F: drivers/block/drbd/
2517F: lib/lru_cache.c
2518F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002519
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002520DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002521M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002522T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002524F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002525F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002526F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002527F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002528F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002529F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002530F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
2532DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002533M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002534L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002535T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002537F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002538F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Chris Wilson8daf7472010-09-28 14:07:26 +01002540INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002541M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002542L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002543L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002544T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002545S: Supported
2546F: drivers/gpu/drm/i915
2547F: include/drm/i915*
2548
Kyungmin Park398a6d42011-11-02 11:33:16 +09002549DRM DRIVERS FOR EXYNOS
2550M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002551M: Joonyoung Shim <jy0922.shim@samsung.com>
2552M: Seung-Woo Kim <sw0312.kim@samsung.com>
2553M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002554L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002555T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002556S: Supported
2557F: drivers/gpu/drm/exynos
2558F: include/drm/exynos*
2559
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002561M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002562L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002564F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
Antti Palosaari91952bc2012-10-01 12:28:46 -03002566DVB_USB_AF9015 MEDIA DRIVER
2567M: Antti Palosaari <crope@iki.fi>
2568L: linux-media@vger.kernel.org
2569W: http://linuxtv.org/
2570W: http://palosaari.fi/linux/
2571Q: http://patchwork.linuxtv.org/project/linux-media/list/
2572T: git git://linuxtv.org/anttip/media_tree.git
2573S: Maintained
2574F: drivers/media/usb/dvb-usb-v2/af9015*
2575
2576DVB_USB_AF9035 MEDIA DRIVER
2577M: Antti Palosaari <crope@iki.fi>
2578L: linux-media@vger.kernel.org
2579W: http://linuxtv.org/
2580W: http://palosaari.fi/linux/
2581Q: http://patchwork.linuxtv.org/project/linux-media/list/
2582T: git git://linuxtv.org/anttip/media_tree.git
2583S: Maintained
2584F: drivers/media/usb/dvb-usb-v2/af9035*
2585
2586DVB_USB_ANYSEE MEDIA DRIVER
2587M: Antti Palosaari <crope@iki.fi>
2588L: linux-media@vger.kernel.org
2589W: http://linuxtv.org/
2590W: http://palosaari.fi/linux/
2591Q: http://patchwork.linuxtv.org/project/linux-media/list/
2592T: git git://linuxtv.org/anttip/media_tree.git
2593S: Maintained
2594F: drivers/media/usb/dvb-usb-v2/anysee*
2595
2596DVB_USB_AU6610 MEDIA DRIVER
2597M: Antti Palosaari <crope@iki.fi>
2598L: linux-media@vger.kernel.org
2599W: http://linuxtv.org/
2600W: http://palosaari.fi/linux/
2601Q: http://patchwork.linuxtv.org/project/linux-media/list/
2602T: git git://linuxtv.org/anttip/media_tree.git
2603S: Maintained
2604F: drivers/media/usb/dvb-usb-v2/au6610*
2605
2606DVB_USB_CE6230 MEDIA DRIVER
2607M: Antti Palosaari <crope@iki.fi>
2608L: linux-media@vger.kernel.org
2609W: http://linuxtv.org/
2610W: http://palosaari.fi/linux/
2611Q: http://patchwork.linuxtv.org/project/linux-media/list/
2612T: git git://linuxtv.org/anttip/media_tree.git
2613S: Maintained
2614F: drivers/media/usb/dvb-usb-v2/ce6230*
2615
Michael Krufkyd099dea2012-10-02 00:56:20 -03002616DVB_USB_CXUSB MEDIA DRIVER
2617M: Michael Krufky <mkrufky@linuxtv.org>
2618L: linux-media@vger.kernel.org
2619W: http://linuxtv.org/
2620W: http://github.com/mkrufky
2621Q: http://patchwork.linuxtv.org/project/linux-media/list/
2622T: git git://linuxtv.org/media_tree.git
2623S: Maintained
2624F: drivers/media/usb/dvb-usb-v2/cxusb*
2625
Antti Palosaari91952bc2012-10-01 12:28:46 -03002626DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2627M: Antti Palosaari <crope@iki.fi>
2628L: linux-media@vger.kernel.org
2629W: http://linuxtv.org/
2630W: http://palosaari.fi/linux/
2631Q: http://patchwork.linuxtv.org/project/linux-media/list/
2632T: git git://linuxtv.org/anttip/media_tree.git
2633S: Maintained
2634F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2635
2636DVB_USB_EC168 MEDIA DRIVER
2637M: Antti Palosaari <crope@iki.fi>
2638L: linux-media@vger.kernel.org
2639W: http://linuxtv.org/
2640W: http://palosaari.fi/linux/
2641Q: http://patchwork.linuxtv.org/project/linux-media/list/
2642T: git git://linuxtv.org/anttip/media_tree.git
2643S: Maintained
2644F: drivers/media/usb/dvb-usb-v2/ec168*
2645
Michael Krufky8856f5f2012-10-02 00:55:50 -03002646DVB_USB_MXL111SF MEDIA DRIVER
2647M: Michael Krufky <mkrufky@linuxtv.org>
2648L: linux-media@vger.kernel.org
2649W: http://linuxtv.org/
2650W: http://github.com/mkrufky
2651Q: http://patchwork.linuxtv.org/project/linux-media/list/
2652T: git git://linuxtv.org/mkrufky/mxl111sf.git
2653S: Maintained
2654F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2655
Antti Palosaari91952bc2012-10-01 12:28:46 -03002656DVB_USB_RTL28XXU MEDIA DRIVER
2657M: Antti Palosaari <crope@iki.fi>
2658L: linux-media@vger.kernel.org
2659W: http://linuxtv.org/
2660W: http://palosaari.fi/linux/
2661Q: http://patchwork.linuxtv.org/project/linux-media/list/
2662T: git git://linuxtv.org/anttip/media_tree.git
2663S: Maintained
2664F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2665
2666DVB_USB_V2 MEDIA DRIVER
2667M: Antti Palosaari <crope@iki.fi>
2668L: linux-media@vger.kernel.org
2669W: http://linuxtv.org/
2670W: http://palosaari.fi/linux/
2671Q: http://patchwork.linuxtv.org/project/linux-media/list/
2672T: git git://linuxtv.org/anttip/media_tree.git
2673S: Maintained
2674F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2675F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2676
Jason Baronac0ac382011-08-11 14:36:43 -04002677DYNAMIC DEBUG
2678M: Jason Baron <jbaron@redhat.com>
2679S: Maintained
2680F: lib/dynamic_debug.c
2681F: include/linux/dynamic_debug.h
2682
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002683DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002684M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002685S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002686F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002687
Antti Palosaari91952bc2012-10-01 12:28:46 -03002688E4000 MEDIA DRIVER
2689M: Antti Palosaari <crope@iki.fi>
2690L: linux-media@vger.kernel.org
2691W: http://linuxtv.org/
2692W: http://palosaari.fi/linux/
2693Q: http://patchwork.linuxtv.org/project/linux-media/list/
2694T: git git://linuxtv.org/anttip/media_tree.git
2695S: Maintained
2696F: drivers/media/tuners/e4000*
2697
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002699M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002700L: linux-eata@i-connect.net
2701L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002703F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
2705EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002706M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707L: linux-scsi@vger.kernel.org
2708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002709F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
2711EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002712M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002713L: linux-eata@i-connect.net
2714L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002716F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
2718EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002719M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002720L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721W: http://ebtables.sourceforge.net/
2722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002723F: include/linux/netfilter_bridge/ebt_*.h
2724F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
Antti Palosaari91952bc2012-10-01 12:28:46 -03002726EC100 MEDIA DRIVER
2727M: Antti Palosaari <crope@iki.fi>
2728L: linux-media@vger.kernel.org
2729W: http://linuxtv.org/
2730W: http://palosaari.fi/linux/
2731Q: http://patchwork.linuxtv.org/project/linux-media/list/
2732T: git git://linuxtv.org/anttip/media_tree.git
2733S: Maintained
2734F: drivers/media/dvb-frontends/ec100*
2735
Michael Halcrow237fead2006-10-04 02:16:22 -07002736ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002737M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002738M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002739L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002740W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002741S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002742F: Documentation/filesystems/ecryptfs.txt
2743F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002744
Alan Coxda9bb1d2006-01-18 17:44:13 -08002745EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002746M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002747L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002748W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002749S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002750F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002751F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002752F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002753
Borislav Petkovc476c232009-05-20 20:31:58 +02002754EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002755M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002756M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002757L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002758W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002759S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002760F: drivers/edac/amd64_edac*
2761
Dave Peterson0e438e32006-03-26 01:38:55 -08002762EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002763M: Mark Gross <mark.gross@intel.com>
2764M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002765L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002766W: bluesmoke.sourceforge.net
2767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002768F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002769
2770EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002771M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002772L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002773W: bluesmoke.sourceforge.net
2774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002775F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002776
Douglas Thompson6bc78402007-07-19 01:50:12 -07002777EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002778M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002779L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002780W: bluesmoke.sourceforge.net
2781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002782F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002783
2784EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002785M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002786L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002787W: bluesmoke.sourceforge.net
2788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002789F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002790
2791EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002792M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002793L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002794W: bluesmoke.sourceforge.net
2795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002796F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002797
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002798EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002799M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002800L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002801W: bluesmoke.sourceforge.net
2802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002803F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002804
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002805EDAC-I7300
2806M: Mauro Carvalho Chehab <mchehab@redhat.com>
2807L: linux-edac@vger.kernel.org
2808W: bluesmoke.sourceforge.net
2809S: Maintained
2810F: drivers/edac/i7300_edac.c
2811
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002812EDAC-I7CORE
2813M: Mauro Carvalho Chehab <mchehab@redhat.com>
2814L: linux-edac@vger.kernel.org
2815W: bluesmoke.sourceforge.net
2816S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002817F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002818
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002819EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002820M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302821M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002822L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002823W: bluesmoke.sourceforge.net
2824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002825F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002826
2827EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002828M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002829L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002830W: bluesmoke.sourceforge.net
2831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002832F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002833
Dave Peterson0e438e32006-03-26 01:38:55 -08002834EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002835M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002836L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002837W: bluesmoke.sourceforge.net
2838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002839F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002840
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002841EDAC-SBRIDGE
2842M: Mauro Carvalho Chehab <mchehab@redhat.com>
2843L: linux-edac@vger.kernel.org
2844W: bluesmoke.sourceforge.net
2845S: Maintained
2846F: drivers/edac/sb_edac.c
2847
Clemens Ladischaf399172011-01-10 16:32:54 +01002848EDIROL UA-101/UA-1000 DRIVER
2849M: Clemens Ladisch <clemens@ladisch.de>
2850L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2851T: git git://git.alsa-project.org/alsa-kernel.git
2852S: Maintained
2853F: sound/usb/misc/ua101.c
2854
Matt Fleming1f7df952012-10-03 10:04:02 +01002855EXTENSIBLE FIRMWARE INTERFACE (EFI)
2856M: Matt Fleming <matt.fleming@intel.com>
2857L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002858T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002859S: Maintained
2860F: Documentation/x86/efi-stub.txt
2861F: arch/ia64/kernel/efi.c
2862F: arch/x86/boot/compressed/eboot.[ch]
2863F: arch/x86/include/asm/efi.h
2864F: arch/x86/platform/efi/*
2865F: drivers/firmware/efivars.c
2866F: include/linux/efi*.h
2867
Peter Jones85a00d92010-09-22 13:05:04 -07002868EFIFB FRAMEBUFFER DRIVER
2869L: linux-fbdev@vger.kernel.org
2870M: Peter Jones <pjones@redhat.com>
2871S: Maintained
2872F: drivers/video/efifb.c
2873
Josh Triplett0bee8d22006-07-30 03:03:58 -07002874EFS FILESYSTEM
2875W: http://aeschi.ch.eu.org/efs/
2876S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002877F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002878
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002879EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002880M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2881M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002882L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002883S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002884F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002885
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002886EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002887M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002888L: netdev@vger.kernel.org
2889S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002890F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002891
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02002892EM28XX VIDEO4LINUX DRIVER
2893M: Mauro Carvalho Chehab <mchehab@redhat.com>
2894L: linux-media@vger.kernel.org
2895W: http://linuxtv.org
2896T: git git://linuxtv.org/media_tree.git
2897S: Maintained
2898F: drivers/media/usb/em28xx/
2899
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002900EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002901M: Paul Gortmaker <paul.gortmaker@windriver.com>
2902M: Matt Mackall <mpm@selenic.com>
2903M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002904L: linux-embedded@vger.kernel.org
2905S: Maintained
2906
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002907EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002908M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002909L: linux-scsi@vger.kernel.org
2910W: http://sourceforge.net/projects/lpfcxxxx
2911S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002912F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002913
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002914ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002915M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002916S: Maintained
2917F: drivers/misc/cb710/
2918F: drivers/mmc/host/cb710-mmc.*
2919F: include/linux/cb710.h
2920
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002921ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2922M: Maxim Levitsky <maximlevitsky@gmail.com>
2923S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002924F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002925
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002927M: Christopher Hoover <ch@murgatroid.com>
2928M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002930F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002932EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002933M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002934S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002935T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002936F: drivers/video/s1d13xxxfb.c
2937F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002938
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002940M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002941L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002943F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
2945ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002946M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002947L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002948L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002949W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002951F: include/linux/netfilter_bridge/
2952F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
2954ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002955M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002957F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
2959EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002960M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002961L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002963F: Documentation/filesystems/ext2.txt
2964F: fs/ext2/
2965F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966
2967EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002968M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002969M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002970M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002971L: linux-ext4@vger.kernel.org
2972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002973F: Documentation/filesystems/ext3.txt
2974F: fs/ext3/
2975F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002976
2977EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002978M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002979M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002980L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002981W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002982Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002984F: Documentation/filesystems/ext4.txt
2985F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
Mimi Zoharc5532b02011-08-17 18:52:24 -04002987Extended Verification Module (EVM)
2988M: Mimi Zohar <zohar@us.ibm.com>
2989S: Supported
2990F: security/integrity/evm/
2991
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002992EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2993M: MyungJoo Ham <myungjoo.ham@samsung.com>
2994M: Chanwoo Choi <cw00.choi@samsung.com>
2995L: linux-kernel@vger.kernel.org
2996S: Maintained
2997F: drivers/extcon/
2998F: Documentation/extcon/
2999
Jingoo Han0a799512012-02-06 11:30:39 +09003000EXYNOS DP DRIVER
3001M: Jingoo Han <jg1.han@samsung.com>
3002L: linux-fbdev@vger.kernel.org
3003S: Maintained
3004F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003005F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003006
Donghwa Lee33ad3912012-03-06 11:44:58 +09003007EXYNOS MIPI DISPLAY DRIVERS
3008M: Inki Dae <inki.dae@samsung.com>
3009M: Donghwa Lee <dh09.lee@samsung.com>
3010M: Kyungmin Park <kyungmin.park@samsung.com>
3011L: linux-fbdev@vger.kernel.org
3012S: Maintained
3013F: drivers/video/exynos/exynos_mipi*
3014F: include/video/exynos_mipi*
3015
Jean Delvaree53004e2006-01-09 23:26:14 +01003016F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003017M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003018L: lm-sensors@lm-sensors.org
3019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003020F: Documentation/hwmon/f71805f
3021F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003022
Michael Büscheea977e2012-04-02 12:14:32 -03003023FC0011 TUNER DRIVER
3024M: Michael Buesch <m@bues.ch>
3025L: linux-media@vger.kernel.org
3026S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003027F: drivers/media/tuners/fc0011.h
3028F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003029
Antti Palosaari91952bc2012-10-01 12:28:46 -03003030FC2580 MEDIA DRIVER
3031M: Antti Palosaari <crope@iki.fi>
3032L: linux-media@vger.kernel.org
3033W: http://linuxtv.org/
3034W: http://palosaari.fi/linux/
3035Q: http://patchwork.linuxtv.org/project/linux-media/list/
3036T: git git://linuxtv.org/anttip/media_tree.git
3037S: Maintained
3038F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
Eric Paris88b2dbd2010-08-18 12:25:50 -04003040FANOTIFY
3041M: Eric Paris <eparis@redhat.com>
3042S: Maintained
3043F: fs/notify/fanotify/
3044F: include/linux/fanotify.h
3045
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003047M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048W: http://www.farsite.co.uk/
3049S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003050F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Akinobu Mitac5408b82007-04-23 14:41:20 -07003052FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003053M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003054S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003055F: Documentation/fault-injection/
3056F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003057
Robert Lovecae727d2010-02-16 12:16:00 -08003058FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3059M: Robert Love <robert.w.love@intel.com>
3060L: devel@open-fcoe.org
3061W: www.Open-FCoE.org
3062S: Supported
3063F: drivers/scsi/libfc/
3064F: drivers/scsi/fcoe/
3065F: include/scsi/fc/
3066F: include/scsi/libfc.h
3067F: include/scsi/libfcoe.h
3068
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003069FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003070M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003071L: linux-fsdevel@vger.kernel.org
3072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003073F: include/linux/fcntl.h
3074F: include/linux/fs.h
3075F: fs/fcntl.c
3076F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003077
3078FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003079M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003080L: linux-fsdevel@vger.kernel.org
3081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003082F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003083
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003084FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003085M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003086L: lm-sensors@lm-sensors.org
3087S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003088F: drivers/hwmon/f75375s.c
3089F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003090
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003091FIREWIRE AUDIO DRIVERS
3092M: Clemens Ladisch <clemens@ladisch.de>
3093L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3094T: git git://git.alsa-project.org/alsa-kernel.git
3095S: Maintained
3096F: sound/firewire/
3097
Stefan Richtereb86ec52012-11-03 09:25:20 +01003098FIREWIRE MEDIA DRIVERS (firedtv)
3099M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3100L: linux-media@vger.kernel.org
3101L: linux1394-devel@lists.sourceforge.net
3102T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3103S: Maintained
3104F: drivers/media/firewire/
3105
Chris Boota511ce32012-04-14 17:50:35 -07003106FIREWIRE SBP-2 TARGET
3107M: Chris Boot <bootc@bootc.net>
3108L: linux-scsi@vger.kernel.org
3109L: target-devel@vger.kernel.org
3110L: linux1394-devel@lists.sourceforge.net
3111T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3112S: Maintained
3113F: drivers/target/sbp/
3114
Joe Perches7d2c86b2009-04-07 20:59:01 -07003115FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003116M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003117L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003118W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003119T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003121F: drivers/firewire/
3122F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003123F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003124
3125FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003126M: Ming Lei <ming.lei@canonical.com>
3127L: linux-kernel@vger.kernel.org
3128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003129F: Documentation/firmware_class/
3130F: drivers/base/firmware*.c
3131F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003132
Jiri Kosina8206f662012-05-18 13:52:29 +02003133FLOPPY DRIVER
3134M: Jiri Kosina <jkosina@suse.cz>
3135T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3136S: Odd fixes
3137F: drivers/block/floppy.c
3138
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003139FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003140M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003141W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003143F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003144
3145FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003146L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003147S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003148F: drivers/net/wan/dlci.c
3149F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003150
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003152M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003153L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003155Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003156T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003158F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003159F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003160F: drivers/video/
3161F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003162F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163
Zhang Wei173acc72008-03-01 07:42:48 -07003164FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003165M: Li Yang <leoli@freescale.com>
3166M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003167L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003169F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003170
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003171FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003172M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003173L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003174L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003176F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003177
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003178FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003179M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003180L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003181L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003183F: arch/arm/plat-mxc/include/mach/imxfb.h
3184F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003185
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003186FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003187M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3188M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003189L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003190L: netdev@vger.kernel.org
3191S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003192F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003193F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003194
Timur Tabid9e9d822008-04-24 08:45:26 +10003195FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003196M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003197L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003198S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003199F: arch/powerpc/sysdev/qe_lib/
3200F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003201
Joe Perchesb55ef9292009-10-26 16:49:46 -07003202FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003203M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003204L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003205L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003206S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003207F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003208
Li Yangbeaf53b2007-05-25 13:54:02 +08003209FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003210M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003211L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003212L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003213S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003214F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003215
Timur Tabid9e9d822008-04-24 08:45:26 +10003216FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003217M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003218L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003219S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003220F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003221
3222FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003223M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003224L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003225L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003226S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003227F: sound/soc/fsl/fsl*
3228F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003229
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003231M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003234F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
Pavel Machek71038f52009-01-15 13:51:02 -08003236FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003237M: Pavel Machek <pavel@ucw.cz>
3238M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003239L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003240S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003241F: Documentation/power/freezing-of-tasks.txt
3242F: include/linux/freezer.h
3243F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003244
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003245FRONTSWAP API
3246M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3247L: linux-kernel@vger.kernel.org
3248S: Maintained
3249F: mm/frontswap.c
3250F: include/linux/frontswap.h
3251
David Howellsa5432f52009-04-20 15:46:45 +01003252FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003253M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003254L: linux-cachefs@redhat.com
3255S: Supported
3256F: Documentation/filesystems/caching/
3257F: fs/fscache/
3258F: include/linux/fscache*.h
3259
David Howells5ab7ffe2007-04-10 15:10:45 +01003260FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003261M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003263F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Jonathan Woithe20b93732008-06-11 10:14:56 +09303265FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303266M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05003267L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003269F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303270
Heungjun Kim4da621b2011-11-11 08:05:33 -03003271FUJITSU M-5MO LS CAMERA ISP DRIVER
3272M: Kyungmin Park <kyungmin.park@samsung.com>
3273M: Heungjun Kim <riverful.kim@samsung.com>
3274L: linux-media@vger.kernel.org
3275S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003276F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003277F: include/media/m5mols.h
3278
Robert Gerlach2d24c492012-01-18 14:26:22 +01003279FUJITSU TABLET EXTRAS
3280M: Robert Gerlach <khnz@gmx.de>
3281L: platform-driver-x86@vger.kernel.org
3282S: Maintained
3283F: drivers/platform/x86/fujitsu-tablet.c
3284
Miklos Szeredi04578f12005-09-09 13:10:22 -07003285FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003286M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003287L: fuse-devel@lists.sourceforge.net
3288W: http://fuse.sourceforge.net/
3289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003290F: fs/fuse/
3291F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003292
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003294M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003296S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003297F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
3299GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003300M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301L: linux-scsi@vger.kernel.org
3302W: http://www.icp-vortex.com/
3303S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003304F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003306GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003307M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003308S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003309F: drivers/i2c/busses/i2c-gpio.c
3310F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003311
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003312GENERIC GPIO I2C MULTIPLEXER DRIVER
3313M: Peter Korsgaard <peter.korsgaard@barco.com>
3314L: linux-i2c@vger.kernel.org
3315S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003316F: drivers/i2c/muxes/i2c-mux-gpio.c
3317F: include/linux/i2c-mux-gpio.h
3318F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003319
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003320GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003321M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003324F: drivers/net/wan/c101.c
3325F: drivers/net/wan/hd6457*
3326F: drivers/net/wan/hdlc*
3327F: drivers/net/wan/n2.c
3328F: drivers/net/wan/pc300too.c
3329F: drivers/net/wan/pci200syn.c
3330F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003332GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003333M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003334L: linux-arch@vger.kernel.org
3335T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3336S: Maintained
3337F: include/asm-generic
3338
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003339GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda2562c2009-10-26 16:49:39 -07003340M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003341L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003342S: Supported
3343F: drivers/uio/uio_pci_generic.c
3344
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003345GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003346M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003347L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003348W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003349T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3350T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003351S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003352F: Documentation/filesystems/gfs2*.txt
3353F: fs/gfs2/
3354F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003355
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003356GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003357M: Hansjoerg Lipp <hjlipp@web.de>
3358M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003359L: gigaset307x-common@lists.sourceforge.net
3360W: http://gigaset307x.sourceforge.net/
3361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003362F: Documentation/isdn/README.gigaset
3363F: drivers/isdn/gigaset/
3364F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003365
Grant Likelya0dc00b2011-02-12 01:48:14 -07003366GPIO SUBSYSTEM
3367M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003368M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003369S: Maintained
3370T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003371F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003372F: drivers/gpio/
3373F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003374F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003375
Harry Wei71a6d0a2011-05-11 15:13:33 -07003376GRE DEMULTIPLEXER DRIVER
3377M: Dmitry Kozlov <xeb@mail.ru>
3378L: netdev@vger.kernel.org
3379S: Maintained
3380F: net/ipv4/gre.c
3381F: include/net/gre.h
3382
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003383GRETH 10/100/1G Ethernet MAC device driver
3384M: Kristoffer Glembo <kristoffer@gaisler.com>
3385L: netdev@vger.kernel.org
3386S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003387F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003388
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003389GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003390M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003391L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003392T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003393S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003394F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003395
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003396GSPCA GL860 SUBDRIVER
3397M: Olivier Lorin <o.lorin@laposte.net>
3398L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003399T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003400S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003401F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003402
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003403GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003404M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003405L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003406T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003407S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003408F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003409
3410GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003411M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003412L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003413T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003414S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003415F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003416
Brian Johnson261982f2009-07-19 15:58:56 -03003417GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003418M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003419L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003420T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003421S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003422F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003423
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003424GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003425M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003426L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003427T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003428S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003429F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003430
3431GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003432M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003433L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003434T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003435S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003436F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003437
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003438STK1160 USB VIDEO CAPTURE DRIVER
3439M: Ezequiel Garcia <elezegarcia@gmail.com>
3440L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003441T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003442S: Maintained
3443F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003444
Harry Wei71a6d0a2011-05-11 15:13:33 -07003445HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3446M: Frank Seidel <frank@f-seidel.de>
3447L: platform-driver-x86@vger.kernel.org
3448W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3449S: Maintained
3450F: drivers/platform/x86/hdaps.c
3451
3452HWPOISON MEMORY FAILURE HANDLING
3453M: Andi Kleen <andi@firstfloor.org>
3454L: linux-mm@kvack.org
3455T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3456S: Maintained
3457F: mm/memory-failure.c
3458F: mm/hwpoison-inject.c
3459
3460HYPERVISOR VIRTUAL CONSOLE DRIVER
3461L: linuxppc-dev@lists.ozlabs.org
3462S: Odd Fixes
3463F: drivers/tty/hvc/
3464
Michael Buesch844dd052006-06-26 00:24:59 -07003465HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003466M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003467M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003468L: lm-sensors@lm-sensors.org
3469W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003470T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003471T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003472S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003473F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003474F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003475F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003476
3477HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003478M: Matt Mackall <mpm@selenic.com>
3479M: Herbert Xu <herbert@gondor.apana.org.au>
3480S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003481F: Documentation/hw_random.txt
3482F: drivers/char/hw_random/
3483F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003484
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003485HARDWARE SPINLOCK CORE
3486M: Ohad Ben-Cohen <ohad@wizery.com>
3487S: Maintained
3488F: Documentation/hwspinlock.txt
3489F: drivers/hwspinlock/hwspinlock_*
3490F: include/linux/hwspinlock.h
3491
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003493L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003495F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496
Antti Palosaari91952bc2012-10-01 12:28:46 -03003497HD29L2 MEDIA DRIVER
3498M: Antti Palosaari <crope@iki.fi>
3499L: linux-media@vger.kernel.org
3500W: http://linuxtv.org/
3501W: http://palosaari.fi/linux/
3502Q: http://patchwork.linuxtv.org/project/linux-media/list/
3503T: git git://linuxtv.org/anttip/media_tree.git
3504S: Maintained
3505F: drivers/media/dvb-frontends/hd29l2*
3506
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003507HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003508M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003509L: iss_storagedev@hp.com
3510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003511F: Documentation/blockdev/cpqarray.txt
3512F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003513
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003514HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003515M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003516L: iss_storagedev@hp.com
3517S: Supported
3518F: Documentation/scsi/hpsa.txt
3519F: drivers/scsi/hpsa*.[ch]
3520F: include/linux/cciss*.h
3521
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003522HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003523M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003524L: iss_storagedev@hp.com
3525S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003526F: Documentation/blockdev/cciss.txt
3527F: drivers/block/cciss*
3528F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003529
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003531L: linux-fsdevel@vger.kernel.org
3532S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003533F: Documentation/filesystems/hfs.txt
3534F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535
3536HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003537M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538L: linux-nvidia@lists.surfsouth.com
3539W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003541F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003543HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003544M: Pavel Machek <pavel@ucw.cz>
3545M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003546L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003547S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003548F: arch/x86/power/
3549F: drivers/base/power/
3550F: kernel/power/
3551F: include/linux/suspend.h
3552F: include/linux/freezer.h
3553F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003554F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003555
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003556HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003557M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003558L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003559T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003561F: drivers/hid/
3562F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003563
Ingo Molnar38bed542007-02-22 09:09:34 +01003564HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003565M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003566T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003568F: Documentation/timers/
3569F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003570F: kernel/time/clockevents.c
3571F: kernel/time/tick*.*
3572F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003573F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003574F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003575
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003578S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003579F: drivers/net/hamradio/dmascc.c
3580F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003582HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003583M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003584W: http://www.highpoint-tech.com
3585S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003586F: Documentation/scsi/hptiop.txt
3587F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003588
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003590M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591L: linux-hippi@sunsite.dk
3592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003593F: include/linux/hippidevice.h
3594F: include/linux/if_hippi.h
3595F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003596F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597
Jouni Malinenff1d2762005-05-12 22:54:16 -04003598HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003599M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003600L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003601L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003602W: http://hostap.epitest.fi/
3603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003604F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003605
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003606HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05003607L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003608S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003609F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003610
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003611HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003612M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003613S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003614F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003615
Joe Perches7d2c86b2009-04-07 20:59:01 -07003616HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003617M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003619F: Documentation/timers/hpet.txt
3620F: drivers/char/hpet.c
3621F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003622
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003623HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003624M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003626F: arch/x86/kernel/hpet.c
3627F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003628
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003630M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003633F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634
Joe Perches7d2c86b2009-04-07 20:59:01 -07003635HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003636M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003637W: http://www.pharscape.org
3638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003639F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003640
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003641HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003642M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003643L: linux-input@vger.kernel.org
3644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003645F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003646
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003648M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003650F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003652Hyper-V CORE AND DRIVERS
3653M: K. Y. Srinivasan <kys@microsoft.com>
3654M: Haiyang Zhang <haiyangz@microsoft.com>
3655L: devel@linuxdriverproject.org
3656S: Maintained
3657F: drivers/hv/
3658F: drivers/hid/hid-hyperv.c
3659F: drivers/net/hyperv/
3660F: drivers/staging/hv/
3661
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003662I2C OVER PARALLEL PORT
3663M: Jean Delvare <khali@linux-fr.org>
3664L: linux-i2c@vger.kernel.org
3665S: Maintained
3666F: Documentation/i2c/busses/i2c-parport
3667F: Documentation/i2c/busses/i2c-parport-light
3668F: drivers/i2c/busses/i2c-parport.c
3669F: drivers/i2c/busses/i2c-parport-light.c
3670
3671I2C/SMBUS CONTROLLER DRIVERS FOR PC
3672M: Jean Delvare <khali@linux-fr.org>
3673L: linux-i2c@vger.kernel.org
3674S: Maintained
3675F: Documentation/i2c/busses/i2c-ali1535
3676F: Documentation/i2c/busses/i2c-ali1563
3677F: Documentation/i2c/busses/i2c-ali15x3
3678F: Documentation/i2c/busses/i2c-amd756
3679F: Documentation/i2c/busses/i2c-amd8111
3680F: Documentation/i2c/busses/i2c-i801
3681F: Documentation/i2c/busses/i2c-nforce2
3682F: Documentation/i2c/busses/i2c-piix4
3683F: Documentation/i2c/busses/i2c-sis5595
3684F: Documentation/i2c/busses/i2c-sis630
3685F: Documentation/i2c/busses/i2c-sis96x
3686F: Documentation/i2c/busses/i2c-via
3687F: Documentation/i2c/busses/i2c-viapro
3688F: drivers/i2c/busses/i2c-ali1535.c
3689F: drivers/i2c/busses/i2c-ali1563.c
3690F: drivers/i2c/busses/i2c-ali15x3.c
3691F: drivers/i2c/busses/i2c-amd756.c
3692F: drivers/i2c/busses/i2c-amd756-s4882.c
3693F: drivers/i2c/busses/i2c-amd8111.c
3694F: drivers/i2c/busses/i2c-i801.c
3695F: drivers/i2c/busses/i2c-isch.c
3696F: drivers/i2c/busses/i2c-nforce2.c
3697F: drivers/i2c/busses/i2c-nforce2-s4985.c
3698F: drivers/i2c/busses/i2c-piix4.c
3699F: drivers/i2c/busses/i2c-sis5595.c
3700F: drivers/i2c/busses/i2c-sis630.c
3701F: drivers/i2c/busses/i2c-sis96x.c
3702F: drivers/i2c/busses/i2c-via.c
3703F: drivers/i2c/busses/i2c-viapro.c
3704
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003705I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003706M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003707L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003709F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003710
Jean Delvare5b543962005-08-15 19:51:02 +02003711I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003712M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003713M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003714L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003715W: http://i2c.wiki.kernel.org/
3716T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003717T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003719F: Documentation/i2c/
3720F: drivers/i2c/
3721F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003722F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003724I2C-TAOS-EVM DRIVER
3725M: Jean Delvare <khali@linux-fr.org>
3726L: linux-i2c@vger.kernel.org
3727S: Maintained
3728F: Documentation/i2c/busses/i2c-taos-evm
3729F: drivers/i2c/busses/i2c-taos-evm.c
3730
Till Harbaume8c76ee2007-05-01 23:26:35 +02003731I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003732M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003733L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003734W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003736F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003737
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003739M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003741F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742
3743i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003744M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003745T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746S: Maintained
3747
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003749M: Tony Luck <tony.luck@intel.com>
3750M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003752T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003754F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755
Kent Yoder956c2032012-09-07 04:17:01 +08003756IBM Power in-Nest Crypto Acceleration
3757M: Kent Yoder <key@linux.vnet.ibm.com>
3758L: linux-crypto@vger.kernel.org
3759S: Supported
3760F: drivers/crypto/nx/
3761
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003762IBM Power 842 compression accelerator
3763M: Robert Jennings <rcj@linux.vnet.ibm.com>
3764S: Supported
3765F: drivers/crypto/nx/nx-842.c
3766F: include/linux/nx842.h
3767
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003769M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003771F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772
Santiago Leon9d348af2010-09-03 18:29:53 +00003773IBM Power Virtual Ethernet Device Driver
3774M: Santiago Leon <santil@linux.vnet.ibm.com>
3775L: netdev@vger.kernel.org
3776S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003777F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003778
Robert Jennings4b7652c2012-07-31 12:34:36 -05003779IBM Power Virtual SCSI/FC Device Drivers
3780M: Robert Jennings <rcj@linux.vnet.ibm.com>
3781L: linux-scsi@vger.kernel.org
3782S: Supported
3783F: drivers/scsi/ibmvscsi/
3784X: drivers/scsi/ibmvscsi/ibmvstgt.c
3785
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786IBM ServeRAID RAID DRIVER
3787P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003788M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003790S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003791F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003793ICH LPC AND GPIO DRIVER
3794M: Peter Tyser <ptyser@xes-inc.com>
3795S: Maintained
3796F: drivers/mfd/lpc_ich.c
3797F: drivers/gpio/gpio-ich.c
3798
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003799IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003800M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003802Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003803T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003805F: Documentation/ide/
3806F: drivers/ide/
3807F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808
Ike Panhc6cb8c132011-08-25 22:28:45 +08003809IDEAPAD LAPTOP EXTRAS DRIVER
3810M: Ike Panhc <ike.pan@canonical.com>
3811L: platform-driver-x86@vger.kernel.org
3812W: http://launchpad.net/ideapad-laptop
3813S: Maintained
3814F: drivers/platform/x86/ideapad-laptop.c
3815
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003816IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003817M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003818L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003820F: Documentation/cdrom/ide-cd
3821F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822
Andy Henroid27471fd2008-10-09 11:45:22 -07003823IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003824M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003825L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003826S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003827F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003828
Sergey Lapin02cf2282009-06-08 12:18:50 +00003829IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003830M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003831M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003832L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003833W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003834T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003835S: Maintained
3836F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003837F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003838F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003839
Sean Young40ad4a32012-11-19 10:32:53 -03003840IGUANAWORKS USB IR TRANSCEIVER
3841M: Sean Young <sean@mess.org>
3842L: linux-media@vger.kernel.org
3843S: Maintained
3844F: drivers/media/rc/iguanair.c
3845
Ameya Palande9545f862012-01-10 09:00:58 -08003846IIO SUBSYSTEM AND DRIVERS
3847M: Jonathan Cameron <jic23@cam.ac.uk>
3848L: linux-iio@vger.kernel.org
3849S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003850F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003851F: drivers/staging/iio/
3852
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003853IKANOS/ADI EAGLE ADSL USB DRIVER
3854M: Matthieu Castet <castet.matthieu@free.fr>
3855M: Stanislaw Gruszka <stf_xl@wp.pl>
3856S: Maintained
3857F: drivers/usb/atm/ueagle-atm.c
3858
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003859INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003860M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003861S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003862F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003863
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003865L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003866S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003867F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868
3869INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003870M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003871M: Sean Hefty <sean.hefty@intel.com>
3872M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003873L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003874W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003875Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003876T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003878F: Documentation/infiniband/
3879F: drivers/infiniband/
3880F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881
Robert Lovec9f04f52005-07-15 12:21:07 -04003882INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003883M: John McCutchan <john@johnmccutchan.com>
3884M: Robert Love <rlove@rlove.org>
3885M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003887F: Documentation/filesystems/inotify.txt
3888F: fs/notify/inotify/
3889F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003890
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003891INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003892M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3893M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003894L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003895Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003896T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003898F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003899F: include/linux/input.h
3900F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003901
Henrik Rydberg3267a872010-06-24 19:10:40 -07003902INPUT MULTITOUCH (MT) PROTOCOL
3903M: Henrik Rydberg <rydberg@euromail.se>
3904L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003905T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003906S: Maintained
3907F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003908F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003909K: \b(ABS|SYN)_MT_
3910
Dave Jiang4ac13e12011-07-29 17:16:55 -07003911INTEL C600 SERIES SAS CONTROLLER DRIVER
3912M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003913M: Lukasz Dorau <lukasz.dorau@intel.com>
3914M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003915M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003916L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003917T: git git://git.code.sf.net/p/intel-sas/isci
3918S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003919F: drivers/scsi/isci/
3920F: firmware/isci/
3921
Len Brown26717172010-03-08 14:07:30 -05003922INTEL IDLE DRIVER
3923M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003924L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003925T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003926S: Supported
3927F: drivers/idle/intel_idle.c
3928
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003929INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003930M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003931L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003933F: Documentation/fb/intelfb.txt
3934F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003935
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003937M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003938L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003940F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303942INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003943M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05003944L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303945W: http://www.lesswatts.org/projects/acpi/
3946S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003947F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303948
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003950M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003952F: arch/x86/kernel/microcode_core.c
3953F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003955INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003956M: Dan Williams <djbw@fb.com>
3957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003958F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003959
David Woodhouse6c8909b2008-10-18 16:12:17 +01003960INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003961M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003962L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003963T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003964S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003965F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003966F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003967
Dan Williamsb3e5f262007-08-07 10:26:35 -07003968INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003969M: Dan Williams <djbw@fb.com>
3970S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003971F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003972
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003973INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003974M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003976F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3977F: arch/arm/mach-ixp4xx/include/mach/npe.h
3978F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3979F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003980F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003981F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003982
Michael Buesch844dd052006-06-26 00:24:59 -07003983INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003984M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003986F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003987
Jeff Kirsher0d164402010-10-05 01:15:17 +00003988INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003989M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3990M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3991M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003992M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3993M: Don Skidmore <donald.c.skidmore@intel.com>
3994M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003995M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003996M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003997M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003998L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003999W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004000T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4001T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004003F: Documentation/networking/e100.txt
4004F: Documentation/networking/e1000.txt
4005F: Documentation/networking/e1000e.txt
4006F: Documentation/networking/igb.txt
4007F: Documentation/networking/igbvf.txt
4008F: Documentation/networking/ixgb.txt
4009F: Documentation/networking/ixgbe.txt
4010F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004011F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012
Len Brown6dccf9c2011-07-12 22:29:32 -04004013INTEL MRST PMU DRIVER
4014M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004015L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04004016S: Supported
4017F: arch/x86/platform/mrst/pmu.*
4018
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004019INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4020M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004021L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004023F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004024F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004025F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004026
Shane Wang4bd96a72010-03-10 14:36:10 +08004027INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004028M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4029M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004030M: Shane Wang <shane.wang@intel.com>
4031L: tboot-devel@lists.sourceforge.net
4032W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004033T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004034S: Supported
4035F: Documentation/intel_txt.txt
4036F: include/linux/tboot.h
4037F: arch/x86/kernel/tboot.c
4038
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004039INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004040M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004041M: linux-wimax@intel.com
4042L: wimax@linuxwimax.org
4043S: Supported
4044W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004045F: Documentation/wimax/README.i2400m
4046F: drivers/net/wimax/i2400m/
4047F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004048
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004049INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4050M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004051L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004052S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004053F: drivers/net/wireless/iwlegacy/
4054
Zhu Yib481de92007-09-25 17:54:57 -07004055INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004056M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004057M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004058M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004059L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004060W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07004061T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004062S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004063F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004064
Tomas Winklerde8fe022012-05-09 16:39:02 +03004065INTEL MANAGEMENT ENGINE (mei)
4066M: Tomas Winkler <tomas.winkler@intel.com>
4067L: linux-kernel@vger.kernel.org
4068S: Supported
4069F: include/linux/mei.h
4070F: drivers/misc/mei/*
4071F: Documentation/mei/*
4072
Ralf Baechlecb109a02007-08-30 23:56:30 -07004073IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004074M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075L: linux-mips@linux-mips.org
4076S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004077F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
Ralf Baechlecb109a02007-08-30 23:56:30 -07004079IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004080M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004081L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004082S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004083F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004084
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004085IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004086M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004088F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089
Francois Romieu1202d6f2007-09-17 17:13:55 -07004090IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004091M: Francois Romieu <romieu@fr.zoreil.com>
4092M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004093L: netdev@vger.kernel.org
4094S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004095F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004096
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004097IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004098M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004099L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004101F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004102
Corey Minyard4409ebe2006-04-20 02:43:12 -07004103IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004104M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004105L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004106W: http://openipmi.sourceforge.net/
4107S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004108F: Documentation/IPMI.txt
4109F: drivers/char/ipmi/
4110F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004111
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004112IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004113M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004114L: linux-scsi@vger.kernel.org
4115W: http://www.adaptec.com/
4116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004117F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004118
4119IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004120M: Wensong Zhang <wensong@linux-vs.org>
4121M: Simon Horman <horms@verge.net.au>
4122M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004123L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004124L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004126F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004127F: include/net/ip_vs.h
4128F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004129F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130
Randy Dunlape7839f22008-10-12 16:11:45 -07004131IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004132M: Jiri Kosina <jkosina@suse.cz>
4133M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004134S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004135F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004136
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004137IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004138M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004139L: netdev@vger.kernel.org
4140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004141F: include/linux/ipx.h
4142F: include/net/ipx.h
4143F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004144
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004146M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004147L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004148L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004150S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004151T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004152F: Documentation/networking/irda.txt
4153F: drivers/net/irda/
4154F: include/net/irda/
4155F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004157IRQ SUBSYSTEM
4158M: Thomas Gleixner <tglx@linutronix.de>
4159S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004160T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004161F: kernel/irq/
4162
Grant Likely7ab3a832012-02-14 14:06:47 -07004163IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4164M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4165M: Grant Likely <grant.likely@secretlab.ca>
4166T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4167S: Maintained
4168F: Documentation/IRQ-domain.txt
4169F: include/linux/irqdomain.h
4170F: kernel/irq/irqdomain.c
4171
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004172ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004173M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004175F: Documentation/isapnp.txt
4176F: drivers/pnp/isapnp/
4177F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004178
Harry Wei71a6d0a2011-05-11 15:13:33 -07004179iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4180M: Peter Jones <pjones@redhat.com>
4181M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4182S: Maintained
4183F: drivers/firmware/iscsi_ibft*
4184
Mike Christie14816b1e2007-11-28 16:22:06 -08004185ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004186M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004187L: open-iscsi@googlegroups.com
4188W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004189T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004191F: drivers/scsi/*iscsi*
4192F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004193
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004195M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004196L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004197L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004199T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004201F: Documentation/isdn/
4202F: drivers/isdn/
4203F: include/linux/isdn.h
4204F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205
4206ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004207M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004208L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209W: http://www.melware.de
4210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004211F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212
Jean Delvared6248702010-03-05 22:17:20 +01004213IT87 HARDWARE MONITORING DRIVER
4214M: Jean Delvare <khali@linux-fr.org>
4215L: lm-sensors@lm-sensors.org
4216S: Maintained
4217F: Documentation/hwmon/it87
4218F: drivers/hwmon/it87.c
4219
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004220IT913X MEDIA DRIVER
4221M: Malcolm Priestley <tvboxspy@gmail.com>
4222L: linux-media@vger.kernel.org
4223W: http://linuxtv.org/
4224Q: http://patchwork.linuxtv.org/project/linux-media/list/
4225S: Maintained
4226F: drivers/media/usb/dvb-usb-v2/it913x*
4227
4228IT913X FE MEDIA DRIVER
4229M: Malcolm Priestley <tvboxspy@gmail.com>
4230L: linux-media@vger.kernel.org
4231W: http://linuxtv.org/
4232Q: http://patchwork.linuxtv.org/project/linux-media/list/
4233S: Maintained
4234F: drivers/media/dvb-frontends/it913x-fe*
4235
Hans Verkuil91821ff2007-12-02 09:35:33 -03004236IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004237M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004238L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004239L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004240T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004241W: http://www.ivtvdriver.org
4242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004243F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004244F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004245F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004246
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004247IX2505V MEDIA DRIVER
4248M: Malcolm Priestley <tvboxspy@gmail.com>
4249L: linux-media@vger.kernel.org
4250W: http://linuxtv.org/
4251Q: http://patchwork.linuxtv.org/project/linux-media/list/
4252S: Maintained
4253F: drivers/media/dvb-frontends/ix2505v*
4254
Guenter Roeck4453d732010-08-09 17:21:08 -07004255JC42.4 TEMPERATURE SENSOR DRIVER
4256M: Guenter Roeck <linux@roeck-us.net>
4257L: lm-sensors@lm-sensors.org
4258S: Maintained
4259F: drivers/hwmon/jc42.c
4260F: Documentation/hwmon/jc42
4261
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004262JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004263M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004264L: jfs-discussion@lists.sourceforge.net
4265W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004266T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004268F: Documentation/filesystems/jfs.txt
4269F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004270
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004271JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004272M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004273L: netdev@vger.kernel.org
4274S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004275F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004276
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004278M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004279L: linux-mtd@lists.infradead.org
4280W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004282F: fs/jffs2/
4283F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284
Josh Triplettde456d32006-07-30 03:04:00 -07004285JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004286M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004287M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004288L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004289S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004290F: fs/jbd/
4291F: include/linux/ext3_jbd.h
4292F: include/linux/jbd.h
4293
4294JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4295M: "Theodore Ts'o" <tytso@mit.edu>
4296L: linux-ext4@vger.kernel.org
4297S: Maintained
4298F: fs/jbd2/
4299F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004300
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004301JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004302M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004303L: linux-serial@vger.kernel.org
4304S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004305F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004306
Clemens Ladischaf399172011-01-10 16:32:54 +01004307K10TEMP HARDWARE MONITORING DRIVER
4308M: Clemens Ladisch <clemens@ladisch.de>
4309L: lm-sensors@lm-sensors.org
4310S: Maintained
4311F: Documentation/hwmon/k10temp
4312F: drivers/hwmon/k10temp.c
4313
Rudolf Marek4660cb32006-10-08 22:01:26 +02004314K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004315M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004316L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004318F: Documentation/hwmon/k8temp
4319F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320
4321KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004322M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004323L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004324S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004325F: Documentation/kbuild/kconfig-language.txt
4326F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327
Vivek Goyalea6c2082006-05-20 14:59:55 -07004328KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004329M: Vivek Goyal <vgoyal@redhat.com>
4330M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004331L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004332W: http://lse.sourceforge.net/kdump/
4333S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004334F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004335
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004337M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004338L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004340F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341
Michal Marek70fb7ba2010-01-29 14:22:43 +01004342KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004343M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004344T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4345T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004346L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004348F: Documentation/kbuild/
4349F: Makefile
4350F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004351F: scripts/basic/
4352F: scripts/mk*
4353F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354
4355KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004356L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004357W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004358S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004360KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004361M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004362L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004364S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004365F: fs/nfsd/
4366F: include/linux/nfsd/
4367F: fs/lockd/
4368F: fs/nfs_common/
4369F: net/sunrpc/
4370F: include/linux/lockd/
4371F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372
Avi Kivity426d62e2006-12-13 00:34:03 -08004373KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004374M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004375M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004376L: kvm@vger.kernel.org
4377W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004378S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004379F: Documentation/*/kvm.txt
4380F: arch/*/kvm/
4381F: arch/*/include/asm/kvm*
4382F: include/linux/kvm*
4383F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004384
Joerg Roedelad8003d2008-09-10 20:01:07 +02004385KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004386M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004387L: kvm@vger.kernel.org
4388W: http://kvm.qumranet.com
4389S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004390F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004391F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004392
Hollis Blanchard513014b2008-04-16 23:28:08 -05004393KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004394M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004395L: kvm-ppc@vger.kernel.org
4396W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004397S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004398F: arch/powerpc/include/asm/kvm*
4399F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004400
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004401KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004402M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004403L: kvm-ia64@vger.kernel.org
4404W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004405S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004406F: Documentation/ia64/kvm.txt
4407F: arch/ia64/include/asm/kvm*
4408F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004409
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004410KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004411M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004412M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004413M: linux390@de.ibm.com
4414L: linux-s390@vger.kernel.org
4415W: http://www.ibm.com/developerworks/linux/linux390/
4416S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004417F: Documentation/s390/kvm.txt
4418F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004419F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004420F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004421
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004422KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004423M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004424W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004425L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004427F: include/linux/kexec.h
4428F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004429
David Howellse9714612010-03-29 23:42:09 +01004430KEYS/KEYRINGS:
4431M: David Howells <dhowells@redhat.com>
4432L: keyrings@linux-nfs.org
4433S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004434F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004435F: include/linux/key.h
4436F: include/linux/key-type.h
4437F: include/keys/
4438F: security/keys/
4439
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004440KEYS-TRUSTED
4441M: David Safford <safford@watson.ibm.com>
4442M: Mimi Zohar <zohar@us.ibm.com>
4443L: linux-security-module@vger.kernel.org
4444L: keyrings@linux-nfs.org
4445S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004446F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004447F: include/keys/trusted-type.h
4448F: security/keys/trusted.c
4449F: security/keys/trusted.h
4450
4451KEYS-ENCRYPTED
4452M: Mimi Zohar <zohar@us.ibm.com>
4453M: David Safford <safford@watson.ibm.com>
4454L: linux-security-module@vger.kernel.org
4455L: keyrings@linux-nfs.org
4456S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004457F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004458F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004459F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004460
Jason Wessel5b778da2010-05-20 21:04:28 -05004461KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004462M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004463W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004464L: kgdb-bugreport@lists.sourceforge.net
4465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004466F: Documentation/DocBook/kgdb.tmpl
4467F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004468F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004469F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004470F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004471F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004472
Pekka Enberg456db8c2008-04-28 22:47:29 +03004473KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004474M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004475M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004476S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004477F: Documentation/kmemcheck.txt
4478F: arch/x86/include/asm/kmemcheck.h
4479F: arch/x86/mm/kmemcheck/
4480F: include/linux/kmemcheck.h
4481F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004482
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004483KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004484M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004485S: Maintained
4486F: Documentation/kmemleak.txt
4487F: include/linux/kmemleak.h
4488F: mm/kmemleak.c
4489F: mm/kmemleak-test.c
4490
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004491KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004492M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4493M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4494M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004495M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004497F: Documentation/kprobes.txt
4498F: include/linux/kprobes.h
4499F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004500
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004501KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004502M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004503W: http://miguelojeda.es/auxdisplay.htm
4504W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004506F: Documentation/auxdisplay/ks0108
4507F: drivers/auxdisplay/ks0108.c
4508F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004509
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004512S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004513F: Documentation/networking/lapb-module.txt
4514F: include/*/lapb.h
4515F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516
4517LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004518M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519L: linux-scsi@vger.kernel.org
4520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004521F: Documentation/scsi/53c700.txt
4522F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523
Richard Purdie263de9b2006-05-15 09:44:16 -07004524LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004525M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004526M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004527L: linux-leds@vger.kernel.org
4528T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004530F: drivers/leds/
4531F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004532
Jean Delvareb0461a42011-06-15 15:08:46 -07004533LEGACY EEPROM DRIVER
4534M: Jean Delvare <khali@linux-fr.org>
4535S: Maintained
4536F: Documentation/misc-devices/eeprom
4537F: drivers/misc/eeprom/eeprom.c
4538
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004540M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541L: legousb-devel@lists.sourceforge.net
4542W: http://legousb.sourceforge.net/
4543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004544F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545
Michael Krufky055616a2012-10-02 00:56:06 -03004546LG2160 MEDIA DRIVER
4547M: Michael Krufky <mkrufky@linuxtv.org>
4548L: linux-media@vger.kernel.org
4549W: http://linuxtv.org/
4550W: http://github.com/mkrufky
4551Q: http://patchwork.linuxtv.org/project/linux-media/list/
4552T: git git://linuxtv.org/mkrufky/tuners.git
4553S: Maintained
4554F: drivers/media/dvb-frontends/lg2160.*
4555
Michael Krufky6f0e7722012-10-02 00:56:00 -03004556LGDT3305 MEDIA DRIVER
4557M: Michael Krufky <mkrufky@linuxtv.org>
4558L: linux-media@vger.kernel.org
4559W: http://linuxtv.org/
4560W: http://github.com/mkrufky
4561Q: http://patchwork.linuxtv.org/project/linux-media/list/
4562T: git git://linuxtv.org/mkrufky/tuners.git
4563S: Maintained
4564F: drivers/media/dvb-frontends/lgdt3305.*
4565
Rusty Russell568a17f2007-10-25 14:12:24 +10004566LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004567M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004568L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004569W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004570S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004571F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004572F: arch/x86/lguest/
4573F: drivers/lguest/
4574F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004575F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004576
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004578M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579W: http://www.ibm.com/linux/ltc/projects/ppc
4580S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004581F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004583LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004584M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4585M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004587L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004588Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004589T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004591F: Documentation/powerpc/
4592F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593
4594LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004595M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004597L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004599F: arch/powerpc/platforms/powermac/
4600F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601
Grant Likely77a76362008-07-12 12:11:43 -06004602LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004603M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004604L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004605T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004607F: arch/powerpc/platforms/512x/
4608F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609
4610LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004611M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004612M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004614L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004615T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004617F: arch/powerpc/platforms/40x/
4618F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619
Grant Likely260c02a2007-10-02 12:15:34 +10004620LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004621M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004622W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004623L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004624T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004626F: arch/powerpc/*/*virtex*
4627F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628
Tom Rinie93adf12005-07-26 12:49:53 -07004629LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004630M: Vitaly Bordug <vitb@kernel.crashing.org>
4631M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004632W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004633L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004634S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004635F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004636
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004638M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004639W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004640L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004641S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004642F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004643F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644
Olof Johanssonab06ff32006-09-06 14:44:54 -05004645LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004646M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004647L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004648S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004649F: arch/powerpc/platforms/pasemi/
4650F: drivers/*/*pasemi*
4651F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004652
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004654M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004655L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656S: Supported
4657
Harry Weia23ce6d2011-02-11 16:52:20 +01004658LIS3LV02D ACCELEROMETER DRIVER
4659M: Eric Piel <eric.piel@tremplin-utc.net>
4660S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004661F: Documentation/misc-devices/lis3lv02d
4662F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004663F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004664
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004665LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004666M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004668F: include/linux/llc.h
4669F: include/net/llc*
4670F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004671
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004672LM73 HARDWARE MONITOR DRIVER
4673M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4674L: lm-sensors@lm-sensors.org
4675S: Maintained
4676F: drivers/hwmon/lm73.c
4677
Jean Delvare156e2d12011-07-25 21:46:11 +02004678LM78 HARDWARE MONITOR DRIVER
4679M: Jean Delvare <khali@linux-fr.org>
4680L: lm-sensors@lm-sensors.org
4681S: Maintained
4682F: Documentation/hwmon/lm78
4683F: drivers/hwmon/lm78.c
4684
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004686M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004687L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004689F: Documentation/hwmon/lm83
4690F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691
4692LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004693M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004694L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004696F: Documentation/hwmon/lm90
4697F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004699LME2510 MEDIA DRIVER
4700M: Malcolm Priestley <tvboxspy@gmail.com>
4701L: linux-media@vger.kernel.org
4702W: http://linuxtv.org/
4703Q: http://patchwork.linuxtv.org/project/linux-media/list/
4704S: Maintained
4705F: drivers/media/usb/dvb-usb-v2/lmedm04*
4706
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004707LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004708M: Peter Zijlstra <peterz@infradead.org>
4709M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004710T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004712F: Documentation/lockdep*.txt
4713F: Documentation/lockstat.txt
4714F: include/linux/lockdep.h
4715F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004716
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004717LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004718M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004719L: linux-ntfs-dev@lists.sourceforge.net
4720W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004722F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004723F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724
Joern Engelef6ada32009-11-20 22:17:12 +01004725LogFS
4726M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304727M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004728L: logfs@logfs.org
4729W: logfs.org
4730S: Maintained
4731F: fs/logfs/
4732
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004733LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004734M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004735M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004736L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004737L: linux-scsi@vger.kernel.org
4738W: http://www.lsilogic.com/support
4739S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004740F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004741
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004743M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744L: linux-scsi@vger.kernel.org
4745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004746F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747
Guenter Roecke5f5c992010-06-25 11:59:54 -07004748LTC4261 HARDWARE MONITOR DRIVER
4749M: Guenter Roeck <linux@roeck-us.net>
4750L: lm-sensors@lm-sensors.org
4751S: Maintained
4752F: Documentation/hwmon/ltc4261
4753F: drivers/hwmon/ltc4261.c
4754
Mike Frysinger81365c32008-10-29 14:01:12 -07004755LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004756M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004757M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004758M: Cyril Hrubis <chrubis@suse.cz>
4759M: Caspar Zhang <caspar@casparzhang.com>
4760M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004761L: ltp-list@lists.sourceforge.net (subscribers-only)
4762W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004763T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004764T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004765S: Maintained
4766
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004767M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004768M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004769L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004770L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4771W: http://www.linux-m32r.org/
4772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004773F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004774
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004776M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777L: linux-m68k@lists.linux-m68k.org
4778W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004779T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004781F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004782F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
4784M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004785M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004787L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004789F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790
4791M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004792M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793W: http://www.tazenda.demon.co.uk/phil/linux-hp
4794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004795F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004797M88RS2000 MEDIA DRIVER
4798M: Malcolm Priestley <tvboxspy@gmail.com>
4799L: linux-media@vger.kernel.org
4800W: http://linuxtv.org/
4801Q: http://patchwork.linuxtv.org/project/linux-media/list/
4802S: Maintained
4803F: drivers/media/dvb-frontends/m88rs2000*
4804
Jiri Benc64a327a2007-05-05 11:47:08 -07004805MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004806M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004807L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004808W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004809T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4810T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004812F: Documentation/networking/mac80211-injection.txt
4813F: include/net/mac80211.h
4814F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004815
Stefano Brivio1036d862007-12-23 04:46:27 +01004816MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004817M: Stefano Brivio <stefano.brivio@polimi.it>
4818M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004819L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004820W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004821T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4822T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004824F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004825
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004826MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004827M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004828L: netdev@vger.kernel.org
4829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004830F: drivers/net/macvlan.c
4831F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004832
Michael Kerriskfaf16682005-07-31 22:34:47 -07004833MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004834M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004835W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004836L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004837S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004838
stephen hemminger44c14c12012-04-02 12:59:47 +00004839MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4840M: Mirko Lindner <mlindner@marvell.com>
4841M: Stephen Hemminger <shemminger@vyatta.com>
4842L: netdev@vger.kernel.org
4843S: Maintained
4844F: drivers/net/ethernet/marvell/sk*
4845
Stefano Brivio74cda162007-11-19 20:27:46 +01004846MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004847M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004848L: libertas-dev@lists.infradead.org
4849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004850F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004851
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004852MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004853M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004854L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004855S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004856F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004857F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858
Bing Zhaofcad5842011-07-13 13:11:58 -07004859MARVELL MWIFIEX WIRELESS DRIVER
4860M: Bing Zhao <bzhao@marvell.com>
4861L: linux-wireless@vger.kernel.org
4862S: Maintained
4863F: drivers/net/wireless/mwifiex/
4864
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004865MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004866M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004867L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004868S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004869F: drivers/net/wireless/mwl8k.c
4870
Pierre Ossman2a695672009-03-16 19:52:26 +01004871MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004872M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004873S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004874F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004875
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004877L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004878S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004879F: drivers/video/matrox/matroxfb_*
4880F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881
Guenter Roeckca462082012-06-01 23:28:23 -07004882MAX16065 HARDWARE MONITOR DRIVER
4883M: Guenter Roeck <linux@roeck-us.net>
4884L: lm-sensors@lm-sensors.org
4885S: Maintained
4886F: Documentation/hwmon/max16065
4887F: drivers/hwmon/max16065.c
4888
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004889MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004890M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004891L: lm-sensors@lm-sensors.org
4892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004893F: Documentation/hwmon/max6650
4894F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004895
Joe Perches127c49a2009-04-08 08:34:04 -07004896MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004897M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07004898P: LinuxTV.org Project
4899L: linux-media@vger.kernel.org
4900W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004901Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004902T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07004903S: Maintained
4904F: Documentation/dvb/
4905F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004906F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004907F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004908F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004909F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02004910F: include/uapi/linux/dvb/
4911F: include/uapi/linux/videodev2.h
4912F: include/uapi/linux/media.h
4913F: include/uapi/linux/v4l2-*
4914F: include/uapi/linux/meye.h
4915F: include/uapi/linux/ivtv*
4916F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004917
4918MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004919M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004920L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004921W: http://megaraid.lsilogic.com
4922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004923F: Documentation/scsi/megaraid.txt
4924F: drivers/scsi/megaraid.*
4925F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004926
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004927MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929W: http://www.linux-mm.org
4930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004931F: include/linux/mm.h
4932F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004933
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004934MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004935M: Johannes Weiner <hannes@cmpxchg.org>
4936M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004937M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004938M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004939L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004940L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004942F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004943F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004944
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004946M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004948W: http://www.linux-mtd.infradead.org/
4949Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004950T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004952F: drivers/mtd/
4953F: include/linux/mtd/
4954F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955
Michal Simekc6375b02009-03-27 14:25:52 +01004956MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004957M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004958L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004959W: http://www.monstr.eu/fdt/
4960T: git git://git.monstr.eu/linux-2.6-microblaze.git
4961S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004962F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963
4964MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004965M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004967F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968
4969MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004970M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004972W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004973T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004974Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004975S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004976F: Documentation/mips/
4977F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004980M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004982F: include/linux/module.h
4983F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984
4985MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004987S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004988F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004989F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02004990F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991
Pavel Pisac58ff042007-05-16 01:10:41 +02004992MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004993M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004994L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004996F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004997
Jiri Slabyb9705b62008-04-30 00:53:48 -07004998MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004999M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005001F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005002F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005003
Alexey Klimov889b2f82012-11-16 17:43:59 -03005004MR800 AVERMEDIA USB FM RADIO DRIVER
5005M: Alexey Klimov <klimov.linux@gmail.com>
5006L: linux-media@vger.kernel.org
5007T: git git://linuxtv.org/media_tree.git
5008S: Maintained
5009F: drivers/media/radio/radio-mr800.c
5010
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005011MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07005012M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005013L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005015F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005016
Anisse Astier0f1006b2009-12-17 11:28:49 +01005017MSI WMI SUPPORT
5018M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd09448532010-02-11 10:40:13 -05005019L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005020S: Supported
5021F: drivers/platform/x86/msi-wmi.c
5022
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005023MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005024M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005025T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005026S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005027F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005028
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005029MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005030M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005031L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005032T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005034F: drivers/mmc/
5035F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005036
David Brownell15a05802007-08-08 09:12:54 -07005037MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005038S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005039F: drivers/mmc/host/mmc_spi.c
5040F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005041
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005043M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005045F: Documentation/sound/oss/MultiSound
5046F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047
Jiri Slabyd7354102006-12-08 02:38:35 -08005048MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005049S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005050F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005051F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005052
Felipe Balbi550a7372008-07-24 12:27:36 +03005053MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005054M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005055L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005056T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005058F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005059
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005060MXL5007T MEDIA DRIVER
5061M: Michael Krufky <mkrufky@linuxtv.org>
5062L: linux-media@vger.kernel.org
5063W: http://linuxtv.org/
5064W: http://github.com/mkrufky
5065Q: http://patchwork.linuxtv.org/project/linux-media/list/
5066T: git git://linuxtv.org/mkrufky/tuners.git
5067S: Maintained
5068F: drivers/media/tuners/mxl5007t.*
5069
Brice Goglin2d3cf582008-05-17 12:45:36 +02005070MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005071M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005072L: netdev@vger.kernel.org
5073W: http://www.myri.com/scs/download-Myri10GE.html
5074S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005075F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005076
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005078S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005079F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080
Daniel Mack23dc05a2011-05-18 11:28:38 +02005081NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5082M: Daniel Mack <zonque@gmail.com>
5083S: Maintained
5084L: alsa-devel@alsa-project.org
5085W: http://www.native-instruments.com
5086F: sound/usb/caiaq/
5087
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005089M: Petr Vandrovec <petr@vandrovec.name>
5090S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005091F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092
5093NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005094M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095L: linux-scsi@vger.kernel.org
5096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005097F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005099NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005100M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005101L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005102W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005103S: Supported
5104F: drivers/infiniband/hw/nes/
5105
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005106NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05005107M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07005108L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005110F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005111
Jon Masonb2f5a052010-07-15 08:47:27 +00005112NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005113M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005114L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005115S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005116F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005117F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005118F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005119
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121P: Harald Welte
5122P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005123M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005124M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005125L: netfilter-devel@vger.kernel.org
5126L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005127L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128W: http://www.netfilter.org/
5129W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005130T: git git://1984.lsi.us.es/nf
5131T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005133F: include/linux/netfilter*
5134F: include/linux/netfilter/
5135F: include/net/netfilter/
5136F: net/*/netfilter.c
5137F: net/*/netfilter/
5138F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139
Paul Moore4cc67732006-09-25 15:57:13 -07005140NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005141M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005142W: http://netlabel.sf.net
5143L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005144S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005145F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005146F: include/net/netlabel.h
5147F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005148
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005150M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005152W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005154F: include/linux/netrom.h
5155F: include/net/netrom.h
5156F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005158NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005159M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005161F: Documentation/blockdev/nbd.txt
5162F: drivers/block/nbd.c
5163F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164
Neil Horman6e436502009-10-05 03:56:55 +00005165NETWORK DROP MONITOR
5166M: Neil Horman <nhorman@tuxdriver.com>
5167L: netdev@vger.kernel.org
5168S: Maintained
5169W: https://fedorahosted.org/dropwatch/
5170F: net/core/drop_monitor.c
5171
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005173M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005174L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005175W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00005176W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005177T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5178T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005180F: net/
5181F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005182F: include/linux/in.h
5183F: include/linux/net.h
5184F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185
5186NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005187M: "David S. Miller" <davem@davemloft.net>
5188M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005189M: James Morris <jmorris@namei.org>
5190M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5191M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005192L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005193T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005195F: net/ipv4/
5196F: net/ipv6/
5197F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005198F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199
David S. Miller73b76562012-10-16 14:08:40 -04005200NETWORKING [IPSEC]
5201M: Steffen Klassert <steffen.klassert@secunet.com>
5202M: Herbert Xu <herbert@gondor.apana.org.au>
5203M: "David S. Miller" <davem@davemloft.net>
5204L: netdev@vger.kernel.org
5205T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5206S: Maintained
5207F: net/xfrm/
5208F: net/key/
5209F: net/ipv4/xfrm*
5210F: net/ipv6/xfrm*
5211F: include/uapi/linux/xfrm.h
5212F: include/net/xfrm.h
5213
James Morris10e2ff12007-08-25 14:41:28 -07005214NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005215M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005216L: netdev@vger.kernel.org
5217S: Maintained
5218
John W. Linville29f8f632006-01-18 14:52:48 -08005219NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005220M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005221L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005222Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005223T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005224S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005225F: net/mac80211/
5226F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005227F: net/wireless/
5228F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005229F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005230F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005231F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005232
Joe Perches788873a2009-04-16 09:38:45 +00005233NETWORKING DRIVERS
5234L: netdev@vger.kernel.org
5235W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005236T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5237T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005238S: Odd Fixes
5239F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005240F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005241F: include/linux/netdevice.h
5242F: include/linux/arcdevice.h
5243F: include/linux/etherdevice.h
5244F: include/linux/fcdevice.h
5245F: include/linux/fddidevice.h
5246F: include/linux/hippidevice.h
5247F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005248
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005249NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005250M: Sony Chacko <sony.chacko@qlogic.com>
5251M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005252L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005253W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005254S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005255F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005256
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005257NFC SUBSYSTEM
5258M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5259M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5260M: Samuel Ortiz <sameo@linux.intel.com>
5261L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005262L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005263S: Maintained
5264F: net/nfc/
5265F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005266F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005267F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005269NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005270M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005271L: linux-nfs@vger.kernel.org
5272W: http://client.linux-nfs.org
5273T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005275F: fs/lockd/
5276F: fs/nfs/
5277F: fs/nfs_common/
5278F: net/sunrpc/
5279F: include/linux/lockd/
5280F: include/linux/nfs*
5281F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282
5283NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005284M: Jan-Pascal van Best <janpascal@vanbest.org>
5285M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005286L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005288F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005290NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005291M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005292L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005293W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005294T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005295S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005296F: Documentation/filesystems/nilfs2.txt
5297F: fs/nilfs2/
5298F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005299
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005301M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005304F: Documentation/scsi/NinjaSCSI.txt
5305F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306
5307NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005308M: GOTO Masanori <gotom@debian.or.jp>
5309M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005312F: Documentation/scsi/NinjaSCSI.txt
5313F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005316M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005318W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005319T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005320S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005321F: Documentation/filesystems/ntfs.txt
5322F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005324NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005325M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005326L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005328F: drivers/video/riva/
5329F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330
Tony Lindgrenf5525782009-05-28 13:23:53 -07005331OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005332M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005333L: linux-omap@vger.kernel.org
5334W: http://www.muru.com/linux/omap/
5335W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005336Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005337T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005338S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005339F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005340F: drivers/i2c/busses/i2c-omap.c
5341F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005342
5343OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005344M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005345L: linux-omap@vger.kernel.org
5346S: Maintained
5347F: arch/arm/*omap*/*clock*
5348
5349OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005350M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005351L: linux-omap@vger.kernel.org
5352S: Maintained
5353F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005354F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005355
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005356OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5357M: Rajendra Nayak <rnayak@ti.com>
5358M: Paul Walmsley <paul@pwsan.com>
5359L: linux-omap@vger.kernel.org
5360S: Maintained
5361F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5362F: arch/arm/mach-omap2/powerdomain44xx.c
5363F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5364F: arch/arm/mach-omap2/clockdomain44xx.c
5365
Tony Lindgrenf5525782009-05-28 13:23:53 -07005366OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005367M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005368M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005369L: alsa-devel@alsa-project.org (subscribers-only)
5370L: linux-omap@vger.kernel.org
5371S: Maintained
5372F: sound/soc/omap/
5373
5374OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005375M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005376L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005377L: linux-omap@vger.kernel.org
5378S: Maintained
5379F: drivers/video/omap/
5380
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005381OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005382M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005383L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005384L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005385S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005386F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005387F: Documentation/arm/OMAP/DSS
5388
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005389OMAP HARDWARE SPINLOCK SUPPORT
5390M: Ohad Ben-Cohen <ohad@wizery.com>
5391L: linux-omap@vger.kernel.org
5392S: Maintained
5393F: drivers/hwspinlock/omap_hwspinlock.c
5394F: arch/arm/mach-omap2/hwspinlock.c
5395
Tony Lindgrenf5525782009-05-28 13:23:53 -07005396OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005397M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005398L: linux-omap@vger.kernel.org
5399S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005400F: drivers/mmc/host/omap.c
5401
5402OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305403M: Venkatraman S <svenkatr@ti.com>
5404L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005405L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305406S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005407F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005408
5409OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005410M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005411S: Maintained
5412F: drivers/char/hw_random/omap-rng.c
5413
Paul Walmsleyf400c822010-12-06 19:08:54 -07005414OMAP HWMOD SUPPORT
5415M: Benoît Cousson <b-cousson@ti.com>
5416M: Paul Walmsley <paul@pwsan.com>
5417L: linux-omap@vger.kernel.org
5418S: Maintained
5419F: arch/arm/mach-omap2/omap_hwmod.c
5420F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5421
5422OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5423M: Benoît Cousson <b-cousson@ti.com>
5424L: linux-omap@vger.kernel.org
5425S: Maintained
5426F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5427
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005428OMAP IMAGE SIGNAL PROCESSOR (ISP)
5429M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5430L: linux-media@vger.kernel.org
5431S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005432F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005433
Tony Lindgrenf5525782009-05-28 13:23:53 -07005434OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005435M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005436L: linux-usb@vger.kernel.org
5437L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005438T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005439S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005440F: drivers/usb/*/*omap*
5441F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005442
Kevin Hilman6d994712012-07-16 10:05:07 -07005443OMAP GPIO DRIVER
5444M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5445M: Kevin Hilman <khilman@ti.com>
5446L: linux-omap@vger.kernel.org
5447S: Maintained
5448F: drivers/gpio/gpio-omap.c
5449
Bob Copeland0ad122d2008-07-25 19:45:18 -07005450OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005451M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005452L: linux-karma-devel@lists.sourceforge.net
5453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005454F: Documentation/filesystems/omfs.txt
5455F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005456
Harald Weltec1986ee2005-11-13 16:06:29 -08005457OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005458M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005460F: drivers/char/pcmcia/cm4000_cs.c
5461F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005462
Harald Welte77c44ab2005-11-13 16:06:26 -08005463OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005464M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005466F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005467
Jonathan Corbet77d51402007-03-22 19:44:17 -03005468OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005469M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005470L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005471T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005472S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005473F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005474
Thomas Gleixner431bca72007-05-02 09:31:35 +02005475ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005476M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005477L: linux-mtd@lists.infradead.org
5478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005479F: drivers/mtd/onenand/
5480F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005481
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005483M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484L: osst-users@lists.sourceforge.net
5485L: linux-scsi@vger.kernel.org
5486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005487F: drivers/scsi/osst*
5488F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005490OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005491M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005492L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005494F: Documentation/i2c/busses/i2c-ocores
5495F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005496
Grant Likely860c44c2009-10-26 16:49:49 -07005497OPEN FIRMWARE AND FLATTENED DEVICE TREE
5498M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005499M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005500L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005501W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005502T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005503S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005504F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005505F: drivers/of
5506F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005507F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005508K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005509K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005510
Jonas Bonn19f9d392011-06-04 22:00:38 +03005511OPENRISC ARCHITECTURE
5512M: Jonas Bonn <jonas@southpole.se>
5513W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005514L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005515S: Maintained
5516T: git git://openrisc.net/~jonas/linux
5517F: arch/openrisc
5518
Jesse Grossccb13522011-10-25 19:26:31 -07005519OPENVSWITCH
5520M: Jesse Gross <jesse@nicira.com>
5521L: dev@openvswitch.org
5522W: http://openvswitch.org
5523T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5524S: Maintained
5525F: net/openvswitch/
5526
Clemens Ladischaf399172011-01-10 16:32:54 +01005527OPL4 DRIVER
5528M: Clemens Ladisch <clemens@ladisch.de>
5529L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5530T: git git://git.alsa-project.org/alsa-kernel.git
5531S: Maintained
5532F: sound/drivers/opl4/
5533
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005535M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536L: oprofile-list@lists.sf.net
5537S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005538F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005539F: arch/*/oprofile/
5540F: drivers/oprofile/
5541F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005543ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005544M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005545M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005546L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5547W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005548T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005549S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005550F: Documentation/filesystems/ocfs2.txt
5551F: Documentation/filesystems/dlmfs.txt
5552F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005553
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005555L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005556W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005557W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005558S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005559F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005561OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005562M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005563M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005564L: osd-dev@open-osd.org
5565W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005566T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005567S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005568F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005569F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005570F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005571
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005572P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005573M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005574L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005575W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005577F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005578
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005579PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005580M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005581L: netdev@vger.kernel.org
5582S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005583F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005584
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005585PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005586M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005587L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005589F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005590
Steffen Klassert48fc2672010-08-13 10:10:46 -04005591PADATA PARALLEL EXECUTION MECHANISM
5592M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005593L: linux-crypto@vger.kernel.org
5594S: Maintained
5595F: kernel/padata.c
5596F: include/linux/padata.h
5597F: Documentation/padata.txt
5598
Harald Welte709ee532008-09-23 17:46:57 +02005599PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005600M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05005601L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005603F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005604
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005605PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005606M: David Howells <dhowells@redhat.com>
5607M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005608L: linux-am33-list@redhat.com (moderated for non-subscribers)
5609W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005611F: Documentation/mn10300/
5612F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005613
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005615L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005616S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005617F: drivers/parport/
5618F: include/linux/parport*.h
5619F: drivers/char/ppdev.c
5620F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005622PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005623M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005624M: Chris Wright <chrisw@sous-sol.org>
5625M: Alok Kataria <akataria@vmware.com>
5626M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005627L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005628S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005629F: Documentation/ia64/paravirt_ops.txt
5630F: arch/*/kernel/paravirt*
5631F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005632
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005634M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005635L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636W: http://www.torque.net/linux-pp.html
5637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005638F: Documentation/blockdev/paride.txt
5639F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640
5641PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005642M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005643M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005644L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005646Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005647T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005649F: arch/parisc/
5650F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651
Jim Cromie1662d322006-10-06 00:43:59 -07005652PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005653M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005654L: lm-sensors@lm-sensors.org
5655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005656F: Documentation/hwmon/pc87360
5657F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005658
5659PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005660M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005662F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005663
Jean Delvare1ad107f2010-08-14 21:09:00 +02005664PC87427 HARDWARE MONITORING DRIVER
5665M: Jean Delvare <khali@linux-fr.org>
5666L: lm-sensors@lm-sensors.org
5667S: Maintained
5668F: Documentation/hwmon/pc87427
5669F: drivers/hwmon/pc87427.c
5670
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005671PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005672M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005673S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005674F: drivers/leds/leds-pca9532.c
5675F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005676
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005677PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005678M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005679L: linux-i2c@vger.kernel.org
5680S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005681F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005682
Wolfram Sanga1867d32009-09-18 22:45:51 +02005683PCA9564/PCA9665 I2C BUS DRIVER
5684M: Wolfram Sang <w.sang@pengutronix.de>
5685L: linux-i2c@vger.kernel.org
5686S: Maintained
5687F: drivers/i2c/algos/i2c-algo-pca.c
5688F: drivers/i2c/busses/i2c-pca-*
5689F: include/linux/i2c-algo-pca.h
5690F: include/linux/i2c-pca-platform.h
5691
Khalid Aziz3971dae2012-04-12 12:49:13 -07005692PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005693M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005694S: Maintained
5695F: drivers/firmware/pcdp.*
5696
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005697PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005698M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005699L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005700S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005701F: Documentation/PCI/pci-error-recovery.txt
5702F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005703
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005705M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005706L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005707Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005708T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005710F: Documentation/PCI/
5711F: drivers/pci/
5712F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005715P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005716L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005717W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005718T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005720F: Documentation/pcmcia/
5721F: drivers/pcmcia/
5722F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723
5724PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005725M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005726L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005728F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729
Steffen Klassert48fc2672010-08-13 10:10:46 -04005730PCRYPT PARALLEL CRYPTO ENGINE
5731M: Steffen Klassert <steffen.klassert@secunet.com>
5732L: linux-crypto@vger.kernel.org
5733S: Maintained
5734F: crypto/pcrypt.c
5735F: include/crypto/pcrypt.h
5736
Tejun Heoe72df0b2010-12-10 17:02:49 +01005737PER-CPU MEMORY ALLOCATOR
5738M: Tejun Heo <tj@kernel.org>
5739M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005740T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5741S: Maintained
5742F: include/linux/percpu*.h
5743F: mm/percpu*.c
5744F: arch/*/include/asm/percpu.h
5745
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005746PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005747M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005749F: include/linux/delayacct.h
5750F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005751
Ingo Molnar57c0c152009-09-21 12:20:38 +02005752PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005753M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5754M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005755M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005756M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005757T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005758S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005759F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005760F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005761F: arch/*/kernel/perf_event*.c
5762F: arch/*/kernel/*/perf_event*.c
5763F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005764F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005765F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005766F: arch/*/kernel/perf_callchain.c
5767F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005768
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005769PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005770M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005771L: linux-abi-devel@lists.sourceforge.net
5772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005773F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005774
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005775PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005776M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005777S: Supported
5778F: Documentation/networking/phonet.txt
5779F: include/linux/phonet.h
5780F: include/net/phonet/
5781F: net/phonet/
5782
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005784M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785L: linux-mtd@lists.infradead.org
5786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005787F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005788
Bruno Prémontefdbb102012-07-30 21:39:03 +02005789PICOLCD HID DRIVER
5790M: Bruno Prémont <bonbons@linux-vserver.org>
5791L: linux-input@vger.kernel.org
5792S: Maintained
5793F: drivers/hid/hid-picolcd*
5794
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005795PICOXCELL SUPPORT
5796M: Jamie Iles <jamie@jamieiles.com>
5797L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5798T: git git://github.com/jamieiles/linux-2.6-ji.git
5799S: Supported
5800F: arch/arm/mach-picoxcell
5801F: drivers/*/picoxcell*
5802F: drivers/*/*/picoxcell*
5803
Linus Walleij2744e8a2011-05-02 20:50:54 +02005804PIN CONTROL SUBSYSTEM
5805M: Linus Walleij <linus.walleij@linaro.org>
5806S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005807F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005808F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005809
Viresh Kumardeda8282012-03-28 22:27:07 +05305810PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005811M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305812L: spear-devel@list.st.com
5813L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5814W: http://www.st.com/spear
5815S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005816F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305817
Peter Osterlund249a6772005-09-27 21:45:30 -07005818PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005819M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005821F: drivers/block/pktcdvd.c
5822F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005823
GuanXuetaob31d8272011-01-16 00:35:49 +08005824PKUNITY SOC DRIVERS
5825M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5826W: http://mprc.pku.edu.cn/~guanxuetao/linux
5827S: Maintained
5828T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5829F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005830F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005831F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005832F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005833
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005834PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005835M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005836L: lm-sensors@lm-sensors.org
5837W: http://www.lm-sensors.org/
5838W: http://www.roeck-us.net/linux/drivers/
5839T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5840S: Maintained
5841F: Documentation/hwmon/pmbus
5842F: drivers/hwmon/pmbus/
5843F: include/linux/i2c/pmbus.h
5844
Anil Ravindranath89a36812009-08-25 17:35:18 -07005845PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005846M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005847L: linux-scsi@vger.kernel.org
5848W: http://www.pmc-sierra.com/
5849S: Supported
5850F: drivers/scsi/pmcraid.*
5851
jack wangdbf9bfe2009-10-14 16:19:21 +08005852PMC SIERRA PM8001 DRIVER
5853M: jack_wang@usish.com
5854M: lindar_liu@usish.com
5855L: linux-scsi@vger.kernel.org
5856S: Supported
5857F: drivers/scsi/pm8001/
5858
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005860M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005861T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005863F: fs/timerfd.c
5864F: include/linux/timer*
5865F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866
Anton Vorontsov3be86142007-07-15 04:43:36 +04005867POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005868M: Anton Vorontsov <cbou@mail.ru>
5869M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005870T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005872F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005873F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005874
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005876M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005877M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005879F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005880
Vitaly Wool999445d2007-01-04 13:07:03 +01005881PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005882M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005883L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005885F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005886
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005888M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889L: linux-ppp@vger.kernel.org
5890S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005891F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892
5893PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005894M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005896F: net/atm/pppoatm.c
5897F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898
5899PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005900M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005902F: drivers/net/ppp/pppoe.c
5903F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904
James Chapmana6d23702007-06-27 15:53:17 -07005905PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005906M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005907S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005908F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005909F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005910
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005911PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005912M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005913W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5914L: linuxpps@ml.enneenne.com (subscribers-only)
5915S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005916F: Documentation/pps/
5917F: drivers/pps/
5918F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005919
Harry Wei71a6d0a2011-05-11 15:13:33 -07005920PPTP DRIVER
5921M: Dmitry Kozlov <xeb@mail.ru>
5922L: netdev@vger.kernel.org
5923S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005924F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005925W: http://sourceforge.net/projects/accel-pptp
5926
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005928M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929L: kpreempt-tech@lists.sourceforge.net
5930W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5931S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005932F: Documentation/preempt-locking.txt
5933F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934
5935PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005936M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005937L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005938W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005939S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005940F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005942PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005943M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005944L: linux-ide@vger.kernel.org
5945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005946F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005947
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005948PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005949M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005950L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005951L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005952S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005953F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005954
Geoff Levandf58a9d12006-11-23 00:46:51 +01005955PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005956M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005957L: linuxppc-dev@lists.ozlabs.org
5958L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005960F: arch/powerpc/boot/ps3*
5961F: arch/powerpc/include/asm/lv1call.h
5962F: arch/powerpc/include/asm/ps3*.h
5963F: arch/powerpc/platforms/ps3/
5964F: drivers/*/ps3*
5965F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005966F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005967F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005968F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005969
Jim Pariscffb4add2009-01-06 11:32:10 +00005970PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005971M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005972L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005973S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005974F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005975
Anton Vorontsov8defe592012-08-03 18:07:20 -07005976PSTORE FILESYSTEM
5977M: Anton Vorontsov <cbouatmailru@gmail.com>
5978M: Colin Cross <ccross@android.com>
5979M: Kees Cook <keescook@chromium.org>
5980M: Tony Luck <tony.luck@intel.com>
5981S: Maintained
5982T: git git://git.infradead.org/users/cbou/linux-pstore.git
5983F: fs/pstore/
5984F: include/linux/pstore*
5985F: drivers/firmware/efivars.c
5986F: drivers/acpi/apei/erst.c
5987
Richard Cochran7fbc4152012-03-10 01:55:53 +00005988PTP HARDWARE CLOCK SUPPORT
5989M: Richard Cochran <richardcochran@gmail.com>
5990S: Maintained
5991W: http://linuxptp.sourceforge.net/
5992F: Documentation/ABI/testing/sysfs-ptp
5993F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07005994F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00005995F: drivers/net/phy/dp83640*
5996F: drivers/ptp/*
5997F: include/linux/ptp_cl*
5998
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005999PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006000M: Roland McGrath <roland@redhat.com>
6001M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006002S: Maintained
6003F: include/asm-generic/syscall.h
6004F: include/linux/ptrace.h
6005F: include/linux/regset.h
6006F: include/linux/tracehook.h
6007F: kernel/ptrace.c
6008
Michael Krufky83202042006-07-03 00:24:18 -07006009PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006010M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006011L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006012L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006013W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006014T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006016F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006017F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006018
Hans de Goede39532e62012-11-04 17:05:59 -03006019PWC WEBCAM DRIVER
6020M: Hans de Goede <hdegoede@redhat.com>
6021L: linux-media@vger.kernel.org
6022T: git git://linuxtv.org/media_tree.git
6023S: Maintained
6024F: drivers/media/usb/pwc/*
6025
Thierry Reding200efed2012-03-27 13:16:18 +02006026PWM SUBSYSTEM
6027M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006028L: linux-kernel@vger.kernel.org
6029S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006030W: http://gitorious.org/linux-pwm
6031T: git git://gitorious.org/linux-pwm/linux-pwm.git
6032F: Documentation/pwm.txt
6033F: Documentation/devicetree/bindings/pwm/
6034F: include/linux/pwm.h
6035F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006036F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006037F: drivers/video/backlight/pwm_bl.c
6038F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006039
Eric Miao30ec2612008-06-12 15:21:41 -07006040PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006041M: Eric Miao <eric.y.miao@gmail.com>
6042M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006043M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006044L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006045T: git git://github.com/hzhuang1/linux.git
6046T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006048F: arch/arm/mach-pxa/
6049F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006050F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006051F: drivers/usb/gadget/pxa2*
6052F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006053F: sound/arm/pxa*
6054F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006056MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006057M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006058M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006059L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006060T: git git://github.com/hzhuang1/linux.git
6061T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006062S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006063F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006064
Pierre Ossman272f1332007-05-14 21:25:26 +02006065PXA MMCI DRIVER
6066S: Orphan
6067
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006068PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006069M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006070L: rtc-linux@googlegroups.com
6071S: Maintained
6072
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006073QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006074M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006075L: linux-rdma@vger.kernel.org
6076S: Supported
6077F: drivers/infiniband/hw/qib/
6078
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006079QLOGIC QLA1280 SCSI DRIVER
6080M: Michael Reed <mdr@sgi.com>
6081L: linux-scsi@vger.kernel.org
6082S: Maintained
6083F: drivers/scsi/qla1280.[ch]
6084
Linus Torvalds1da177e2005-04-16 15:20:36 -07006085QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006086M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006087M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088L: linux-scsi@vger.kernel.org
6089S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006090F: Documentation/scsi/LICENSE.qla2xxx
6091F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092
Ravi Anand883c98f2010-04-28 11:45:49 +05306093QLOGIC QLA4XXX iSCSI DRIVER
6094M: Ravi Anand <ravi.anand@qlogic.com>
6095M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6096M: iscsi-driver@qlogic.com
6097L: linux-scsi@vger.kernel.org
6098S: Supported
6099F: drivers/scsi/qla4xxx/
6100
Ron Mercer5a4faa872006-07-25 00:40:21 -07006101QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006102M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006103M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006104M: linux-driver@qlogic.com
6105L: netdev@vger.kernel.org
6106S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006107F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006108F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006109
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006110QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006111M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006112M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006113M: linux-driver@qlogic.com
6114L: netdev@vger.kernel.org
6115S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006116F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006117
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006118QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006119M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006120M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006121M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006122L: netdev@vger.kernel.org
6123S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006124F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006125
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006127M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128W: http://www.alarsen.net/linux/qnx4fs/
6129S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006130F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07006131F: include/linux/qnx4_fs.h
6132F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133
Antti Palosaari91952bc2012-10-01 12:28:46 -03006134QT1010 MEDIA DRIVER
6135M: Antti Palosaari <crope@iki.fi>
6136L: linux-media@vger.kernel.org
6137W: http://linuxtv.org/
6138W: http://palosaari.fi/linux/
6139Q: http://patchwork.linuxtv.org/project/linux-media/list/
6140T: git git://linuxtv.org/anttip/media_tree.git
6141S: Maintained
6142F: drivers/media/tuners/qt1010*
6143
Richard Kuo4f4567c2011-10-31 18:56:38 -05006144QUALCOMM HEXAGON ARCHITECTURE
6145M: Richard Kuo <rkuo@codeaurora.org>
6146L: linux-hexagon@vger.kernel.org
6147S: Supported
6148F: arch/hexagon/
6149
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006150RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006151M: Yehuda Sadeh <yehuda@inktank.com>
6152M: Sage Weil <sage@inktank.com>
6153M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006154M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006155W: http://ceph.com/
6156T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006157S: Supported
6158F: drivers/block/rbd.c
6159F: drivers/block/rbd_types.h
6160
Linus Torvalds1da177e2005-04-16 15:20:36 -07006161RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006162M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006163L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006165F: drivers/video/aty/radeon*
6166F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167
Hans de Goedec6c9b342012-11-04 17:03:58 -03006168RADIOSHARK RADIO DRIVER
6169M: Hans de Goede <hdegoede@redhat.com>
6170L: linux-media@vger.kernel.org
6171T: git git://linuxtv.org/media_tree.git
6172S: Maintained
6173F: drivers/media/radio/radio-shark.c
6174
6175RADIOSHARK2 RADIO DRIVER
6176M: Hans de Goede <hdegoede@redhat.com>
6177L: linux-media@vger.kernel.org
6178T: git git://linuxtv.org/media_tree.git
6179S: Maintained
6180F: drivers/media/radio/radio-shark2.c
6181F: drivers/media/radio/radio-tea5777.c
6182
Linus Torvalds1da177e2005-04-16 15:20:36 -07006183RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006184M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006185L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006187F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006188
Randy Dunlape7839f22008-10-12 16:11:45 -07006189RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006190P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006191M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006192M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006193M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006194L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006195L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006196W: http://rt2x00.serialmonkey.com/
6197S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006198T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006199F: drivers/net/wireless/rt2x00/
6200
Nick Piggin9db55792008-02-08 04:19:49 -08006201RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006202M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006204F: Documentation/blockdev/ramdisk.txt
6205F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006206
Matt Mackall9e95ce22005-04-16 15:25:56 -07006207RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006208M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006210F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006211
Matt Porter394b7012005-11-07 01:00:15 -08006212RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006213M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006214M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006216F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006217
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006218RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006219L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006220S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006221F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006222
6223RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006224M: Josh Triplett <josh@freedesktop.org>
6225M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006226S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006227T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006228F: Documentation/RCU/torture.txt
6229F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006230
Florian Fainellic1f766b2008-02-06 22:39:44 +01006231RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006232M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006233S: Maintained
6234
Florian Fainellidb17f392007-12-19 11:30:30 +01006235RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006236M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006237L: netdev@vger.kernel.org
6238S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006239F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006240
Andy Grovera09ed662009-02-24 15:30:41 +00006241RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006242M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006243L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006244S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006245F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006246
Josh Triplett595182b2006-10-04 02:17:21 -07006247READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006248M: Dipankar Sarma <dipankar@in.ibm.com>
6249M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006250W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006251S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006252T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006253F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006254X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006255F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006256F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006257X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006258
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006259REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006260M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006261L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006262Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006264F: Documentation/rtc.txt
6265F: drivers/rtc/
6266F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006267
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006269L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006271F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272
Mark Brownb83a3132011-05-11 19:59:58 +02006273REGISTER MAP ABSTRACTION
6274M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6275T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6276S: Supported
6277F: drivers/base/regmap/
6278F: include/linux/regmap.h
6279
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006280REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6281M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006282T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006283S: Maintained
6284F: drivers/remoteproc/
6285F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006286F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006287
Ivo van Doorne08976452008-04-12 19:23:55 +02006288RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006289M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006290L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006291W: http://wireless.kernel.org/
6292T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6293T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006294S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006295F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006296F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006297
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006298RICOH SMARTMEDIA/XD DRIVER
6299M: Maxim Levitsky <maximlevitsky@gmail.com>
6300S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006301F: drivers/mtd/nand/r852.c
6302F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006303
Maxim Levitsky92634122011-03-25 01:56:59 -07006304RICOH R5C592 MEMORYSTICK DRIVER
6305M: Maxim Levitsky <maximlevitsky@gmail.com>
6306S: Maintained
6307F: drivers/memstick/host/r592.*
6308
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309ROCKETPORT DRIVER
6310P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311W: http://www.comtrol.com
6312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006313F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006314F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315
6316ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006317M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006318L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006319W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006321F: include/linux/rose.h
6322F: include/net/rose.h
6323F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324
Antti Palosaari91952bc2012-10-01 12:28:46 -03006325RTL2830 MEDIA DRIVER
6326M: Antti Palosaari <crope@iki.fi>
6327L: linux-media@vger.kernel.org
6328W: http://linuxtv.org/
6329W: http://palosaari.fi/linux/
6330Q: http://patchwork.linuxtv.org/project/linux-media/list/
6331T: git git://linuxtv.org/anttip/media_tree.git
6332S: Maintained
6333F: drivers/media/dvb-frontends/rtl2830*
6334
Larry Finger59840482008-11-12 17:13:09 -06006335RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006336M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006337L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006338W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006339T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006340S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006341F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006342
Larry Finger59840482008-11-12 17:13:09 -06006343RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006344M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006345M: Hin-Tak Leung <htl10@users.sourceforge.net>
6346M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006347L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006348W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006349T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006350S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006351F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006352
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006353RTL8192CE WIRELESS DRIVER
6354M: Larry Finger <Larry.Finger@lwfinger.net>
6355M: Chaoming Li <chaoming_li@realsil.com.cn>
6356L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006357W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006358T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6359S: Maintained
6360F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006361F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006362
6363S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006364M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006365L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006367F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006368
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369S390
Joe Perches8b58be82009-07-29 15:04:30 -07006370M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6371M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006373L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006374W: http://www.ibm.com/developerworks/linux/linux390/
6375S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006376F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006377F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006378F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006379F: Documentation/s390/
6380F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006381
6382S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006383M: Ursula Braun <ursula.braun@de.ibm.com>
6384M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006385M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006386L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006387W: http://www.ibm.com/developerworks/linux/linux390/
6388S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006389F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006390
Felix Beckfeed9b62009-03-26 15:24:23 +01006391S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006392M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006393M: linux390@de.ibm.com
6394L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006395W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006396S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006397F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006398
Heiko Carstens5238da42006-02-11 17:56:01 -08006399S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006400M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006401M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006402L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006403W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006405F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406
Ursula Braundd96df22007-09-19 13:09:02 +02006407S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006408M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006409M: linux390@de.ibm.com
6410L: linux-s390@vger.kernel.org
6411W: http://www.ibm.com/developerworks/linux/linux390/
6412S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006413F: drivers/s390/net/*iucv*
6414F: include/net/iucv/
6415F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006416
Ben Dooks4dde7f72008-06-30 22:40:38 +01006417S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006418M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006419L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006420S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006421F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006422
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006423SAA7134 VIDEO4LINUX DRIVER
6424M: Mauro Carvalho Chehab <mchehab@redhat.com>
6425L: linux-media@vger.kernel.org
6426W: http://linuxtv.org
6427T: git git://linuxtv.org/media_tree.git
6428S: Odd fixes
6429F: Documentation/video4linux/saa7134/
6430F: drivers/media/pci/saa7134/
6431
Linus Torvalds1da177e2005-04-16 15:20:36 -07006432SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006433M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006434L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006435T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006436W: http://www.mihu.de/linux/saa7146
6437S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006438F: drivers/media/common/saa7146/
6439F: drivers/media/pci/saa7146/
6440F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441
Corentin Chary92304a42011-12-05 12:38:35 -05006442SAMSUNG LAPTOP DRIVER
6443M: Corentin Chary <corentincj@iksaif.net>
6444L: platform-driver-x86@vger.kernel.org
6445S: Maintained
6446F: drivers/platform/x86/samsung-laptop.c
6447
Mark Brown4a109cc2010-09-24 10:50:46 +01006448SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006449M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006450L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6451S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006452F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006453
Jingoo Han0d89a282011-12-19 11:09:35 +09006454SAMSUNG FRAMEBUFFER DRIVER
6455M: Jingoo Han <jg1.han@samsung.com>
6456L: linux-fbdev@vger.kernel.org
6457S: Maintained
6458F: drivers/video/s3c-fb.c
6459
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006460SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6461M: Sangbeom Kim <sbkim73@samsung.com>
6462L: linux-kernel@vger.kernel.org
6463S: Supported
6464F: drivers/mfd/sec*.c
6465F: drivers/regulator/s2m*.c
6466F: drivers/regulator/s5m*.c
6467F: drivers/rtc/rtc-sec.c
6468F: include/linux/mfd/samsung/
6469
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006470SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6471M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6472L: linux-media@vger.kernel.org
6473L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6474S: Maintained
6475F: drivers/media/platform/s3c-camif/
6476F: include/media/s3c_camif.h
6477
Alan Coxca749e22011-03-18 13:56:14 +00006478SERIAL DRIVERS
6479M: Alan Cox <alan@linux.intel.com>
6480L: linux-serial@vger.kernel.org
6481S: Maintained
6482F: drivers/tty/serial
6483
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306484SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006485M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306486S: Maintained
6487F: include/linux/dw_dmac.h
6488F: drivers/dma/dw_dmac_regs.h
6489F: drivers/dma/dw_dmac.c
6490
Thomas Gleixner88606e82010-12-14 21:37:13 +01006491TIMEKEEPING, NTP
6492M: John Stultz <johnstul@us.ibm.com>
6493M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006494T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006495S: Supported
6496F: include/linux/clocksource.h
6497F: include/linux/time.h
6498F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006499F: kernel/time/clocksource.c
6500F: kernel/time/time*.c
6501F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006502F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006503
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006504TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006505M: Huang Shijie <shijie8@gmail.com>
6506M: Kang Yong <kangyong@telegent.com>
6507M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006508S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006509F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006510
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006512M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006514F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515
6516SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006517M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006518M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006519T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006521F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006522F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523
Chen Liqin6bcf6732009-06-13 15:24:33 +08006524SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006525M: Chen Liqin <liqin.chen@sunplusct.com>
6526M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006527W: http://www.sunplusct.com
6528S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006529F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006530
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006532M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533L: linux-scsi@vger.kernel.org
6534W: http://www.kernel.dk
6535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006536F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006537
Roland Dreierfb50a832010-10-07 09:54:53 -07006538SCSI RDMA PROTOCOL (SRP) INITIATOR
6539M: David Dillow <dillowda@ornl.gov>
6540L: linux-rdma@vger.kernel.org
6541S: Supported
6542W: http://www.openfabrics.org
6543Q: http://patchwork.kernel.org/project/linux-rdma/list/
6544T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6545F: drivers/infiniband/ulp/srp/
6546F: include/scsi/srp.h
6547
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006549M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550L: linux-scsi@vger.kernel.org
6551W: http://www.torque.net/sg
6552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006553F: drivers/scsi/sg.c
6554F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006555
6556SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006557M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006558L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006559T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6560T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6561T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006563F: drivers/scsi/
6564F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565
6566SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006567M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568L: linux-scsi@vger.kernel.org
6569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006570F: Documentation/scsi/st.txt
6571F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572
6573SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006574M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006575M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006576L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006577W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006579F: Documentation/networking/sctp.txt
6580F: include/linux/sctp.h
6581F: include/net/sctp/
6582F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583
6584SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006585M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006586S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006587F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006588F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006589F: drivers/watchdog/scx200_wdt.c
6590F: drivers/i2c/busses/scx200*
6591F: drivers/mtd/maps/scx200_docflash.c
6592F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006593
6594SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006595M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006597F: drivers/char/scx200_gpio.c
6598F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006599
6600SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006601M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006603F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604
Sascha Sommer6a369132008-07-15 14:21:29 +02006605SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006606M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006607L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006609F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006610
Randy Dunlape7839f22008-10-12 16:11:45 -07006611SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006612M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006613L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006614T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6615S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006616F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006617F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006618
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006619SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006620M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006621L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006622L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006624F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625
Ben Dooks0d1bb412009-06-14 13:52:37 +01006626SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006627M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006628L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006629S: Maintained
6630F: drivers/mmc/host/sdhci-s3c.c
6631
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006632SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006633M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006634L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006635L: linux-mmc@vger.kernel.org
6636S: Maintained
6637F: drivers/mmc/host/sdhci-spear.c
6638
James Morris8711cca2008-12-04 03:19:45 +11006639SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006640M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006641L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006642T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006643W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006644S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006645F: security/
James Morris8711cca2008-12-04 03:19:45 +11006646
Linus Torvalds1da177e2005-04-16 15:20:36 -07006647SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006648M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006649S: Supported
6650
6651SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006652M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006653M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006654M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006655L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006656W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006657T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006658S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006659F: include/linux/selinux*
6660F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006661F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662
John Johansenc1c124e2010-07-29 14:48:09 -07006663APPARMOR SECURITY MODULE
6664M: John Johansen <john.johansen@canonical.com>
6665L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6666W: apparmor.wiki.kernel.org
6667T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6668S: Supported
6669F: security/apparmor/
6670
Jiri Slabycef2cf02007-05-08 00:31:45 -07006671SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006672M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006674F: drivers/misc/phantom.c
6675F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006676
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006677SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006678M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006679L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006680T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006681S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006682F: drivers/ata/
6683F: include/linux/ata.h
6684F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006685
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306686SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006687M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006688L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006689W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006690S: Supported
6691F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306692
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006693SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006694M: Sathya Perla <sathya.perla@emulex.com>
6695M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6696M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006697L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006698W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006699S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006700F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006701
Ben Hutchings8ceee662008-04-27 12:55:59 +01006702SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006703M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006704M: Ben Hutchings <bhutchings@solarflare.com>
6705L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006706S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006707F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006708
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006709SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006710M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006712F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006713
6714SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006715M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006716L: linux-ia64@vger.kernel.org
6717S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006718F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006719F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006720F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006721
Linus Torvalds1da177e2005-04-16 15:20:36 -07006722SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006723M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006724L: linux-visws-devel@lists.sf.net
6725W: http://linux-visws.sf.net
6726S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006727F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006728
Jack Steiner75312612008-08-15 00:40:42 -07006729SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006730M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006732F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006733
Len Brown6349d992009-08-14 15:07:14 -04006734SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006735M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006736L: sfi-devel@simplefirmware.org
6737W: http://simplefirmware.org/
6738T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006739S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006740F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006741F: drivers/sfi/
6742F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006743
Linus Torvalds1da177e2005-04-16 15:20:36 -07006744SIMTEC EB110ATX (Chalice CATS)
6745P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006746P: Vincent Sanders <vince@simtec.co.uk>
6747M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748W: http://www.simtec.co.uk/products/EB110ATX/
6749S: Supported
6750
6751SIMTEC EB2410ITX (BAST)
6752P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006753P: Vincent Sanders <vince@simtec.co.uk>
6754M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755W: http://www.simtec.co.uk/products/EB2410ITX/
6756S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006757F: arch/arm/mach-s3c2410/mach-bast.c
6758F: arch/arm/mach-s3c2410/bast-ide.c
6759F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006761TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006762M: Sekhar Nori <nsekhar@ti.com>
6763M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306764L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306765T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006766Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006767S: Supported
6768F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006769F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006770
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03006771TI DAVINCI SERIES MEDIA DRIVER
6772M: Manjunath Hadli <manjunath.hadli@ti.com>
6773M: Prabhakar Lad <prabhakar.lad@ti.com>
6774L: linux-media@vger.kernel.org
6775L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
6776W: http://linuxtv.org/
6777Q: http://patchwork.linuxtv.org/project/linux-media/list/
6778T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
6779S: Supported
6780F: drivers/media/platform/davinci/
6781F: include/media/davinci/
6782
Francois Romieu92aab3c2005-07-30 13:11:18 +02006783SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006784M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006785L: netdev@vger.kernel.org
6786S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006787F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006788
Linus Torvalds1da177e2005-04-16 15:20:36 -07006789SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006790M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006791W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006792L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006794F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006795
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006796SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006797M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006798L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006800F: Documentation/i2c/busses/i2c-sis96x
6801F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006802
Linus Torvalds1da177e2005-04-16 15:20:36 -07006803SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006804M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006805W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006807F: Documentation/fb/sisfb.txt
6808F: drivers/video/sis/
6809F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006810
6811SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006812M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006813W: http://www.winischhofer.at/linuxsisusbvga.shtml
6814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006815F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006816
Christoph Lameter415ad262007-07-26 10:40:56 -07006817SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006818M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006819M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006820M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07006821L: linux-mm@kvack.org
6822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006823F: include/linux/sl?b*.h
6824F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07006825
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006826SLEEPABLE READ-COPY UPDATE (SRCU)
6827M: Lai Jiangshan <laijs@cn.fujitsu.com>
6828M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6829W: http://www.rdrop.com/users/paulmck/RCU/
6830S: Supported
6831T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6832F: include/linux/srcu*
6833F: kernel/srcu*
6834
Casey Schaufler66372842012-05-23 18:34:52 -07006835SMACK SECURITY MODULE
6836M: Casey Schaufler <casey@schaufler-ca.com>
6837L: linux-security-module@vger.kernel.org
6838W: http://schaufler-ca.com
6839T: git git://git.gitorious.org/smack-next/kernel.git
6840S: Maintained
6841F: Documentation/security/Smack.txt
6842F: security/smack/
6843
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006845M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006846S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006847F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848
Sakari Ailuse8e31622012-11-12 18:14:39 -03006849SMIA AND SMIA++ IMAGE SENSOR DRIVER
6850M: Sakari Ailus <sakari.ailus@iki.fi>
6851L: linux-media@vger.kernel.org
6852S: Maintained
6853F: drivers/media/i2c/smiapp
6854F: include/media/smiapp.h
6855F: drivers/media/i2c/smiapp-pll.c
6856F: drivers/media/i2c/smiapp-pll.h
6857
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006858SMM665 HARDWARE MONITOR DRIVER
6859M: Guenter Roeck <linux@roeck-us.net>
6860L: lm-sensors@lm-sensors.org
6861S: Maintained
6862F: Documentation/hwmon/smm665
6863F: drivers/hwmon/smm665.c
6864
Steve Glendinning9df73052010-08-14 21:08:54 +02006865SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006866M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006867L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006868S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006869F: Documentation/hwmon/emc2103
6870F: drivers/hwmon/emc2103.c
6871
Hans de Goedea98d5062011-03-21 17:59:36 +01006872SMSC SCH5627 HARDWARE MONITOR DRIVER
6873M: Hans de Goede <hdegoede@redhat.com>
6874L: lm-sensors@lm-sensors.org
6875S: Supported
6876F: Documentation/hwmon/sch5627
6877F: drivers/hwmon/sch5627.c
6878
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006879SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006880M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006881L: lm-sensors@lm-sensors.org
6882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006883F: Documentation/hwmon/smsc47b397
6884F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006885
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006886SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006887M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006888L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006890F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006891F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006892
Steve Glendinning2cb37722008-12-11 20:54:30 -08006893SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006894M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006895L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006896S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006897F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006898
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006899SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006900M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006901L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006902S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006903F: drivers/video/smscufx.c
6904
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006905SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006906M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006907L: linux-altix@sgi.com
6908L: linux-ia64@vger.kernel.org
6909W: http://www.sgi.com/altix
6910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006911F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006912
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006913SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006914M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006915L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006916T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006917S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006918F: include/media/soc*
6919F: drivers/media/i2c/soc_camera/
6920F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006921
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006922SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006923M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006925F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006926
Linus Torvalds1da177e2005-04-16 15:20:36 -07006927SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006928M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006929L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006930S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006931F: drivers/md/
6932F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006933
Linus Torvalds1da177e2005-04-16 15:20:36 -07006934SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006935M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006936L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006937S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006938F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006939
Michael Buesch61e115a2007-09-18 15:12:50 -04006940SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006941M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006942L: netdev@vger.kernel.org
6943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006944F: drivers/ssb/
6945F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006946
Linus Torvalds1da177e2005-04-16 15:20:36 -07006947SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006948M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05006949L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006950W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006952F: Documentation/laptops/sony-laptop.txt
6953F: drivers/char/sonypi.c
6954F: drivers/platform/x86/sony-laptop.c
6955F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006956
Alex Dubovbaf85322008-02-09 10:20:54 -08006957SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006958M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006959W: http://tifmxx.berlios.de/
6960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006961F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006962
Linus Torvalds1da177e2005-04-16 15:20:36 -07006963SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006964M: Jaroslav Kysela <perex@perex.cz>
6965M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006966L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006967W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006968T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006969T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006971F: Documentation/sound/
6972F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006973F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006974
Mark Brownbd903bd2008-11-19 19:16:05 +00006975SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006976M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006977M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006978T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006979L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006980W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006982F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006983F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006984
Sam Ravnborg473321f2009-01-04 15:47:49 -08006985SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006986M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006987L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006988Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006989T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6990T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006992F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006993F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994
David S. Miller6404fcc2010-03-16 01:00:17 -07006995SPARC SERIAL DRIVERS
6996M: "David S. Miller" <davem@davemloft.net>
6997L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006998T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6999T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007000S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007001F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007002F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007003F: drivers/tty/serial/sunhv.c
7004F: drivers/tty/serial/sunsab.c
7005F: drivers/tty/serial/sunsab.h
7006F: drivers/tty/serial/sunsu.c
7007F: drivers/tty/serial/sunzilog.c
7008F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007009
Christopher Li389325b2012-04-05 14:25:14 -07007010SPARSE CHECKER
7011M: "Christopher Li" <sparse@chrisli.org>
7012L: linux-sparse@vger.kernel.org
7013W: https://sparse.wiki.kernel.org/
7014T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7015T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7016S: Maintained
7017F: include/linux/compiler.h
7018
viresh kumarfc0c1952010-04-01 12:31:21 +01007019SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007020M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307021M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007022L: spear-devel@list.st.com
7023L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007024W: http://www.st.com/spear
7025S: Maintained
7026F: arch/arm/plat-spear/
7027
Viresh Kumar71e09a92012-04-20 22:39:48 +05307028SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007029M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307030M: Shiraz Hashim <shiraz.hashim@st.com>
7031L: spear-devel@list.st.com
7032L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7033W: http://www.st.com/spear
7034S: Maintained
7035F: arch/arm/mach-spear13xx/
7036
viresh kumarfc0c1952010-04-01 12:31:21 +01007037SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007038M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307039M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007040L: spear-devel@list.st.com
7041L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007042W: http://www.st.com/spear
7043S: Maintained
7044F: arch/arm/mach-spear3xx/
7045
7046SPEAR6XX MACHINE SUPPORT
7047M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307048M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007049M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007050L: spear-devel@list.st.com
7051L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007052W: http://www.st.com/spear
7053S: Maintained
7054F: arch/arm/mach-spear6xx/
7055
7056SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007057M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007058L: spear-devel@list.st.com
7059L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007060W: http://www.st.com/spear
7061S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307062F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007063
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007064SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007065M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007066L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007067Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007068T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007070F: Documentation/spi/
7071F: drivers/spi/
7072F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007073
Jim Lewis2752e4012006-09-29 02:01:19 -07007074SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007075M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7076M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e4012006-09-29 02:01:19 -07007077L: netdev@vger.kernel.org
7078S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007079F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007080F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07007081
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007082SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007083M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007084L: linuxppc-dev@lists.ozlabs.org
7085L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007086W: http://www.ibm.com/developerworks/power/cell/
7087S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007088F: Documentation/filesystems/spufs.txt
7089F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007090
Phillip Lougherfc555842009-01-05 08:46:29 +00007091SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007092M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007093L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7094W: http://squashfs.org.uk
7095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007096F: Documentation/filesystems/squashfs.txt
7097F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007098
Linus Torvalds1da177e2005-04-16 15:20:36 -07007099SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007100M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007102F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007103
Linus Torvalds26e9a392008-10-17 09:50:12 -07007104STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007105M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007106L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007107S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007108
Linus Torvalds26e9a392008-10-17 09:50:12 -07007109STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007110M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007111T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007112L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007113S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007114F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007115
Joe Perchesc8c8b102011-07-05 09:42:12 -07007116STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7117M: Henk de Groot <pe1dnn@amsat.org>
7118S: Odd Fixes
7119F: drivers/staging/wlags49_h2/
7120F: drivers/staging/wlags49_h25/
7121
Joe Perchesc9555152011-07-05 09:42:01 -07007122STAGING - ASUS OLED
7123M: Jakub Schmidtke <sjakub@gmail.com>
7124S: Odd Fixes
7125F: drivers/staging/asus_oled/
7126
Joe Perchesebd3d012011-07-05 09:42:02 -07007127STAGING - COMEDI
7128M: Ian Abbott <abbotti@mev.co.uk>
7129M: Mori Hess <fmhess@users.sourceforge.net>
7130S: Odd Fixes
7131F: drivers/staging/comedi/
7132
Joe Perches8ca572c2011-07-05 09:42:03 -07007133STAGING - CRYSTAL HD VIDEO DECODER
7134M: Naren Sankar <nsankar@broadcom.com>
7135M: Jarod Wilson <jarod@wilsonet.com>
7136M: Scott Davilla <davilla@4pi.com>
7137M: Manu Abraham <abraham.manu@gmail.com>
7138S: Odd Fixes
7139F: drivers/staging/crystalhd/
7140
Joe Perches0f16ffc2011-07-05 09:42:04 -07007141STAGING - ECHO CANCELLER
7142M: Steve Underwood <steveu@coppice.org>
7143M: David Rowe <david@rowetel.com>
7144S: Odd Fixes
7145F: drivers/staging/echo/
7146
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007147STAGING - ET131X NETWORK DRIVER
7148M: Mark Einon <mark.einon@gmail.com>
7149S: Odd Fixes
7150F: drivers/staging/et131x/
7151
Joe Perchesa0138162011-07-05 15:21:34 -07007152STAGING - FLARION FT1000 DRIVERS
7153M: Marek Belisko <marek.belisko@gmail.com>
7154S: Odd Fixes
7155F: drivers/staging/ft1000/
7156
Joe Perchesec3fab92011-07-05 09:42:05 -07007157STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7158M: David Täht <d@teklibre.com>
7159S: Odd Fixes
7160F: drivers/staging/frontier/
7161
Joe Perches6c1bb422011-07-05 09:42:07 -07007162STAGING - INDUSTRIAL IO
7163M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007164L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007165S: Odd Fixes
7166F: drivers/staging/iio/
7167
Joe Perchesa0138162011-07-05 15:21:34 -07007168STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7169M: Jarod Wilson <jarod@wilsonet.com>
7170W: http://www.lirc.org/
7171S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007172F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007173
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007174STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007175M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007176M: Marc Dietrich <marvin24@gmx.de>
7177L: ac100@lists.launchpad.net (moderated for non-subscribers)
7178S: Maintained
7179F: drivers/staging/nvec/
7180
Joe Perchesa0138162011-07-05 15:21:34 -07007181STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7182M: Andres Salomon <dilinger@queued.net>
7183M: Chris Ball <cjb@laptop.org>
7184M: Jon Nettleton <jon.nettleton@gmail.com>
7185W: http://wiki.laptop.org/go/DCON
7186S: Odd Fixes
7187F: drivers/staging/olpc_dcon/
7188
Chris Kelly94cfdd12012-03-14 10:55:42 +00007189STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007190M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007191M: Chris Kelly <ckelly@ozmodevices.com>
7192S: Maintained
7193F: drivers/staging/ozwpan/
7194
Joe Perchesa0138162011-07-05 15:21:34 -07007195STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007196M: Willy Tarreau <willy@meta-x.org>
7197S: Odd Fixes
7198F: drivers/staging/panel/
7199
Joe Perchesa0138162011-07-05 15:21:34 -07007200STAGING - REALTEK RTL8712U DRIVERS
7201M: Larry Finger <Larry.Finger@lwfinger.net>
7202M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7203S: Odd Fixes
7204F: drivers/staging/rtl8712/
7205
Joe Perches9629fa82011-07-05 09:42:09 -07007206STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7207M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7208S: Odd Fixes
7209F: drivers/staging/sm7xx/
7210
Joe Perchesa0138162011-07-05 15:21:34 -07007211STAGING - SOFTLOGIC 6x10 MPEG CODEC
7212M: Ben Collins <bcollins@bluecherry.net>
7213S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007214F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007215
7216STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7217M: William Hubbs <w.d.hubbs@gmail.com>
7218M: Chris Brannon <chris@the-brannons.com>
7219M: Kirk Reiser <kirk@braille.uwo.ca>
7220M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7221L: speakup@braille.uwo.ca
7222W: http://www.linux-speakup.org/
7223S: Odd Fixes
7224F: drivers/staging/speakup/
7225
7226STAGING - TI DSP BRIDGE DRIVERS
7227M: Omar Ramirez Luna <omar.ramirez@ti.com>
7228S: Odd Fixes
7229F: drivers/staging/tidspbridge/
7230
Joe Perchesa0138162011-07-05 15:21:34 -07007231STAGING - USB ENE SM/MS CARD READER DRIVER
7232M: Al Cho <acho@novell.com>
7233S: Odd Fixes
7234F: drivers/staging/keucr/
7235
Joe Perchesb3e871c2011-07-05 09:42:10 -07007236STAGING - VIA VT665X DRIVERS
7237M: Forest Bond <forest@alittletooquiet.net>
7238S: Odd Fixes
7239F: drivers/staging/vt665?/
7240
Joe Perches81a9a5262011-07-05 09:42:11 -07007241STAGING - WINBOND IS89C35 WLAN USB DRIVER
7242M: Pavel Machek <pavel@ucw.cz>
7243S: Odd Fixes
7244F: drivers/staging/winbond/
7245
Joe Perches709bcb02011-07-05 09:42:13 -07007246STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007247M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007248S: Odd Fixes
7249F: drivers/staging/xgifb/
7250
Linus Torvalds1da177e2005-04-16 15:20:36 -07007251STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007252M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007253S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007254F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007255
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007256SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007257M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007258W: http://sammy.net/sun3/
7259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007260F: arch/m68k/kernel/*sun3*
7261F: arch/m68k/sun3*/
7262F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007263F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007264
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007265SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007266M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007267L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007268W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007269Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007270T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007271S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007272F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007273F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007274F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007275
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007276SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007277M: Len Brown <len.brown@intel.com>
7278M: Pavel Machek <pavel@ucw.cz>
7279M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007280L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007281S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007282F: Documentation/power/
7283F: arch/x86/kernel/acpi/
7284F: drivers/base/power/
7285F: kernel/power/
7286F: include/linux/suspend.h
7287F: include/linux/freezer.h
7288F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007289
7290SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007291M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007292L: linux-video@atrey.karlin.mff.cuni.cz
7293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007294F: Documentation/svga.txt
7295F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007296
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007297SWIOTLB SUBSYSTEM
7298M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7299L: linux-kernel@vger.kernel.org
7300S: Supported
7301F: lib/swiotlb.c
7302F: arch/*/kernel/pci-swiotlb.c
7303F: include/linux/swiotlb.h
7304
Linus Torvalds1da177e2005-04-16 15:20:36 -07007305SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007306M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007308F: Documentation/filesystems/sysv-fs.txt
7309F: fs/sysv/
7310F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007311
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007312TARGET SUBSYSTEM
7313M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7314L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007315L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007316L: http://groups.google.com/group/linux-iscsi-target-dev
7317W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007318T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007319S: Supported
7320F: drivers/target/
7321F: include/target/
7322F: Documentation/target/
7323
Alan Cox4e688522008-04-30 00:52:11 -07007324TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007325M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007327F: Documentation/accounting/taskstats*
7328F: include/linux/taskstats*
7329F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007330
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007331TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007332M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007333L: netdev@vger.kernel.org
7334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007335F: include/linux/pkt_cls.h
7336F: include/net/pkt_cls.h
7337F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007338
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007339TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007340M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7341M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007342W: http://tcp-lp-mod.sourceforge.net/
7343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007344F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007345
Antti Palosaari91952bc2012-10-01 12:28:46 -03007346TDA10071 MEDIA DRIVER
7347M: Antti Palosaari <crope@iki.fi>
7348L: linux-media@vger.kernel.org
7349W: http://linuxtv.org/
7350W: http://palosaari.fi/linux/
7351Q: http://patchwork.linuxtv.org/project/linux-media/list/
7352T: git git://linuxtv.org/anttip/media_tree.git
7353S: Maintained
7354F: drivers/media/dvb-frontends/tda10071*
7355
7356TDA18212 MEDIA DRIVER
7357M: Antti Palosaari <crope@iki.fi>
7358L: linux-media@vger.kernel.org
7359W: http://linuxtv.org/
7360W: http://palosaari.fi/linux/
7361Q: http://patchwork.linuxtv.org/project/linux-media/list/
7362T: git git://linuxtv.org/anttip/media_tree.git
7363S: Maintained
7364F: drivers/media/tuners/tda18212*
7365
7366TDA18218 MEDIA DRIVER
7367M: Antti Palosaari <crope@iki.fi>
7368L: linux-media@vger.kernel.org
7369W: http://linuxtv.org/
7370W: http://palosaari.fi/linux/
7371Q: http://patchwork.linuxtv.org/project/linux-media/list/
7372T: git git://linuxtv.org/anttip/media_tree.git
7373S: Maintained
7374F: drivers/media/tuners/tda18218*
7375
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007376TDA18271 MEDIA DRIVER
7377M: Michael Krufky <mkrufky@linuxtv.org>
7378L: linux-media@vger.kernel.org
7379W: http://linuxtv.org/
7380W: http://github.com/mkrufky
7381Q: http://patchwork.linuxtv.org/project/linux-media/list/
7382T: git git://linuxtv.org/mkrufky/tuners.git
7383S: Maintained
7384F: drivers/media/tuners/tda18271*
7385
Michael Krufkye48307a2012-10-02 00:56:33 -03007386TDA827x MEDIA DRIVER
7387M: Michael Krufky <mkrufky@linuxtv.org>
7388L: linux-media@vger.kernel.org
7389W: http://linuxtv.org/
7390W: http://github.com/mkrufky
7391Q: http://patchwork.linuxtv.org/project/linux-media/list/
7392T: git git://linuxtv.org/mkrufky/tuners.git
7393S: Maintained
7394F: drivers/media/tuners/tda8290.*
7395
Michael Krufky66cf9212012-10-02 00:56:28 -03007396TDA8290 MEDIA DRIVER
7397M: Michael Krufky <mkrufky@linuxtv.org>
7398L: linux-media@vger.kernel.org
7399W: http://linuxtv.org/
7400W: http://github.com/mkrufky
7401Q: http://patchwork.linuxtv.org/project/linux-media/list/
7402T: git git://linuxtv.org/mkrufky/tuners.git
7403S: Maintained
7404F: drivers/media/tuners/tda8290.*
7405
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007406TEA5761 TUNER DRIVER
7407M: Mauro Carvalho Chehab <mchehab@redhat.com>
7408L: linux-media@vger.kernel.org
7409W: http://linuxtv.org
7410T: git git://linuxtv.org/media_tree.git
7411S: Odd fixes
7412F: drivers/media/tuners/tea5761.*
7413
7414TEA5767 TUNER DRIVER
7415M: Mauro Carvalho Chehab <mchehab@redhat.com>
7416L: linux-media@vger.kernel.org
7417W: http://linuxtv.org
7418T: git git://linuxtv.org/media_tree.git
7419S: Maintained
7420F: drivers/media/tuners/tea5767.*
7421
Jiri Pirko3d249d42011-11-11 22:16:48 +00007422TEAM DRIVER
7423M: Jiri Pirko <jpirko@redhat.com>
7424L: netdev@vger.kernel.org
7425S: Supported
7426F: drivers/net/team/
7427F: include/linux/if_team.h
7428
Sean Young40ad4a32012-11-19 10:32:53 -03007429TECHNOTREND USB IR RECEIVER
7430M: Sean Young <sean@mess.org>
7431L: linux-media@vger.kernel.org
7432S: Maintained
7433F: drivers/media/rc/ttusbir.c
7434
Erik Gilling84b94142010-06-09 15:35:53 -07007435TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007436M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007437L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007438Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7439T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007440S: Supported
7441F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007442F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007443F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007444
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007445TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007446M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007447L: netdev@vger.kernel.org
7448S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007449F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007450
Alan Cox4e688522008-04-30 00:52:11 -07007451Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007452M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007453S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007454F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007455
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007456TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007457M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007458M: Max Filippov <jcmvbkbc@gmail.com>
7459L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007461F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007462
Zhang Ruid3fb6952012-11-15 08:58:27 +08007463THERMAL
7464M: Zhang Rui <rui.zhang@intel.com>
7465L: linux-pm@vger.kernel.org
7466T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7467S: Supported
7468F: drivers/thermal/
7469F: include/linux/thermal.h
7470
Alan Cox4e688522008-04-30 00:52:11 -07007471THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007472M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007473L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05007474L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007475W: http://ibm-acpi.sourceforge.net
7476W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007477T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007479F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007480
Alex Dubov4020f2d2006-10-04 02:15:37 -07007481TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007482M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007484F: drivers/misc/tifm*
7485F: drivers/mmc/host/tifm_sd.c
7486F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007487
M R Swami Reddy152ad442012-04-02 20:02:31 +05307488TI LM49xxx FAMILY ASoC CODEC DRIVERS
7489M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307490M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307491L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7492S: Maintained
7493F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307494F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307495
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007496TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007497M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007498L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7499S: Maintained
7500F: sound/soc/codecs/twl4030*
7501
Luciano Coelho90921012011-11-20 21:40:41 +02007502TI WILINK WIRELESS DRIVERS
7503M: Luciano Coelho <coelho@ti.com>
7504L: linux-wireless@vger.kernel.org
7505W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7506W: http://wireless.kernel.org/en/users/Drivers/wl1251
7507T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7508S: Maintained
7509F: drivers/net/wireless/ti/
7510F: include/linux/wl12xx.h
7511
Per Lidene86eaa32006-01-12 16:45:18 +01007512TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007513M: Jon Maloy <jon.maloy@ericsson.com>
7514M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007515L: netdev@vger.kernel.org (core kernel code)
7516L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007517W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007519F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007520F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007521
Chris Metcalf867e3592010-05-28 23:09:12 -04007522TILE ARCHITECTURE
7523M: Chris Metcalf <cmetcalf@tilera.com>
7524W: http://www.tilera.com/scm/
7525S: Supported
7526F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007527F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007528F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007529F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007530
Linus Torvalds1da177e2005-04-16 15:20:36 -07007531TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007532M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007533L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007534W: http://sourceforge.net/projects/tlan/
7535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007536F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007537F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007538
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007539TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007540M: Kentaro Takeda <takedakn@nttdata.co.jp>
7541M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007542L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7543L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007544L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7545L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7546W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007547T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007549F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007550
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007551TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007552M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007553L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007554S: Maintained
7555F: drivers/platform/x86/topstar-laptop.c
7556
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05007558L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007559S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007560F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007561
7562TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007563M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007564L: tlinux-users@tce.toshiba-dme.co.jp
7565W: http://www.buzzard.org.uk/toshiba/
7566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007567F: drivers/char/toshiba.c
7568F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569
Pierre Ossmand719f902009-03-24 21:06:09 +01007570TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007571M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007572M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007573L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007574S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007575F: drivers/mmc/host/tmio_mmc*
7576F: drivers/mmc/host/sh_mobile_sdhi.c
7577F: include/linux/mmc/tmio.h
7578F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007579
Hugh Dickins98f32602009-05-21 20:33:58 +01007580TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007581M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007582L: linux-mm@kvack.org
7583S: Maintained
7584F: include/linux/shmem_fs.h
7585F: mm/shmem.c
7586
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02007587TM6000 VIDEO4LINUX DRIVER
7588M: Mauro Carvalho Chehab <mchehab@redhat.com>
7589L: linux-media@vger.kernel.org
7590W: http://linuxtv.org
7591T: git git://linuxtv.org/media_tree.git
7592S: Odd fixes
7593F: drivers/media/usb/tm6000/
7594
Alan Cox4e688522008-04-30 00:52:11 -07007595TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007596M: Kent Yoder <key@linux.vnet.ibm.com>
7597M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007598W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007599M: Marcel Selhorst <tpmdd@selhorst.net>
7600M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007601W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007602L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007604F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007605
Joe Perchesd6f005a2009-10-26 16:49:40 -07007606TRACING
7607M: Steven Rostedt <rostedt@goodmis.org>
7608M: Frederic Weisbecker <fweisbec@gmail.com>
7609M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007610T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007611S: Maintained
7612F: Documentation/trace/ftrace.txt
7613F: arch/*/*/*/ftrace.h
7614F: arch/*/kernel/ftrace.c
7615F: include/*/ftrace.h
7616F: include/linux/trace*.h
7617F: include/trace/
7618F: kernel/trace/
7619
Linus Torvalds1da177e2005-04-16 15:20:36 -07007620TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007621M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007622T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007623S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007624K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007625
Alan Cox4e688522008-04-30 00:52:11 -07007626TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007627M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7628S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007629T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007630F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007631F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007632F: include/linux/serial_core.h
7633F: include/linux/serial.h
7634F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007635
Antti Palosaari91952bc2012-10-01 12:28:46 -03007636TUA9001 MEDIA DRIVER
7637M: Antti Palosaari <crope@iki.fi>
7638L: linux-media@vger.kernel.org
7639W: http://linuxtv.org/
7640W: http://palosaari.fi/linux/
7641Q: http://patchwork.linuxtv.org/project/linux-media/list/
7642T: git git://linuxtv.org/anttip/media_tree.git
7643S: Maintained
7644F: drivers/media/tuners/tua9001*
7645
Grant Grundler740db6d2008-02-17 11:53:49 -07007646TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007647M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007648L: netdev@vger.kernel.org
7649S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007650F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007651
7652TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007653M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007654L: vtun@office.satix.net
7655W: http://vtun.sourceforge.net/tun
7656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007657F: Documentation/networking/tuntap.txt
7658F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007659
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007660TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007661M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007663F: drivers/tc/
7664F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007665
Linus Torvalds1da177e2005-04-16 15:20:36 -07007666U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007667M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007668L: linux-scsi@vger.kernel.org
7669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007670F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007671
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007672UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007673M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007674M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007675L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007676T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007677W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007679F: Documentation/filesystems/ubifs.txt
7680F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007681
Alan Coxcc2020e2008-05-19 14:21:51 +01007682UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007683M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007684W: http://www.uclinux.org/
7685L: uclinux-dev@uclinux.org (subscribers-only)
7686S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007687F: arch/m68k/*/*_no.*
7688F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007689
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007690UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007691M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007692W: http://uclinux-h8.sourceforge.jp/
7693S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007694F: arch/h8300/
7695F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007696F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007697
Linus Torvalds1da177e2005-04-16 15:20:36 -07007698UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007699M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007701F: Documentation/filesystems/udf.txt
7702F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007703
Alan Coxcc2020e2008-05-19 14:21:51 +01007704UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007705M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007707F: Documentation/filesystems/ufs.txt
7708F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007709
David Herrmann0a09d3a2012-06-10 15:16:28 +02007710UHID USERSPACE HID IO DRIVER:
7711M: David Herrmann <dh.herrmann@googlemail.com>
7712L: linux-input@vger.kernel.org
7713S: Maintained
7714F: drivers/hid/uhid.c
7715F: include/linux/uhid.h
7716
David Vrabel18332a82008-09-17 16:34:44 +01007717ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007718L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007719S: Orphan
David Vrabel355ffe692009-12-22 13:13:28 +00007720F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007721F: include/linux/uwb.h
7722F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007723
GuanXuetaob31d8272011-01-16 00:35:49 +08007724UNICORE32 ARCHITECTURE:
7725M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7726W: http://mprc.pku.edu.cn/~guanxuetao/linux
7727S: Maintained
7728T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7729F: arch/unicore32/
7730
Tony Finchd8379ab2009-11-27 15:50:30 +00007731UNIFDEF
7732M: Tony Finch <dot@dotat.at>
7733W: http://dotat.at/prog/unifdef
7734S: Maintained
7735F: scripts/unifdef.c
7736
Linus Torvalds1da177e2005-04-16 15:20:36 -07007737UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007738M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007739W: http://www.kernel.dk
7740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007741F: Documentation/cdrom/
7742F: drivers/cdrom/cdrom.c
7743F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007744
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307745UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7746M: Vinayak Holikatti <vinholikatti@gmail.com>
7747M: Santosh Y <santoshsy@gmail.com>
7748L: linux-scsi@vger.kernel.org
7749S: Supported
7750F: Documentation/scsi/ufs.txt
7751F: drivers/scsi/ufs/
7752
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007753UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007754M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007755W: http://www.linux-mtd.infradead.org/
7756L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007757T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007758S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007759F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007760F: include/linux/mtd/ubi.h
7761F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007762
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007763UNSORTED BLOCK IMAGES (UBI) Fastmap
7764M: Richard Weinberger <richard@nod.at>
7765L: linux-mtd@lists.infradead.org
7766S: Maintained
7767F: drivers/mtd/ubi/fastmap.c
7768
Linus Torvalds1da177e2005-04-16 15:20:36 -07007769USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007770M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007771L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007773F: Documentation/usb/acm.txt
7774F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007775
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007776USB ATTACHED SCSI
7777M: Matthew Wilcox <willy@linux.intel.com>
7778M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7779L: linux-usb@vger.kernel.org
7780L: linux-scsi@vger.kernel.org
7781S: Supported
7782F: drivers/usb/storage/uas.c
7783
Linus Torvalds1da177e2005-04-16 15:20:36 -07007784USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007785M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007786L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007787S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007788F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007789
Linus Torvalds1da177e2005-04-16 15:20:36 -07007790USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007791M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007792L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007794F: drivers/net/usb/cdc_*.c
7795F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007796
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007797USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007798M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007799L: linux-usb@vger.kernel.org
7800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007801F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007802
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007803USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007804M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007805L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007806W: http://www.linux-usb.org/usbnet
7807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007808F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007809
Alan Coxcc2020e2008-05-19 14:21:51 +01007810USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007811M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007812L: rio500-users@lists.sourceforge.net
7813W: http://rio500.sourceforge.net
7814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007815F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007816
Linus Torvalds1da177e2005-04-16 15:20:36 -07007817USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007818M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007819L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007821F: Documentation/usb/ehci.txt
7822F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007823
David Brownell69ae9e32006-11-14 02:03:31 -08007824USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007825M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007826L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007827W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007828T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007830F: drivers/usb/gadget/
7831F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007832
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007833USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007834M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007835L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007836T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007837S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007838F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007839F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007840
matt mooney857aab32011-06-17 15:50:46 -07007841USB/IP DRIVERS
7842M: Matt Mooney <mfm@muteddisk.com>
7843L: linux-usb@vger.kernel.org
7844S: Maintained
7845F: drivers/staging/usbip/
7846
Olav Kongas959eea22005-11-03 17:38:14 +02007847USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007848M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007849L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007851F: drivers/usb/host/isp116x*
7852F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007853
Linus Torvalds1da177e2005-04-16 15:20:36 -07007854USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007855M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007856L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007858F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007859
7860USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007861M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007862L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007863L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007864S: Maintained
7865W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007866F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007867
Clemens Ladischaf399172011-01-10 16:32:54 +01007868USB MIDI DRIVER
7869M: Clemens Ladisch <clemens@ladisch.de>
7870L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7871T: git git://git.alsa-project.org/alsa-kernel.git
7872S: Maintained
7873F: sound/usb/midi.*
7874
Linus Torvalds1da177e2005-04-16 15:20:36 -07007875USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007876M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007877L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007879F: Documentation/usb/ohci.txt
7880F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007881
Matthias Urlichsba460e42005-07-14 00:33:47 -07007882USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007883M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007884L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007886F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007887
Linus Torvalds1da177e2005-04-16 15:20:36 -07007888USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007889M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007890L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007891L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007892W: http://pegasus2.sourceforge.net/
7893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007894F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007895
Felipe Balbid3ad5582012-05-21 16:24:49 +03007896USB PHY LAYER
7897M: Felipe Balbi <balbi@ti.com>
7898L: linux-usb@vger.kernel.org
7899T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7900S: Maintained
7901F: drivers/usb/phy/
7902F: drivers/usb/otg/
7903
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007904USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007905M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007906L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007907S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007908F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007909
7910USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007911M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007912L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007913L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007914W: http://pegasus2.sourceforge.net/
7915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007916F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007917
Alan Cox4e688522008-04-30 00:52:11 -07007918USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007919M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007920L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007922F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007923
7924USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007925M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007926L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007927S: Maintained
7928W: http://geocities.com/i0xox0i
7929W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007930F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007931
Linus Torvalds1da177e2005-04-16 15:20:36 -07007932USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007933M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007934W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007936F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007937
7938USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007939M: Peter Berger <pberger@brimson.com>
7940M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007941L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007943F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007944
7945USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007946M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007947L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007948S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007949F: Documentation/usb/usb-serial.txt
7950F: drivers/usb/serial/generic.c
7951F: drivers/usb/serial/usb-serial.c
7952F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007953
Linus Torvalds1da177e2005-04-16 15:20:36 -07007954USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007955M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007956L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007958F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007959
7960USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007961M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007962L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007964F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007965
7966USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007967M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007968L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007969W: http://www.connecttech.com
7970S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007971F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007972
Steve Glendinningb3f0db12012-08-15 21:53:38 +00007973USB SMSC75XX ETHERNET DRIVER
7974M: Steve Glendinning <steve.glendinning@shawell.net>
7975L: netdev@vger.kernel.org
7976S: Maintained
7977F: drivers/net/usb/smsc75xx.*
7978
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007979USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007980M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007981L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007983F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007984
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007985USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007986M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007987L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007988L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007989T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007990W: http://www.linux-projects.org
7991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007992F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007993F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007994
7995USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007996M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007997L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007998W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007999T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008000S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008001F: Documentation/usb/
8002F: drivers/net/usb/
8003F: drivers/usb/
8004F: include/linux/usb.h
8005F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008006
8007USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008008M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008009L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008011F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008012
David Brownell69ae9e32006-11-14 02:03:31 -08008013USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008014M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008015L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008016W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008018F: drivers/net/usb/usbnet.c
8019F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008020
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008021USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008022M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008023L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008024L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008025T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008026W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008027S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008028F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008029F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008030
Laurent Pinchart8282da42012-10-04 02:32:42 +02008031USB WEBCAM GADGET
8032M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8033L: linux-usb@vger.kernel.org
8034S: Maintained
8035F: drivers/usb/gadget/*uvc*.c
8036F: drivers/usb/gadget/webcam.c
8037
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008038USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008039M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008040L: linux-wireless@vger.kernel.org
8041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008042F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008043
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008044USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008045M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008046L: linux-usb@vger.kernel.org
8047S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008048F: drivers/usb/host/xhci*
8049F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008050
Linus Torvalds1da177e2005-04-16 15:20:36 -07008051USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008052L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008053W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008054S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008055F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008056
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008057USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008058M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008059L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008060L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008061T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008062W: http://royale.zerezo.com/zr364xx/
8063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008064F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008065F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008066
Randy Dunlape7839f22008-10-12 16:11:45 -07008067USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008068M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008069M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008070L: user-mode-linux-devel@lists.sourceforge.net
8071L: user-mode-linux-user@lists.sourceforge.net
8072W: http://user-mode-linux.sourceforge.net
8073S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008074F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008075F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008076F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008077F: fs/hostfs/
8078F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008079
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008080USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008081M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008082M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008084F: Documentation/DocBook/uio-howto.tmpl
8085F: drivers/uio/
8086F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008087
Karel Zak256cccb2012-06-01 10:13:09 +02008088UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008089M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008090L: util-linux@vger.kernel.org
8091W: http://en.wikipedia.org/wiki/Util-linux
8092T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008093S: Maintained
8094
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008095UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008096M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008097L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008098W: http://dev.gentoo.org/~spock/projects/uvesafb/
8099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008100F: Documentation/fb/uvesafb.txt
8101F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008102
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008103VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008104M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008106F: Documentation/filesystems/vfat.txt
8107F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008108
Alex Williamsoncba33452012-07-31 08:16:22 -06008109VFIO DRIVER
8110M: Alex Williamson <alex.williamson@redhat.com>
8111L: kvm@vger.kernel.org
8112S: Maintained
8113F: Documentation/vfio.txt
8114F: drivers/vfio/
8115F: include/linux/vfio.h
8116
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008117VIDEOBUF2 FRAMEWORK
8118M: Pawel Osciak <pawel@osciak.com>
8119M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008120M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008121L: linux-media@vger.kernel.org
8122S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008123F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008124F: include/media/videobuf2-*
8125
Amit Shah9a824462010-03-23 18:23:09 +05308126VIRTIO CONSOLE DRIVER
8127M: Amit Shah <amit.shah@redhat.com>
8128L: virtualization@lists.linux-foundation.org
8129S: Maintained
8130F: drivers/char/virtio_console.c
8131F: include/linux/virtio_console.h
8132
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308133VIRTIO CORE, NET AND BLOCK DRIVERS
8134M: Rusty Russell <rusty@rustcorp.com.au>
8135M: "Michael S. Tsirkin" <mst@redhat.com>
8136L: virtualization@lists.linux-foundation.org
8137S: Maintained
8138F: drivers/virtio/
8139F: drivers/net/virtio_net.c
8140F: drivers/block/virtio_blk.c
8141F: include/linux/virtio_*.h
8142
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008143VIRTIO HOST (VHOST)
8144M: "Michael S. Tsirkin" <mst@redhat.com>
8145L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008146L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008147L: netdev@vger.kernel.org
8148S: Maintained
8149F: drivers/vhost/
8150F: include/linux/vhost.h
8151
Linus Torvalds1da177e2005-04-16 15:20:36 -07008152VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008153M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008154S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008155F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008156
Harald Weltef0bf7f62009-06-17 20:22:39 +02008157VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008158M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008159M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008160S: Maintained
8161F: drivers/mmc/host/via-sdmmc.c
8162
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008163VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008164M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008165L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008166S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008167F: include/linux/via-core.h
8168F: include/linux/via-gpio.h
8169F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008170F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008171
Francois Romieu01f20732007-01-26 00:57:17 -08008172VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008173M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008174L: netdev@vger.kernel.org
8175S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008176F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008177
Patrick McHardybe7f8272007-10-23 20:26:36 -07008178VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008179M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008180L: netdev@vger.kernel.org
8181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008182F: drivers/net/macvlan.c
8183F: include/linux/if_*vlan.h
8184F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008185
Florian Fainelli55e331c2009-06-16 15:33:53 -07008186VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008187M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008188L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008189S: Maintained
8190F: drivers/vlynq/vlynq.c
8191F: include/linux/vlynq.h
8192
Martyn Welch390beae2012-05-03 17:52:36 +01008193VME SUBSYSTEM
8194M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008195M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008196M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8197L: devel@driverdev.osuosl.org
8198S: Maintained
8199T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8200F: Documentation/vme_api.txt
8201F: drivers/staging/vme/
8202F: drivers/vme/
8203F: include/linux/vme*
8204
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008205VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008206M: Shreyas Bhatewara <sbhatewara@vmware.com>
8207M: "VMware, Inc." <pv-drivers@vmware.com>
8208L: netdev@vger.kernel.org
8209S: Maintained
8210F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008211
Alok Kataria851b1642009-10-13 14:51:05 -07008212VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008213M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008214M: VMware PV-Drivers <pv-drivers@vmware.com>
8215L: linux-scsi@vger.kernel.org
8216S: Maintained
8217F: drivers/scsi/vmw_pvscsi.c
8218F: drivers/scsi/vmw_pvscsi.h
8219
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008220VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008221M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008222M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008223W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008224W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008225T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008226S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008227F: drivers/regulator/
8228F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008229
Juerg Haefligerab413192006-09-24 20:54:04 +02008230VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008231M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008232L: lm-sensors@lm-sensors.org
8233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008234F: Documentation/hwmon/vt1211
8235F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008236
Roger Lucas1de9e372005-11-26 20:20:05 +01008237VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008238M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008239L: lm-sensors@lm-sensors.org
8240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008241F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008242
Tony Olech88095e72011-05-14 16:48:13 -04008243VUB300 USB to SDIO/SD/MMC bridge chip
8244M: Tony Olech <tony.olech@elandigitalsystems.com>
8245L: linux-mmc@vger.kernel.org
8246L: linux-usb@vger.kernel.org
8247S: Supported
8248F: drivers/mmc/host/vub300.c
8249
Linus Torvalds1da177e2005-04-16 15:20:36 -07008250W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008251M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008253F: Documentation/w1/
8254F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008255
Charles Spirakis13927072006-07-05 18:05:15 +02008256W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008257M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008258L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008260F: Documentation/hwmon/w83791d
8261F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008262
Rudolf Marek61db0112006-12-12 18:18:30 +01008263W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008264M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008265L: lm-sensors@lm-sensors.org
8266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008267F: Documentation/hwmon/w83793
8268F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008269
Jean Delvaree3760b42010-10-28 20:31:49 +02008270W83795 HARDWARE MONITORING DRIVER
8271M: Jean Delvare <khali@linux-fr.org>
8272L: lm-sensors@lm-sensors.org
8273S: Maintained
8274F: drivers/hwmon/w83795.c
8275
Linus Torvalds1da177e2005-04-16 15:20:36 -07008276W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008277M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008279F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008280
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008281WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008282M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008283L: linux-watchdog@vger.kernel.org
8284W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008285T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008287F: Documentation/watchdog/
8288F: drivers/watchdog/
8289F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008290
Linus Torvalds1da177e2005-04-16 15:20:36 -07008291WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008292M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008293L: linux-scsi@vger.kernel.org
8294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008295F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008296
David Herrmannb22e00f2011-09-06 13:50:40 +02008297WIIMOTE HID DRIVER
8298M: David Herrmann <dh.herrmann@googlemail.com>
8299L: linux-input@vger.kernel.org
8300S: Maintained
8301F: drivers/hid/hid-wiimote*
8302
David Härdemane258b802009-09-21 17:04:53 -07008303WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008304M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008305S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008306F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008307
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008308WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008309M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008310M: linux-wimax@intel.com
8311L: wimax@linuxwimax.org
8312S: Supported
8313W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008314F: Documentation/wimax/README.wimax
8315F: include/linux/wimax.h
8316F: include/linux/wimax/debug.h
8317F: include/net/wimax.h
8318F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008319
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008320WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008321M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008323F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008324
Linus Torvalds1da177e2005-04-16 15:20:36 -07008325WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008326M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008327L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008328W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008330F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008331
Mark Brownfebf1df2008-04-02 00:51:09 -04008332WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008333M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8334M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008335L: linux-input@vger.kernel.org
8336T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8337W: http://opensource.wolfsonmicro.com/node/7
8338S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008339F: drivers/input/touchscreen/*wm97*
8340F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008341
Mark Brown055bcbc2010-08-13 14:18:12 +01008342WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008343M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008344L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008345T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008346T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008347W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008348S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008349F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008350F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008351F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008352F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008353F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008354F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008355F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008356F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008357F: drivers/input/misc/wm831x-on.c
8358F: drivers/input/touchscreen/wm831x-ts.c
8359F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008360F: drivers/mfd/arizona*
8361F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008362F: drivers/power/wm83*.c
8363F: drivers/rtc/rtc-wm83*.c
8364F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008365F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008366F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008367F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008368F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008369F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008370F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008371F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008372F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008373F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008374F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008375
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008376WORKQUEUE
8377M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008378T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8379S: Maintained
8380F: include/linux/workqueue.h
8381F: kernel/workqueue.c
8382F: Documentation/workqueue.txt
8383
Linus Torvalds1da177e2005-04-16 15:20:36 -07008384X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008385M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008386L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008387S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008388F: Documentation/networking/x25*
8389F: include/net/x25*
8390F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008391
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008392X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008393M: Thomas Gleixner <tglx@linutronix.de>
8394M: Ingo Molnar <mingo@redhat.com>
8395M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008396M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008397T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008399F: Documentation/x86/
8400F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008401
Matthew Garrettd09448532010-02-11 10:40:13 -05008402X86 PLATFORM DRIVERS
8403M: Matthew Garrett <mjg@redhat.com>
8404L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008405T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -05008406S: Maintained
8407F: drivers/platform/x86
8408
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008409X86 MCE INFRASTRUCTURE
8410M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008411M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008412L: linux-edac@vger.kernel.org
8413S: Maintained
8414F: arch/x86/kernel/cpu/mcheck/*
8415
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008416XC2028/3028 TUNER DRIVER
8417M: Mauro Carvalho Chehab <mchehab@redhat.com>
8418L: linux-media@vger.kernel.org
8419W: http://linuxtv.org
8420T: git git://linuxtv.org/media_tree.git
8421S: Maintained
8422F: drivers/media/tuners/tuner-xc2028.*
8423
Ian Campbellc4468082011-04-27 15:26:46 -07008424XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008425M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008426M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008427L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8428L: virtualization@lists.linux-foundation.org
8429S: Supported
8430F: arch/x86/xen/
8431F: drivers/*/xen-*front.c
8432F: drivers/xen/
8433F: arch/x86/include/asm/xen/
8434F: include/xen/
8435
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008436XEN HYPERVISOR ARM
8437M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8438L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8439S: Supported
8440F: arch/arm/xen/
8441F: arch/arm/include/asm/xen/
8442
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008443XEN NETWORK BACKEND DRIVER
8444M: Ian Campbell <ian.campbell@citrix.com>
8445L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8446L: netdev@vger.kernel.org
8447S: Supported
8448F: drivers/net/xen-netback/*
8449
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008450XEN PCI SUBSYSTEM
8451M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008452L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008453S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008454F: arch/x86/pci/*xen*
8455F: drivers/pci/*xen*
8456
8457XEN SWIOTLB SUBSYSTEM
8458M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008459L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008460S: Supported
8461F: arch/x86/xen/*swiotlb*
8462F: drivers/xen/*swiotlb*
8463
Linus Torvalds1da177e2005-04-16 15:20:36 -07008464XFS FILESYSTEM
8465P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008466M: Ben Myers <bpm@sgi.com>
8467M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008468M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008469L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008470W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008471T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008472S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008473F: Documentation/filesystems/xfs.txt
8474F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008475
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008476XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008477M: Anirudha Sarangi <anirudh@xilinx.com>
8478M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008479S: Maintained
8480F: drivers/net/ethernet/xilinx/xilinx_axienet*
8481
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008482XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008483M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008484W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008486F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008487
Peter Korsgaard238b8722006-12-06 20:35:17 -08008488XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008489M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008490L: linux-serial@vger.kernel.org
8491S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008492F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008493
Linus Torvalds1da177e2005-04-16 15:20:36 -07008494YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008495M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008496L: linux-hams@vger.kernel.org
8497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008498F: drivers/net/hamradio/yam*
8499F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008500
Henkaf64a5e2005-10-12 15:02:56 +02008501YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008502M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008503L: usbb2k-api-dev@nongnu.org
8504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008505F: Documentation/input/yealink.txt
8506F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008507
Linus Torvalds1da177e2005-04-16 15:20:36 -07008508Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008509M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008510W: http://yaina.de/jreuter/
8511W: http://www.qsl.net/dl1bke/
8512L: linux-hams@vger.kernel.org
8513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008514F: Documentation/networking/z8530drv.txt
8515F: drivers/net/hamradio/*scc.c
8516F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008517
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008518ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008519M: Daniel Drake <dsd@gentoo.org>
8520M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008521W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008522L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008523L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008525F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008526
Linus Torvalds1da177e2005-04-16 15:20:36 -07008527ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008528L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008529L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008530W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008531T: Mercurial http://linuxtv.org/hg/v4l-dvb
8532S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008533F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008534
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008535ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008536M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008537S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008538F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008539
Linus Torvalds1da177e2005-04-16 15:20:36 -07008540THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008541M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008542L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008543Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008544T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008545S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008546F: *
8547F: */