blob: 59203e77ce9ef8f1a5639e2cad19a006b4e59696 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500225L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700226W: http://piie.net/?section=acerhdf
227S: Maintained
228F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200229
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230ACER WMI LAPTOP EXTRAS
Carlos Corbachod9269a72011-05-02 09:57:18 +0100231M: Joey Lee <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700237M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200238M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500239L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400240W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800241Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400242T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700244F: drivers/acpi/
245F: drivers/pnp/pnpacpi/
246F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700247F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248
Len Brown8b59a452007-01-08 19:03:28 -0500249ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500251L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300252W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700254F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700262
Len Brown359acec2007-02-10 01:59:24 -0500263ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500269
Carlos Corbachobff431e2008-02-05 02:17:04 +0000270ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500271L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700273F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100275AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700276M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200277W: http://wiki.parisc-linux.org/AD1889
278L: linux-parisc@vger.kernel.org
279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700280F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
283M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100284L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700285W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000286S: Supported
287F: drivers/misc/ad525x_dpot.c
288
289AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/regulator/ad5398.c
295
296AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/input/misc/ad714x.c
302
303AD7877 TOUCHSCREEN DRIVER
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/touchscreen/ad7877.c
309
310AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7879.c
316
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700317ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
318M: Jiri Kosina <jkosina@suse.cz>
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200323L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/hwmon/adm1025
326F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330L: lm-sensors@lm-sensors.org
331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333
Michael Wucc0b88c2007-08-31 01:15:25 -0400334ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400335L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200336W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400339
Michael Hennerich527a1a82010-10-28 11:31:28 +0000340ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
341M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100342L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700343W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000344S: Supported
345F: drivers/mfd/adp5520.c
346F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700347F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800348F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000349F: drivers/input/keyboard/adp5520-keys.c
350
351ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
352M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100353L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700354W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000355S: Supported
356F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800357F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000358
359ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
360M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100361L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700362W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000363S: Supported
364F: drivers/video/backlight/adp8860_bl.c
365
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100366ADS1015 HARDWARE MONITOR DRIVER
367M: Dirk Eibach <eibach@gdsys.de>
368L: lm-sensors@lm-sensors.org
369S: Maintained
370F: Documentation/hwmon/ads1015
371F: drivers/hwmon/ads1015.c
372F: include/linux/i2c/ads1015.h
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700375M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700377F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Jean Delvareb058b852009-12-09 20:36:08 +0100379ADT7475 HARDWARE MONITOR DRIVER
380M: Jean Delvare <khali@linux-fr.org>
381L: lm-sensors@lm-sensors.org
382S: Maintained
383F: Documentation/hwmon/adt7475
384F: drivers/hwmon/adt7475.c
385
Michael Hennerich527a1a82010-10-28 11:31:28 +0000386ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
387M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100388L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700389W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000390S: Supported
391F: drivers/input/misc/adxl34x.c
392
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400393ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700394M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400395L: linux-scsi@vger.kernel.org
396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700397F: Documentation/scsi/advansys.txt
398F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700403F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Antti Palosaari91952bc2012-10-01 12:28:46 -0300405AF9013 MEDIA DRIVER
406M: Antti Palosaari <crope@iki.fi>
407L: linux-media@vger.kernel.org
408W: http://linuxtv.org/
409W: http://palosaari.fi/linux/
410Q: http://patchwork.linuxtv.org/project/linux-media/list/
411T: git git://linuxtv.org/anttip/media_tree.git
412S: Maintained
413F: drivers/media/dvb-frontends/af9013*
414
415AF9033 MEDIA DRIVER
416M: Antti Palosaari <crope@iki.fi>
417L: linux-media@vger.kernel.org
418W: http://linuxtv.org/
419W: http://palosaari.fi/linux/
420Q: http://patchwork.linuxtv.org/project/linux-media/list/
421T: git git://linuxtv.org/anttip/media_tree.git
422S: Maintained
423F: drivers/media/dvb-frontends/af9033*
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200426L: linux-fsdevel@vger.kernel.org
427S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700428F: Documentation/filesystems/affs.txt
429F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700431AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700432M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700433L: linux-afs@lists.infradead.org
434S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700435F: fs/afs/
436F: include/net/af_rxrpc.h
437F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700440M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700441T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700443F: drivers/char/agp/
444F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448L: linux-scsi@vger.kernel.org
449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/scsi/aha152x*
451F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Hannes Reinecke64624d42007-10-19 10:32:29 +0200453AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200455L: linux-scsi@vger.kernel.org
456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/scsi/aic7xxx/
458F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200459
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700460AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700461M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700462L: linux-aio@kvack.org
463S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700464F: fs/aio.c
465F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700468M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700469L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470W: http://www.linux-usb.org/SpeedTouch/
471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700472F: drivers/usb/atm/speedtch.c
473F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Pierre Ossman272f1332007-05-14 21:25:26 +0200475ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700476M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700478F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200479
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000480ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700481M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100482L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700484F: Documentation/i2c/busses/i2c-ali1563
485F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700488M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700489M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500490M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700491S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700492L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700493F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Tobias Klauseradf92512011-02-09 10:58:29 +0100495ALTERA UART/JTAG UART SERIAL DRIVERS
496M: Tobias Klauser <tklauser@distanz.ch>
497L: linux-serial@vger.kernel.org
498L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
499S: Maintained
500F: drivers/tty/serial/altera_uart.c
501F: drivers/tty/serial/altera_jtaguart.c
502F: include/linux/altera_uart.h
503F: include/linux/altera_jtaguart.h
504
Andreas Herrmann512d1022011-05-25 20:43:31 +0200505AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100506M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200507L: lm-sensors@lm-sensors.org
508S: Maintained
509F: Documentation/hwmon/fam15h_power
510F: drivers/hwmon/fam15h_power.c
511
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700512AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700513M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700514L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700516F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700517
Jordan Crousef90b8112006-01-06 00:12:14 -0800518AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800519P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700520L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800521W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/char/hw_random/geode-rng.c
524F: drivers/crypto/geode*
525F: drivers/video/geode/
526F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800527
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200528AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700529M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200530L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100531T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200532S: Supported
Joe Perchesb2c16392011-12-08 20:21:40 -0800533F: drivers/iommu/amd_iommu*.[ch]
534F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200535
Peter Orubae7f5b302008-07-28 18:44:11 +0200536AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700537M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700538L: amd64-microcode@amd64.org
539S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700540F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200541
Stelian Pop284f42b2006-12-12 18:18:31 +0100542AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700543M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100544S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200545F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100546
Tom Tuckerf94b5332006-09-22 15:22:48 -0700547AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700548M: Tom Tucker <tom@opengridcomputing.com>
549M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700550L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700552F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700553
Michael Hennerich527a1a82010-10-28 11:31:28 +0000554ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200555M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100556L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000557L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700558W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000559S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100560F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200561F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000562F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000563F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100564F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000565
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400566ANALOG DEVICES INC ASOC DRIVERS
567L: uclinux-dist-devel@blackfin.uclinux.org
568L: alsa-devel@alsa-project.org (moderated for non-subscribers)
569W: http://blackfin.uclinux.org/
570S: Supported
571F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400572
Johannes Berg42269062006-07-25 16:15:50 +0200573AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700574M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000575L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700576L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700578F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200581M: Jiri Kosina <jkosina@suse.cz>
582S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700583F: arch/x86/kernel/apm_32.c
584F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200585F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700587APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700588M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700589L: linux-input@vger.kernel.org
590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700591F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700592
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700593APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200594M: Henrik Rydberg <rydberg@euromail.se>
595L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700597F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700600M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700602F: drivers/net/appletalk/
603F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Viresh Kumara4801672011-02-22 15:46:07 +0530605ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700606M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530607L: linux-ide@vger.kernel.org
608S: Maintained
609F: include/linux/pata_arasan_cf_data.h
610F: drivers/ata/pata_arasan_cf.c
611
Jaya Kumar1154ea72005-06-21 17:17:04 -0700612ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700613M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700615F: drivers/video/arcfb.c
616F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700619M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700621F: arch/arm/lib/floppydma.S
622F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Will Deacon6f965212011-07-01 14:38:53 +0100624ARM PMU PROFILING AND DEBUGGING
625M: Will Deacon <will.deacon@arm.com>
626S: Maintained
627F: arch/arm/kernel/perf_event*
628F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100629F: arch/arm/include/asm/pmu.h
630F: arch/arm/kernel/hw_breakpoint.c
631F: arch/arm/include/asm/hw_breakpoint.h
632
Russell Kingd4275352009-04-16 14:05:27 +0100633ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700634M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700635L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100636W: http://www.arm.linux.org.uk/
637S: Maintained
638F: arch/arm/
639
Stephen Boydd323c2432012-10-24 11:00:29 -0700640ARM SUB-ARCHITECTURES
641L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
642S: MAINTAINED
643F: arch/arm/mach-*/
644F: arch/arm/plat-*/
645T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
646
Russell Kingcefbf4e2009-11-22 17:40:28 +0000647ARM PRIMECELL AACI PL041 DRIVER
648M: Russell King <linux@arm.linux.org.uk>
649S: Maintained
650F: sound/arm/aaci.*
651
652ARM PRIMECELL CLCD PL110 DRIVER
653M: Russell King <linux@arm.linux.org.uk>
654S: Maintained
655F: drivers/video/amba-clcd.*
656
657ARM PRIMECELL KMI PL050 DRIVER
658M: Russell King <linux@arm.linux.org.uk>
659S: Maintained
660F: drivers/input/serio/ambakmi.*
661F: include/linux/amba/kmi.h
662
Russell King2761f5c2007-05-24 06:56:08 +0200663ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200664S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700665F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200666
Russell Kingcefbf4e2009-11-22 17:40:28 +0000667ARM PRIMECELL BUS SUPPORT
668M: Russell King <linux@arm.linux.org.uk>
669S: Maintained
670F: drivers/amba/
671F: include/linux/amba/bus.h
672
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800673ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700674M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700675L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800676S: Maintained
677
Sergey Lapin9c784f92008-08-03 02:29:48 +0100678ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700679M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700680L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100681S: Maintained
682
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700684M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700685L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800686S: Maintained
687
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800688ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700689M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800690M: Nicolas Ferre <nicolas.ferre@atmel.com>
691M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700692L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200693W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800694W: http://www.linux4sam.org
695S: Supported
696F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100697
Rob Herring986cf2e2011-06-22 11:28:53 -0500698ARM/CALXEDA HIGHBANK ARCHITECTURE
699M: Rob Herring <rob.herring@calxeda.com>
700L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
701S: Maintained
702F: arch/arm/mach-highbank/
703
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300704ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
705M: Anton Vorontsov <avorontsov@mvista.com>
706S: Maintained
707F: arch/arm/mach-cns3xxx/
708T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
709
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800710ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100711M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000712M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700713L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800714S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100715F: arch/arm/mach-ep93xx/
716F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800717
718ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700719M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700720L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800721S: Maintained
722
Russell Kingd4275352009-04-16 14:05:27 +0100723ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700724M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700725L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700726S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100727F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700728F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100729
Mike Rapoportd48134e2008-08-20 09:03:26 +0100730ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700731M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100733S: Maintained
734
Hubert Feurstein94150092009-10-07 08:36:07 +0100735ARM/CONTEC MICRO9 MACHINE SUPPORT
736M: Hubert Feurstein <hubert.feurstein@contec.at>
737S: Maintained
738F: arch/arm/mach-ep93xx/micro9.c
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700741M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742S: Maintained
743
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200744ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100745M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700746L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100747T: git git://git.berlios.de/gemini-board
748S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300749F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200750
Barry Songa990cbd2011-07-12 21:44:10 +0800751ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
752M: Barry Song <baohua.song@csr.com>
753L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
754S: Maintained
755F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800756F: drivers/dma/sirf-dma.c
757F: drivers/i2c/busses/i2c-sirf.c
758F: drivers/pinctrl/pinctrl-sirf.c
759F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800760
Russell Kingd4275352009-04-16 14:05:27 +0100761ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700762M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700763L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100764W: http://www.arm.linux.org.uk/
765S: Maintained
766F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700767F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100768
Russell Kinga9da4f72008-07-12 21:42:04 +0100769ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700770M: Daniel Ribeiro <drwyrm@gmail.com>
771M: Stefan Schmidt <stefan@openezx.org>
772M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200773L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100774W: http://www.openezx.org/
775S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200776T: topgit git://git.openezx.org/openezx.git
777F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100778
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200779ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100780M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700781L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100782S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700783T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300784F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200785
Russell Kingd4275352009-04-16 14:05:27 +0100786ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700787M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700788L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100789W: http://www.arm.linux.org.uk/
790S: Maintained
791F: arch/arm/include/asm/hardware/dec21285.h
792F: arch/arm/mach-footbridge/
793
Sascha Hauer86183a52008-07-24 23:50:35 +0200794ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700795M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700796L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200797S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700798T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100799F: arch/arm/mach-imx/
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100800F: arch/arm/plat-mxc/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700801F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200802
Shawn Guo8bcb9762011-10-07 22:24:18 +0800803ARM/FREESCALE IMX6
804M: Shawn Guo <shawn.guo@linaro.org>
805L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
806S: Maintained
807T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
808F: arch/arm/mach-imx/*imx6*
809
Shawn Guoa9866a092011-10-21 11:53:34 +0800810ARM/FREESCALE MXS ARM ARCHITECTURE
811M: Shawn Guo <shawn.guo@linaro.org>
812L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
813S: Maintained
814T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
815F: arch/arm/mach-mxs/
816
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800817ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700818M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700819L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800820S: Maintained
821
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100822ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700823M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700824L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100825S: Maintained
826
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200827ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700828M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100829M: Paul Parsons <lost.distance@yahoo.com>
830L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200831S: Maintained
832F: arch/arm/mach-pxa/hx4700.c
833F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100834F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200835
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100836ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700837M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200838W: www.jlime.com
839S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700840T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
841F: arch/arm/mach-sa1100/jornada720.c
842F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100843
Marek Vasut403d2972010-05-22 00:29:39 +0200844ARM/INCOME PXA270 SUPPORT
845M: Marek Vasut <marek.vasut@gmail.com>
846L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
847S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700848F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200849
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800850ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700851M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700852M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700853L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700854S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100855
856ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700857M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700858L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700859S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800860
861ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700862M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700863M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700864L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700865S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800866
867ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700868M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700869M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700870L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700871S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800872
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800873ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700874M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700875L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800876S: Maintained
877
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200878ARM/INTEL IXP4XX ARM ARCHITECTURE
879M: Imre Kaloz <kaloz@openwrt.org>
880M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100881L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200882S: Maintained
883F: arch/arm/mach-ixp4xx/
884
Joe Perches838553c2010-10-26 14:22:59 -0700885ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100886M: Jonathan Cameron <jic23@cam.ac.uk>
887L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
888S: Maintained
889F: arch/arm/mach-pxa/stargate2.c
890F: drivers/pcmcia/pxa2xx_stargate2.c
891
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800892ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700893M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700894M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700895L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700896S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800897
898ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700899M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800901S: Maintained
902
903ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700904M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700905L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800906S: Maintained
907
Philipp Zabel3b8861712008-07-09 21:27:15 +0100908ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700909M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100910S: Maintained
911
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200912ARM/Marvell Armada 370 and Armada XP SOC support
913M: Jason Cooper <jason@lakedaemon.net>
914M: Andrew Lunn <andrew@lunn.ch>
915M: Gregory Clement <gregory.clement@free-electrons.com>
916L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
917S: Maintained
918F: arch/arm/mach-mvebu/
919
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400920ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
921M: Jason Cooper <jason@lakedaemon.net>
922M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700923L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400924S: Maintained
925F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400926F: arch/arm/mach-kirkwood/
927F: arch/arm/mach-mv78xx0/
928F: arch/arm/mach-orion5x/
929F: arch/arm/plat-orion/
930
Alexander Clouterd69ac132011-04-14 15:22:02 -0700931ARM/Orion SoC/Technologic Systems TS-78xx platform support
932M: Alexander Clouter <alex@digriz.org.uk>
933L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
934W: http://www.digriz.org.uk/ts78xx/kernel
935S: Maintained
936F: arch/arm/mach-orion5x/ts78xx-*
937
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000938ARM/MICREL KS8695 ARCHITECTURE
939M: Greg Ungerer <gerg@uclinux.org>
940L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
941F: arch/arm/mach-ks8695
942S: Odd Fixes
943
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200944ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700945M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700946L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200947F: arch/arm/mach-pxa/mioa701.c
948S: Maintained
949
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100950ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700951M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100952S: Maintained
953
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100954ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700955M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200956M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700957M: STEricsson <STEricsson_nomadik_linux@list.st.com>
958L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
959S: Maintained
960F: arch/arm/mach-nomadik/
961F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100962F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200963T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100964
Andy Green9d762952009-05-19 06:41:42 -0300965ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700966M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300967L: openmoko-kernel@lists.openmoko.org (subscribers-only)
968W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
969S: Supported
970
Daniel Walker0c19d212009-12-07 16:53:51 -0800971ARM/QUALCOMM MSM MACHINE SUPPORT
972M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800973M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800974M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800975L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800976F: arch/arm/mach-msm/
977F: drivers/video/msm/
978F: drivers/mmc/host/msm_sdcc.c
979F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800980F: drivers/tty/serial/msm_serial.h
981F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -0700982F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -0700983F: drivers/*/pm8???-*
984F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -0800985T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -0800986S: Maintained
987
Dirk Opfer8459c152005-11-06 14:27:52 +0000988ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700989M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
990M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000991S: Maintained
992
Marek Vasut5d783a22009-07-16 13:26:48 +0200993ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700994M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200995L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100996W: http://hackndev.com
997S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700998F: arch/arm/mach-pxa/include/mach/palmtx.h
999F: arch/arm/mach-pxa/palmtx.c
1000F: arch/arm/mach-pxa/include/mach/palmt5.h
1001F: arch/arm/mach-pxa/palmt5.c
1002F: arch/arm/mach-pxa/include/mach/palmld.h
1003F: arch/arm/mach-pxa/palmld.c
1004F: arch/arm/mach-pxa/include/mach/palmte2.h
1005F: arch/arm/mach-pxa/palmte2.c
1006F: arch/arm/mach-pxa/include/mach/palmtc.h
1007F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001008
Joe Perchesb57fe922009-12-14 18:00:52 -08001009ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001010M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001011L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001012W: http://hackndev.com
1013S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001014F: arch/arm/mach-pxa/include/mach/palmtreo.h
1015F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001016
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001017ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001018M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001019L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001020W: http://hackndev.com
1021S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001022F: arch/arm/mach-pxa/include/mach/palmz72.h
1023F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001026M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1028S: Maintained
1029
1030ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001031M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001032L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033W: http://www.arm.linux.org.uk/
1034S: Maintained
1035
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001036ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001037M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001038L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001039S: Maintained
1040
Russell Kingd4275352009-04-16 14:05:27 +01001041ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001042M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001043L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001044W: http://www.arm.linux.org.uk/
1045S: Maintained
1046F: arch/arm/common/time-acorn.c
1047F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1048F: arch/arm/include/asm/hardware/ioc.h
1049F: arch/arm/include/asm/hardware/iomd.h
1050F: arch/arm/include/asm/hardware/memc.h
1051F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001052F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001053F: drivers/net/ethernet/i825xx/ether1*
1054F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001055F: drivers/scsi/arm/
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001058M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059W: http://www.shark-linux.de/shark.html
1060S: Maintained
1061
Ben Dooksb21477f2009-06-13 10:46:34 +01001062ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001063M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001064M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001065L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001066L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001067W: http://www.fluff.org/ben/linux/
1068S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001069F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001070F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001071F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001072F: arch/arm/mach-s3c24*/
1073F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001074F: drivers/*/*s3c2410*
1075F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001076F: drivers/spi/spi-s3c*
1077F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001079ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001080M: Kukjin Kim <kgene.kim@samsung.com>
1081L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1082L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1083S: Maintained
1084F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001085F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001086
Kyungmin Park10ffa962011-03-04 17:36:26 -08001087ARM/SAMSUNG MOBILE MACHINE SUPPORT
1088M: Kyungmin Park <kyungmin.park@samsung.com>
1089L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090S: Maintained
1091F: arch/arm/mach-s5pv210/mach-aquila.c
1092F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001093F: arch/arm/mach-exynos/mach-universal_c210.c
1094F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001095
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001096ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1097M: Kyungmin Park <kyungmin.park@samsung.com>
1098M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1099L: linux-arm-kernel@lists.infradead.org
1100L: linux-media@vger.kernel.org
1101S: Maintained
1102F: arch/arm/plat-s5p/dev-fimc*
1103F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001104F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001105
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001106ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1107M: Kyungmin Park <kyungmin.park@samsung.com>
1108M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001109M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001110L: linux-arm-kernel@lists.infradead.org
1111L: linux-media@vger.kernel.org
1112S: Maintained
1113F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001114F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001115
1116ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1117M: Kyungmin Park <kyungmin.park@samsung.com>
1118M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1119L: linux-arm-kernel@lists.infradead.org
1120L: linux-media@vger.kernel.org
1121S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001122F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001123
Paul Mundtd48d38e2010-02-08 12:50:24 +09001124ARM/SHMOBILE ARM ARCHITECTURE
1125M: Paul Mundt <lethal@linux-sh.org>
1126M: Magnus Damm <magnus.damm@gmail.com>
1127L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001128W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001129Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001130T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001131S: Supported
1132F: arch/arm/mach-shmobile/
1133F: drivers/sh/
1134
Dinh Nguyen66314222012-07-18 16:07:18 -06001135ARM/SOCFPGA ARCHITECTURE
1136M: Dinh Nguyen <dinguyen@altera.com>
1137S: Maintained
1138F: arch/arm/mach-socfpga/
1139
1140ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1141M: Dinh Nguyen <dinguyen@altera.com>
1142S: Maintained
1143F: drivers/clk/socfpga/
1144
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001145ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001146M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001147L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001148S: Maintained
1149
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001150ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001151M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001152L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1153S: Maintained
1154
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001155ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001156M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001157L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001158S: Maintained
1159
wanzongshun98ad6e32009-02-13 06:04:32 +01001160ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001161M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001162L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001163W: http://www.mcuos.com
1164S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001165F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001166F: drivers/input/keyboard/w90p910_keypad.c
1167F: drivers/input/touchscreen/w90p910_ts.c
1168F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001169F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001170F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001171F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001172F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001173F: drivers/usb/host/ehci-w90x900.c
1174F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001175
Linus Walleij54274d72010-04-04 10:58:03 +01001176ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001177M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001178L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179S: Supported
1180F: arch/arm/mach-u300/
1181F: drivers/i2c/busses/i2c-stu300.c
1182F: drivers/rtc/rtc-coh901331.c
1183F: drivers/watchdog/coh901327_wdt.c
1184F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001185F: drivers/mfd/ab3100*
1186F: drivers/rtc/rtc-ab3100.c
1187F: drivers/rtc/rtc-coh901331.c
1188T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001189
Linus Walleij87572882010-12-22 09:18:29 +01001190ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001191M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001192M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001193L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1194S: Maintained
1195F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001196F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001197F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001198F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001199F: drivers/mfd/abx500*
1200F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001201F: drivers/mfd/dbx500*
1202F: drivers/mfd/db8500*
1203F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001204F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001205F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001206T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001207
Russell Kingd4275352009-04-16 14:05:27 +01001208ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001209M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001210L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001211W: http://www.arm.linux.org.uk/
1212S: Maintained
1213F: arch/arm/vfp/
1214
Marek Vasute66b6d82010-03-26 06:51:32 +01001215ARM/VOIPAC PXA270 SUPPORT
1216M: Marek Vasut <marek.vasut@gmail.com>
1217L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1218S: Maintained
1219F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001220F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001221
Tony Prisk04529fe2012-07-24 04:19:37 +12001222ARM/VT8500 ARM ARCHITECTURE
1223M: Tony Prisk <linux@prisktech.co.nz>
1224L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1225S: Maintained
1226F: arch/arm/mach-vt8500/
1227F: drivers/video/vt8500lcdfb.*
1228F: drivers/video/wm8505fb*
1229F: drivers/video/wmt_ge_rops.*
1230F: drivers/tty/serial/vt8500_serial.c
1231F: drivers/rtc/rtc-vt8500-c
1232
Marek Vasute66b6d82010-03-26 06:51:32 +01001233ARM/ZIPIT Z2 SUPPORT
1234M: Marek Vasut <marek.vasut@gmail.com>
1235L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1236S: Maintained
1237F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001238F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001239
Catalin Marinas38074222012-03-05 11:49:34 +00001240ARM64 PORT (AARCH64 ARCHITECTURE)
1241M: Catalin Marinas <catalin.marinas@arm.com>
1242L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1243S: Maintained
1244F: arch/arm64/
1245
George Josephd58de032010-03-05 22:17:25 +01001246ASC7621 HARDWARE MONITOR DRIVER
1247M: George Joseph <george.joseph@fairview5.com>
1248L: lm-sensors@lm-sensors.org
1249S: Maintained
1250F: Documentation/hwmon/asc7621
1251F: drivers/hwmon/asc7621.c
1252
Corentin Charyb229ece2011-02-26 10:20:40 +01001253ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001254M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001256L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001257W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001259F: drivers/platform/x86/asus*.c
1260F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001262ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001263M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001264L: lm-sensors@lm-sensors.org
1265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001266F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001267
Andrew Morton953a6472008-11-06 12:53:28 -08001268ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001269M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001270W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001272F: Documentation/crypto/async-tx-api.txt
1273F: crypto/async_tx/
1274F: drivers/dma/
1275F: include/linux/dmaengine.h
1276F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001277
Wolfram Sanga1867d32009-09-18 22:45:51 +02001278AT24 EEPROM DRIVER
1279M: Wolfram Sang <w.sang@pengutronix.de>
1280L: linux-i2c@vger.kernel.org
1281S: Maintained
1282F: drivers/misc/eeprom/at24.c
1283F: include/linux/i2c/at24.h
1284
Randy Dunlape7839f22008-10-12 16:11:45 -07001285ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001286M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001287W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001289F: Documentation/aoe/
1290F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Joe Perches9a10a872010-12-01 09:37:55 -08001292ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001293M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001294L: linux-wireless@vger.kernel.org
1295S: Supported
1296F: drivers/net/wireless/ath/*
1297
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001298ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001299M: Jiri Slaby <jirislaby@gmail.com>
1300M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001301M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001302L: linux-wireless@vger.kernel.org
1303L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001304W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001305S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001306F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001307
Kalle Valo12e62d62011-09-13 10:21:25 +03001308ATHEROS ATH6KL WIRELESS DRIVER
1309M: Kalle Valo <kvalo@qca.qualcomm.com>
1310L: linux-wireless@vger.kernel.org
1311W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1312T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1313S: Supported
1314F: drivers/net/wireless/ath/ath6kl/
1315
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001316ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001317M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1318M: Jouni Malinen <jouni@qca.qualcomm.com>
1319M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1320M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001321L: linux-wireless@vger.kernel.org
1322L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001323W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001324S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001325F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001326
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001327CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1328M: Christian Lamparter <chunkeey@googlemail.com>
1329L: linux-wireless@vger.kernel.org
1330W: http://wireless.kernel.org/en/users/Drivers/carl9170
1331S: Maintained
1332F: drivers/net/wireless/ath/carl9170/
1333
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001334ATK0110 HWMON DRIVER
1335M: Luca Tettamanti <kronos.it@gmail.com>
1336L: lm-sensors@lm-sensors.org
1337S: Maintained
1338F: drivers/hwmon/asus_atk0110.c
1339
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001340ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001341M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001343F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001344
Chris Snook7ae115b2008-09-09 03:26:57 -04001345ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001346M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001347M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001348L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001349W: http://sourceforge.net/projects/atl1
1350W: http://atl1.sourceforge.net
1351S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001352F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001355M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001356L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001357L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358W: http://linux-atm.sourceforge.net
1359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001360F: drivers/atm/
1361F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Pierre Ossman272f1332007-05-14 21:25:26 +02001363ATMEL AT91 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001364M: Ludovic Desroches <ludovic.desroches@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001365L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001366W: http://www.atmel.com/products/AT91/
1367W: http://www.at91.com/
1368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001369F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001370
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001371ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001372M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001373S: Maintained
1374F: drivers/mmc/host/atmel-mci.c
1375F: drivers/mmc/host/atmel-mci-regs.h
1376
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001377ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001378M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001379S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001380F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001381
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001382ATMEL DMA DRIVER
1383M: Nicolas Ferre <nicolas.ferre@atmel.com>
1384L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1385S: Supported
1386F: drivers/dma/at_hdmac.c
1387F: drivers/dma/at_hdmac_regs.h
1388F: arch/arm/mach-at91/include/mach/at_hdmac.h
1389
Josh Wu15515542012-03-23 17:56:29 +08001390ATMEL ISI DRIVER
1391M: Josh Wu <josh.wu@atmel.com>
1392L: linux-media@vger.kernel.org
1393S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001394F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001395F: include/media/atmel-isi.h
1396
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001397ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001398M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001399L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001401F: drivers/video/atmel_lcdfb.c
1402F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001403
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001404ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001405M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001406S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001407F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001408
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001409ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001410M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001411S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001412F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001413
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001414ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1415M: Nicolas Ferre <nicolas.ferre@atmel.com>
1416L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1417S: Supported
1418F: drivers/misc/atmel_tclib.c
1419F: drivers/clocksource/tcb_clksrc.c
1420
Josh Wuff2675d2012-03-23 17:56:55 +08001421ATMEL TSADCC DRIVER
1422M: Josh Wu <josh.wu@atmel.com>
1423L: linux-input@vger.kernel.org
1424S: Supported
1425F: drivers/input/touchscreen/atmel_tsadcc.c
1426
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001427ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001428M: Nicolas Ferre <nicolas.ferre@atmel.com>
1429L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001430S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001431F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001434M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001435L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436W: http://www.thekelleys.org.uk/atmel
1437W: http://atmelwlandriver.sourceforge.net/
1438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001439F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Chris Wrighta92b7b82005-07-07 18:12:23 -07001441AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001442M: Al Viro <viro@zeniv.linux.org.uk>
1443M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001444L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001445W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001446T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001448F: include/linux/audit.h
1449F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001450
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001451AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001452M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001453W: http://miguelojeda.es/auxdisplay.htm
1454W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001456F: drivers/auxdisplay/
1457F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001458
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001459AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001460M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1461M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001462W: http://www.atmel.com/products/AVR32/
1463W: http://avr32linux.org/
1464W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001466F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001467
1468AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001469M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1470M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001472F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001475M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001477W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001479F: include/linux/ax25.h
1480F: include/net/ax25.h
1481F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001483B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001484M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001485L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001486L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001487W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001489F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001490
1491B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001492M: Larry Finger <Larry.Finger@lwfinger.net>
1493M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001494L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001495L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001496W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001498F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001499
Richard Purdie300abeb2007-02-07 22:21:07 +00001500BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001501M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001503F: drivers/video/backlight/
1504F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001505
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001506BATMAN ADVANCED
1507M: Marek Lindner <lindner_marek@yahoo.de>
1508M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001509M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001510L: b.a.t.m.a.n@lists.open-mesh.org
1511W: http://www.open-mesh.org/
1512S: Maintained
1513F: net/batman-adv/
1514
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001515BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001516M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001517L: linux-hams@vger.kernel.org
1518W: http://www.baycom.org/~tom/ham/ham.html
1519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001520F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001521
1522BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001523S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001524F: Documentation/filesystems/befs.txt
1525F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001526
1527BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001528M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001530F: Documentation/filesystems/bfs.txt
1531F: fs/bfs/
1532F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001533
Bryan Wu1394f032007-05-06 14:50:22 -07001534BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001535M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001536L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001537W: http://blackfin.uclinux.org
1538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001539F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001540
Bryan Wue190d6b2007-07-17 14:43:44 +08001541BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001542L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001543W: http://blackfin.uclinux.org
1544S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001545F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001546
Mike Frysinger566da5b2007-06-11 15:31:30 +08001547BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001548M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001549L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001550W: http://blackfin.uclinux.org
1551S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001552F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001553
Mike Frysinger936ed492010-03-10 15:20:38 -08001554BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001555M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001556L: uclinux-dist-devel@blackfin.uclinux.org
1557W: http://blackfin.uclinux.org
1558S: Supported
1559F: drivers/mmc/host/bfin_sdh.c
1560
Bryan Wu1394f032007-05-06 14:50:22 -07001561BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001562M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001563L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001564W: http://blackfin.uclinux.org
1565S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001566F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001567
Bryan Wu1e6d3202007-07-15 02:50:02 +08001568BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001569M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001570L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001571W: http://blackfin.uclinux.org
1572S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001573F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001574
Bryan Wud24ecfc2007-05-01 23:26:32 +02001575BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001576M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001577L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001578W: http://blackfin.uclinux.org/
1579S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001580F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001581
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001582BLINKM RGB LED DRIVER
1583M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1584S: Maintained
1585F: drivers/leds/leds-blinkm.c
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001588M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001589T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001591F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Joern Engel2b54aae2008-02-06 01:38:02 -08001593BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001594M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001595L: linux-mtd@lists.infradead.org
1596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001597F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001598
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001599BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001600M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001601M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001602M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001603L: linux-bluetooth@vger.kernel.org
1604W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001605T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1606T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001608F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001611M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001612M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001613M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001614L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001615W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001616T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1617T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001619F: net/bluetooth/
1620F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001623M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001624M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001625L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001626W: http://sourceforge.net/projects/bonding/
1627S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001628F: drivers/net/bonding/
1629F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Gary Zambrano39105892006-06-22 17:26:20 -07001631BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001632M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001633L: netdev@vger.kernel.org
1634S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001635F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001636
Michael Chan948c51e2006-06-04 02:51:39 -07001637BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001638M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001639L: netdev@vger.kernel.org
1640S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001641F: drivers/net/ethernet/broadcom/bnx2.*
1642F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001643
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001644BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001645M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001646L: netdev@vger.kernel.org
1647S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001648F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001649
Stephen Warrenf680f252012-09-15 00:18:54 -06001650BROADCOM BCM2835 ARM ARCHICTURE
1651M: Stephen Warren <swarren@wwwdotorg.org>
1652L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1653T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1654S: Maintained
1655F: arch/arm/mach-bcm2835/
1656F: arch/arm/boot/dts/bcm2835*
1657F: arch/arm/configs/bcm2835_defconfig
1658F: drivers/*/*bcm2835*
1659
Michael Chan948c51e2006-06-04 02:51:39 -07001660BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001661M: Matt Carlson <mcarlson@broadcom.com>
1662M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001663L: netdev@vger.kernel.org
1664S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001665F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001666
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001667BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1668M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001669M: Roland Vossen <rvossen@broadcom.com>
1670M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001671M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1672M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001673L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001674L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001675S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001676F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001677
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001678BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1679M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1680L: linux-scsi@vger.kernel.org
1681S: Supported
1682F: drivers/scsi/bnx2fc/
1683
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001684BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1685M: Rafał Miłecki <zajec5@gmail.com>
1686L: linux-wireless@vger.kernel.org
1687S: Maintained
1688F: drivers/bcma/
1689F: include/linux/bcma/
1690
Jing Huang7725ccf2009-09-23 17:46:15 -07001691BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001692M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001693L: linux-scsi@vger.kernel.org
1694S: Supported
1695F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001696
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001697BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1698M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001699L: netdev@vger.kernel.org
1700S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001701F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001702
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001703BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001704M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001705L: linux-scsi@vger.kernel.org
1706S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001707F: block/bsg.c
1708F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001709
Clemens Ladischaf399172011-01-10 16:32:54 +01001710BT87X AUDIO DRIVER
1711M: Clemens Ladisch <clemens@ladisch.de>
1712L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1713T: git git://git.alsa-project.org/alsa-kernel.git
1714S: Maintained
1715F: Documentation/sound/alsa/Bt87x.txt
1716F: sound/pci/bt87x.c
1717
Michael Bueschff1d5c22008-07-25 01:46:10 -07001718BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001719M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001720W: http://bu3sch.de/btgpio.php
1721S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001722F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001723
Joe Percheseb1eb042009-01-21 10:49:16 -05001724BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001725M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001726L: linux-btrfs@vger.kernel.org
1727W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001728Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001729T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001731F: Documentation/filesystems/btrfs.txt
1732F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001735M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001736L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001737W: http://linuxtv.org
Joe Perches08deed12012-03-23 15:01:57 -07001738T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001740F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001741F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Clemens Ladischaf399172011-01-10 16:32:54 +01001743C-MEDIA CMI8788 DRIVER
1744M: Clemens Ladisch <clemens@ladisch.de>
1745L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1746T: git git://git.alsa-project.org/alsa-kernel.git
1747S: Maintained
1748F: sound/pci/oxygen/
1749
Mark Salter21413552011-10-04 11:21:42 -04001750C6X ARCHITECTURE
1751M: Mark Salter <msalter@redhat.com>
1752M: Aurelien Jacquiot <a-jacquiot@ti.com>
1753L: linux-c6x-dev@linux-c6x.org
1754W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1755S: Maintained
1756F: arch/c6x/
1757
David Howellsa5432f52009-04-20 15:46:45 +01001758CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001759M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001760L: linux-cachefs@redhat.com
1761S: Supported
1762F: Documentation/filesystems/caching/cachefiles.txt
1763F: fs/cachefiles/
1764
Jonathan Corbet77d51402007-03-22 19:44:17 -03001765CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001766M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001767L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07001768T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001770F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001771F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001772
Joe Perches201b6ba2010-09-07 20:33:24 +00001773CAIF NETWORK LAYER
1774M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1775L: netdev@vger.kernel.org
1776S: Supported
1777F: Documentation/networking/caif/
1778F: drivers/net/caif/
1779F: include/linux/caif/
1780F: include/net/caif/
1781F: net/caif/
1782
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001783CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001784M: Muli Ben-Yehuda <muli@il.ibm.com>
1785M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001786L: discuss@x86-64.org
1787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001788F: arch/x86/kernel/pci-calgary_64.c
1789F: arch/x86/kernel/tce_64.c
1790F: arch/x86/include/asm/calgary.h
1791F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001792
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001793CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001794M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001795L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001796W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001797T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001798S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001799F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001800F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001801F: include/linux/can/core.h
1802F: include/linux/can/bcm.h
1803F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001804F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001805
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001806CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001807M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001808M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001809L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001810W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001811T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001812S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001813F: drivers/net/can/
1814F: include/linux/can/dev.h
1815F: include/linux/can/error.h
1816F: include/linux/can/netlink.h
1817F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001818
James Morris95d16c72012-03-16 12:05:48 +11001819CAPABILITIES
1820M: Serge Hallyn <serge.hallyn@canonical.com>
1821L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001822S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001823F: include/linux/capability.h
1824F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001825F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001826F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001827
Arnd Bergmannb8154542008-05-16 11:10:59 +02001828CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001829M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001830L: linuxppc-dev@lists.ozlabs.org
1831L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001832W: http://www.ibm.com/developerworks/power/cell/
1833S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001834F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001835F: arch/powerpc/include/asm/spu*.h
1836F: arch/powerpc/oprofile/*cell*
1837F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001838
Sage Weil9030aaf2009-10-06 11:31:15 -07001839CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001840M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001841L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001842W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001843T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001844S: Supported
1845F: Documentation/filesystems/ceph.txt
1846F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001847F: net/ceph
1848F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001849F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001850
David Vrabel18332a82008-09-17 16:34:44 +01001851CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001852L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001853S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001854F: Documentation/usb/WUSB-Design-overview.txt
1855F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001856F: drivers/usb/host/hwa-hc.c
1857F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001858F: drivers/usb/wusbcore/
1859F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001860
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001861CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001862M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001863W: http://miguelojeda.es/auxdisplay.htm
1864W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001866F: drivers/auxdisplay/cfag12864b.c
1867F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001868
1869CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001870M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001871W: http://miguelojeda.es/auxdisplay.htm
1872W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001874F: drivers/auxdisplay/cfag12864bfb.c
1875F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001876
Johannes Berg704232c2007-04-23 12:20:05 -07001877CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001878M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001879L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001880W: http://wireless.kernel.org/
1881T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1882T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001884F: include/linux/nl80211.h
1885F: include/net/cfg80211.h
1886F: net/wireless/*
1887X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001888
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001889CHAR and MISC DRIVERS
1890M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001891M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001892T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001893S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001894F: drivers/char/*
1895F: drivers/misc/*
1896
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001897CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001898M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001899S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001900F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001901
Harry Weif8407f262011-02-25 14:44:15 -08001902CHINESE DOCUMENTATION
1903M: Harry Wei <harryxiyou@gmail.com>
1904L: xiyoulinuxkernelgroup@googlegroups.com
1905L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1906S: Maintained
1907F: Documentation/zh_CN/
1908
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001909CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1910M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1911L: linux-usb@vger.kernel.org
1912S: Maintained
1913F: drivers/usb/chipidea/
1914
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001915CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001916M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001917M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001918M: Neel Patel <neepatel@cisco.com>
1919M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001920S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001921F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001922
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001923CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001924M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001925L: netdev@vger.kernel.org
1926S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001927F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001928
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001929CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001930M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001931L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001933F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001934
Timur Tabid9e9d822008-04-24 08:45:26 +10001935CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001936M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001937L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001938S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001939F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001940
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001941CLEANCACHE API
1942M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1943L: linux-kernel@vger.kernel.org
1944S: Maintained
1945F: mm/cleancache.c
1946F: include/linux/cleancache.h
1947
Russell Kingd4275352009-04-16 14:05:27 +01001948CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001949M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001950S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001951F: include/linux/clk.h
1952
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001953CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001954M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001955M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1956M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001957L: linux-scsi@vger.kernel.org
1958S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001959F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001960
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001961CMPC ACPI DRIVER
1962M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1963M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001964L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001965S: Supported
1966F: drivers/platform/x86/classmate-laptop.c
1967
Nicolas Palix74425ee2010-06-06 17:15:01 +02001968COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02001969M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001970M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02001971M: Nicolas Palix <nicolas.palix@imag.fr>
1972L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02001973W: http://coccinelle.lip6.fr/
1974S: Supported
1975F: scripts/coccinelle/
1976F: scripts/coccicheck
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001979M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980M: coda@cs.cmu.edu
1981L: codalist@coda.cs.cmu.edu
1982W: http://www.coda.cs.cmu.edu/
1983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001984F: Documentation/filesystems/coda.txt
1985F: fs/coda/
1986F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
Mike Turquette7704add2012-05-02 18:37:45 -07001988COMMON CLK FRAMEWORK
1989M: Mike Turquette <mturquette@ti.com>
1990M: Mike Turquette <mturquette@linaro.org>
1991L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
1992T: git git://git.linaro.org/people/mturquette/linux.git
1993S: Maintained
1994F: drivers/clk/clk.c
1995F: drivers/clk/clk-*
1996F: include/linux/clk-pr*
1997
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001998COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001999M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002000L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002001L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002002W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002003Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002004T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002005S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002006F: Documentation/filesystems/cifs.txt
2007F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002010M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002011L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002013F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
2015COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002016M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002017L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002019F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002022M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002023L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002025F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002027COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002028M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002029L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002031F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002032
Simon Arlott949be0f2007-03-06 02:47:46 -08002033CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002034M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002035L: accessrunner-general@lists.sourceforge.net
2036W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002038F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002039
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002040CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002041M: Joel Becker <jlbec@evilplan.org>
2042T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002043S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002044F: fs/configfs/
2045F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002046
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002047CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002048M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002049L: netdev@vger.kernel.org
2050S: Maintained
2051F: drivers/connector/
2052
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002053CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002054M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002055M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002056L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002057L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002058T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002060F: include/linux/cgroup*
2061F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002062F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002063
Rudolf Marekbebe4672007-05-08 17:22:02 +02002064CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002065M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002066L: lm-sensors@lm-sensors.org
2067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002068F: Documentation/hwmon/coretemp
2069F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002072M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073W: http://www.fi.muni.cz/~kas/cosa/
2074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002075F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Florian Fainelli4371ee32009-06-01 02:43:17 -07002077CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002078M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002079L: netdev@vger.kernel.org
2080S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002081F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002082
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002084M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002085L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002086L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002088F: drivers/cpufreq/
2089F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002092M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002094F: arch/x86/kernel/cpuid.c
2095F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002097CPU POWER MONITORING SUBSYSTEM
2098M: Dominik Brodowski <linux@dominikbrodowski.net>
2099M: Thomas Renninger <trenn@suse.de>
2100S: Maintained
2101F: tools/power/cpupower
2102
Paul Jacksoned90fb42005-09-27 21:45:37 -07002103CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002104M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002105W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002106W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002107S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002108F: Documentation/cgroups/cpusets.txt
2109F: include/linux/cpuset.h
2110F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002113W: http://sourceforge.net/projects/cramfs/
2114S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002115F: Documentation/filesystems/cramfs.txt
2116F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002119M: Mikael Starvik <starvik@axis.com>
2120M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002121L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122W: http://developer.axis.com
2123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002124F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002125F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002128M: Herbert Xu <herbert@gondor.apana.org.au>
2129M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002131T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002133F: Documentation/crypto/
2134F: arch/*/crypto/
2135F: crypto/
2136F: drivers/crypto/
2137F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Neil Horman5b07bd52009-02-05 16:03:04 +11002139CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002140M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002141L: linux-crypto@vger.kernel.org
2142S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002143F: crypto/ansi_cprng.c
2144F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002145
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002146CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002147M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002149F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002150
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002151CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002152M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002153L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002154L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002155T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002156W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002157W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002159F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002160F: drivers/media/pci/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002161
Antti Palosaari91952bc2012-10-01 12:28:46 -03002162CXD2820R MEDIA DRIVER
2163M: Antti Palosaari <crope@iki.fi>
2164L: linux-media@vger.kernel.org
2165W: http://linuxtv.org/
2166W: http://palosaari.fi/linux/
2167Q: http://patchwork.linuxtv.org/project/linux-media/list/
2168T: git git://linuxtv.org/anttip/media_tree.git
2169S: Maintained
2170F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002171
Steve Wisee5ec3782008-05-20 14:06:33 -07002172CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002173M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002174L: netdev@vger.kernel.org
2175W: http://www.chelsio.com
2176S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002177F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002178
2179CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002180M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002181L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002182W: http://www.openfabrics.org
2183S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002184F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002185
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002186CXGB4 ETHERNET DRIVER (CXGB4)
2187M: Dimitris Michailidis <dm@chelsio.com>
2188L: netdev@vger.kernel.org
2189W: http://www.chelsio.com
2190S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002191F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002192
2193CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2194M: Steve Wise <swise@chelsio.com>
2195L: linux-rdma@vger.kernel.org
2196W: http://www.openfabrics.org
2197S: Supported
2198F: drivers/infiniband/hw/cxgb4/
2199
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002200CXGB4VF ETHERNET DRIVER (CXGB4VF)
2201M: Casey Leedom <leedom@chelsio.com>
2202L: netdev@vger.kernel.org
2203W: http://www.chelsio.com
2204S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002205F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002206
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002207STMMAC ETHERNET DRIVER
2208M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2209L: netdev@vger.kernel.org
2210W: http://www.stlinux.com
2211S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002212F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002215M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002216L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217W: http://www.arm.linux.org.uk/
2218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002219F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002222M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002223W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002225F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
2227CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002229S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002230F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002231F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
2233CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002235S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002236F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002238CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002239M: Javier Martinez Canillas <javier@dowhile0.org>
2240L: linux-input@vger.kernel.org
2241S: Maintained
2242F: drivers/input/touchscreen/cyttsp*
2243F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002244
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002246M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247W: http://yaina.de/jreuter/
2248W: http://www.qsl.net/dl1bke/
2249L: linux-hams@vger.kernel.org
2250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002251F: net/ax25/af_ax25.c
2252F: net/ax25/ax25_dev.c
2253F: net/ax25/ax25_ds_*
2254F: net/ax25/ax25_in.c
2255F: net/ax25/ax25_out.c
2256F: net/ax25/ax25_timer.c
2257F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002259DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002260L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002261S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002262F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002263F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002264
2265DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002266M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002267W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002268M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002270F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002273M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002274M: Ali Akcaagac <aliakc@web.de>
2275M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002277L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278L: http://lists.twibble.org/mailman/listinfo/dc395x/
2279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002280F: Documentation/scsi/dc395x.txt
2281F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002283DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002284M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002285L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002286W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002288F: include/linux/dccp.h
2289F: include/linux/tfrc.h
2290F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293W: http://linux-decnet.sourceforge.net
2294L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002295S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002296F: Documentation/networking/decnet.txt
2297F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002300M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002302F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002304DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002305M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002306L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002308F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002311M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312W: http://www.debian.org/~dz/i8k/
2313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002314F: drivers/char/i8k.c
2315F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Doug Warzecha90563ec2005-09-06 15:17:15 -07002317DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002318M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002320F: Documentation/dcdbas.txt
2321F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002322
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002323DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002324M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002325S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002326F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002327
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002328DESIGNWARE USB3 DRD IP DRIVER
2329M: Felipe Balbi <balbi@ti.com>
2330L: linux-usb@vger.kernel.org
2331L: linux-omap@vger.kernel.org
2332T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2333S: Maintained
2334F: drivers/usb/dwc3/
2335
Kyungmin Park89d07762012-01-10 15:09:09 -08002336DEVICE FREQUENCY (DEVFREQ)
2337M: MyungJoo Ham <myungjoo.ham@samsung.com>
2338M: Kyungmin Park <kyungmin.park@samsung.com>
2339L: linux-kernel@vger.kernel.org
2340S: Maintained
2341F: drivers/devfreq/
2342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002344M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346S: Maintained
2347
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002348DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002349M: Alasdair Kergon <agk@redhat.com>
2350M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002351L: dm-devel@redhat.com
2352W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002353Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002354T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002356F: Documentation/device-mapper/
2357F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002358F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002359F: include/linux/device-mapper.h
2360F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002361
Guenter Roeck335d7c52011-01-26 11:45:49 -08002362DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002363M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002364L: linux-i2c@vger.kernel.org
2365S: Maintained
2366F: drivers/i2c/busses/i2c-diolan-u2c.c
2367
Randy Dunlape7839f22008-10-12 16:11:45 -07002368DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002369M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002371F: Documentation/filesystems/dnotify.txt
2372F: fs/notify/dnotify/
2373F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
2375DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002376M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2378W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2379W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2380S: Maintained
2381
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002382DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002383M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002385F: Documentation/filesystems/quota.txt
2386F: fs/quota/
2387F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Bernie Thompson702686a2012-03-01 13:52:13 -08002389DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2390M: Bernie Thompson <bernie@plugable.com>
2391L: linux-fbdev@vger.kernel.org
2392S: Maintained
2393W: http://plugable.com/category/projects/udlfb/
2394F: drivers/video/udlfb.c
2395F: include/video/udlfb.h
2396F: Documentation/fb/udlfb.txt
2397
Randy Dunlape7839f22008-10-12 16:11:45 -07002398DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002399M: Christine Caulfield <ccaulfie@redhat.com>
2400M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002401L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002402W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002403T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002404S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002405F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002406
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302407DMA BUFFER SHARING FRAMEWORK
2408M: Sumit Semwal <sumit.semwal@linaro.org>
2409S: Maintained
2410L: linux-media@vger.kernel.org
2411L: dri-devel@lists.freedesktop.org
2412L: linaro-mm-sig@lists.linaro.org
2413F: drivers/base/dma-buf*
2414F: include/linux/dma-buf*
2415F: Documentation/dma-buf-sharing.txt
2416T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2417
Dan Williamsb3e5f262007-08-07 10:26:35 -07002418DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002419M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002420M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002421S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002422F: drivers/dma/
2423F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302424T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2425T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002426
Juerg Haefligerb8250372007-06-09 10:11:16 -04002427DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002428M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002429L: lm-sensors@lm-sensors.org
2430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002431F: Documentation/hwmon/dme1737
2432F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002433
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002434DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002435M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002436L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002437S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002438F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002439
Joe Perches7d2c86b2009-04-07 20:59:01 -07002440DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002441M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002442L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002443T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002445F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002448M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449L: blinux-list@redhat.com
2450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002451F: drivers/char/dtlk.c
2452F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002454DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002455M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002456L: linux-scsi@vger.kernel.org
2457W: http://www.adaptec.com/
2458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002459F: drivers/scsi/dpt*
2460F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002461
Philipp Reisnerb411b362009-09-25 16:07:19 -07002462DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002463P: Philipp Reisner
2464P: Lars Ellenberg
2465M: drbd-dev@lists.linbit.com
2466L: drbd-user@lists.linbit.com
2467W: http://www.drbd.org
2468T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2469T: git git://git.drbd.org/drbd-8.3.git
2470S: Supported
2471F: drivers/block/drbd/
2472F: lib/lru_cache.c
2473F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002474
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002475DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002476M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002477T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002479F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002480F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002481F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002482F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002483F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002484F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002485F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
2487DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002488M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002489L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002490T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002492F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002493F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Chris Wilson8daf7472010-09-28 14:07:26 +01002495INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002496M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002497L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002498L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002499T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002500S: Supported
2501F: drivers/gpu/drm/i915
2502F: include/drm/i915*
2503
Kyungmin Park398a6d42011-11-02 11:33:16 +09002504DRM DRIVERS FOR EXYNOS
2505M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002506M: Joonyoung Shim <jy0922.shim@samsung.com>
2507M: Seung-Woo Kim <sw0312.kim@samsung.com>
2508M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002509L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002510T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002511S: Supported
2512F: drivers/gpu/drm/exynos
2513F: include/drm/exynos*
2514
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002516M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002517L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002519F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Antti Palosaari91952bc2012-10-01 12:28:46 -03002521DVB_USB_AF9015 MEDIA DRIVER
2522M: Antti Palosaari <crope@iki.fi>
2523L: linux-media@vger.kernel.org
2524W: http://linuxtv.org/
2525W: http://palosaari.fi/linux/
2526Q: http://patchwork.linuxtv.org/project/linux-media/list/
2527T: git git://linuxtv.org/anttip/media_tree.git
2528S: Maintained
2529F: drivers/media/usb/dvb-usb-v2/af9015*
2530
2531DVB_USB_AF9035 MEDIA DRIVER
2532M: Antti Palosaari <crope@iki.fi>
2533L: linux-media@vger.kernel.org
2534W: http://linuxtv.org/
2535W: http://palosaari.fi/linux/
2536Q: http://patchwork.linuxtv.org/project/linux-media/list/
2537T: git git://linuxtv.org/anttip/media_tree.git
2538S: Maintained
2539F: drivers/media/usb/dvb-usb-v2/af9035*
2540
2541DVB_USB_ANYSEE MEDIA DRIVER
2542M: Antti Palosaari <crope@iki.fi>
2543L: linux-media@vger.kernel.org
2544W: http://linuxtv.org/
2545W: http://palosaari.fi/linux/
2546Q: http://patchwork.linuxtv.org/project/linux-media/list/
2547T: git git://linuxtv.org/anttip/media_tree.git
2548S: Maintained
2549F: drivers/media/usb/dvb-usb-v2/anysee*
2550
2551DVB_USB_AU6610 MEDIA DRIVER
2552M: Antti Palosaari <crope@iki.fi>
2553L: linux-media@vger.kernel.org
2554W: http://linuxtv.org/
2555W: http://palosaari.fi/linux/
2556Q: http://patchwork.linuxtv.org/project/linux-media/list/
2557T: git git://linuxtv.org/anttip/media_tree.git
2558S: Maintained
2559F: drivers/media/usb/dvb-usb-v2/au6610*
2560
2561DVB_USB_CE6230 MEDIA DRIVER
2562M: Antti Palosaari <crope@iki.fi>
2563L: linux-media@vger.kernel.org
2564W: http://linuxtv.org/
2565W: http://palosaari.fi/linux/
2566Q: http://patchwork.linuxtv.org/project/linux-media/list/
2567T: git git://linuxtv.org/anttip/media_tree.git
2568S: Maintained
2569F: drivers/media/usb/dvb-usb-v2/ce6230*
2570
Michael Krufkyd099dea2012-10-02 00:56:20 -03002571DVB_USB_CXUSB MEDIA DRIVER
2572M: Michael Krufky <mkrufky@linuxtv.org>
2573L: linux-media@vger.kernel.org
2574W: http://linuxtv.org/
2575W: http://github.com/mkrufky
2576Q: http://patchwork.linuxtv.org/project/linux-media/list/
2577T: git git://linuxtv.org/media_tree.git
2578S: Maintained
2579F: drivers/media/usb/dvb-usb-v2/cxusb*
2580
Antti Palosaari91952bc2012-10-01 12:28:46 -03002581DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2582M: Antti Palosaari <crope@iki.fi>
2583L: linux-media@vger.kernel.org
2584W: http://linuxtv.org/
2585W: http://palosaari.fi/linux/
2586Q: http://patchwork.linuxtv.org/project/linux-media/list/
2587T: git git://linuxtv.org/anttip/media_tree.git
2588S: Maintained
2589F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2590
2591DVB_USB_EC168 MEDIA DRIVER
2592M: Antti Palosaari <crope@iki.fi>
2593L: linux-media@vger.kernel.org
2594W: http://linuxtv.org/
2595W: http://palosaari.fi/linux/
2596Q: http://patchwork.linuxtv.org/project/linux-media/list/
2597T: git git://linuxtv.org/anttip/media_tree.git
2598S: Maintained
2599F: drivers/media/usb/dvb-usb-v2/ec168*
2600
Michael Krufky8856f5f2012-10-02 00:55:50 -03002601DVB_USB_MXL111SF MEDIA DRIVER
2602M: Michael Krufky <mkrufky@linuxtv.org>
2603L: linux-media@vger.kernel.org
2604W: http://linuxtv.org/
2605W: http://github.com/mkrufky
2606Q: http://patchwork.linuxtv.org/project/linux-media/list/
2607T: git git://linuxtv.org/mkrufky/mxl111sf.git
2608S: Maintained
2609F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2610
Antti Palosaari91952bc2012-10-01 12:28:46 -03002611DVB_USB_RTL28XXU MEDIA DRIVER
2612M: Antti Palosaari <crope@iki.fi>
2613L: linux-media@vger.kernel.org
2614W: http://linuxtv.org/
2615W: http://palosaari.fi/linux/
2616Q: http://patchwork.linuxtv.org/project/linux-media/list/
2617T: git git://linuxtv.org/anttip/media_tree.git
2618S: Maintained
2619F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2620
2621DVB_USB_V2 MEDIA DRIVER
2622M: Antti Palosaari <crope@iki.fi>
2623L: linux-media@vger.kernel.org
2624W: http://linuxtv.org/
2625W: http://palosaari.fi/linux/
2626Q: http://patchwork.linuxtv.org/project/linux-media/list/
2627T: git git://linuxtv.org/anttip/media_tree.git
2628S: Maintained
2629F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2630F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2631
Jason Baronac0ac382011-08-11 14:36:43 -04002632DYNAMIC DEBUG
2633M: Jason Baron <jbaron@redhat.com>
2634S: Maintained
2635F: lib/dynamic_debug.c
2636F: include/linux/dynamic_debug.h
2637
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002638DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002639M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002640S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002641F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002642
Antti Palosaari91952bc2012-10-01 12:28:46 -03002643E4000 MEDIA DRIVER
2644M: Antti Palosaari <crope@iki.fi>
2645L: linux-media@vger.kernel.org
2646W: http://linuxtv.org/
2647W: http://palosaari.fi/linux/
2648Q: http://patchwork.linuxtv.org/project/linux-media/list/
2649T: git git://linuxtv.org/anttip/media_tree.git
2650S: Maintained
2651F: drivers/media/tuners/e4000*
2652
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002654M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002655L: linux-eata@i-connect.net
2656L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002658F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002661M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662L: linux-scsi@vger.kernel.org
2663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002664F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
2666EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002667M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002668L: linux-eata@i-connect.net
2669L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002671F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
2673EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002674M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002675L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676W: http://ebtables.sourceforge.net/
2677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002678F: include/linux/netfilter_bridge/ebt_*.h
2679F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
Antti Palosaari91952bc2012-10-01 12:28:46 -03002681EC100 MEDIA DRIVER
2682M: Antti Palosaari <crope@iki.fi>
2683L: linux-media@vger.kernel.org
2684W: http://linuxtv.org/
2685W: http://palosaari.fi/linux/
2686Q: http://patchwork.linuxtv.org/project/linux-media/list/
2687T: git git://linuxtv.org/anttip/media_tree.git
2688S: Maintained
2689F: drivers/media/dvb-frontends/ec100*
2690
Michael Halcrow237fead2006-10-04 02:16:22 -07002691ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002692M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002693M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002694L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002695W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002696S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002697F: Documentation/filesystems/ecryptfs.txt
2698F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002699
Alan Coxda9bb1d2006-01-18 17:44:13 -08002700EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002701M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002702L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002703W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002704S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002705F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002706F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002707F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002708
Borislav Petkovc476c232009-05-20 20:31:58 +02002709EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002710M: Doug Thompson <dougthompson@xmission.com>
2711M: Borislav Petkov <borislav.petkov@amd.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002712L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002713W: bluesmoke.sourceforge.net
2714S: Supported
2715F: drivers/edac/amd64_edac*
2716
Dave Peterson0e438e32006-03-26 01:38:55 -08002717EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002718M: Mark Gross <mark.gross@intel.com>
2719M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002720L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002721W: bluesmoke.sourceforge.net
2722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002723F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002724
2725EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002726M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002727L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002728W: bluesmoke.sourceforge.net
2729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002730F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002731
Douglas Thompson6bc78402007-07-19 01:50:12 -07002732EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002733M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002734L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002735W: bluesmoke.sourceforge.net
2736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002737F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002738
2739EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002740M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002741L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002742W: bluesmoke.sourceforge.net
2743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002744F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002745
2746EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002747M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002748L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002749W: bluesmoke.sourceforge.net
2750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002751F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002752
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002753EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002754M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002755L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002756W: bluesmoke.sourceforge.net
2757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002758F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002759
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002760EDAC-I7300
2761M: Mauro Carvalho Chehab <mchehab@redhat.com>
2762L: linux-edac@vger.kernel.org
2763W: bluesmoke.sourceforge.net
2764S: Maintained
2765F: drivers/edac/i7300_edac.c
2766
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002767EDAC-I7CORE
2768M: Mauro Carvalho Chehab <mchehab@redhat.com>
2769L: linux-edac@vger.kernel.org
2770W: bluesmoke.sourceforge.net
2771S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002772F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002773
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002774EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002775M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302776M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002777L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002778W: bluesmoke.sourceforge.net
2779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002780F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002781
2782EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002783M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002784L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002785W: bluesmoke.sourceforge.net
2786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002787F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002788
Dave Peterson0e438e32006-03-26 01:38:55 -08002789EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002790M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002791L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002792W: bluesmoke.sourceforge.net
2793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002794F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002795
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002796EDAC-SBRIDGE
2797M: Mauro Carvalho Chehab <mchehab@redhat.com>
2798L: linux-edac@vger.kernel.org
2799W: bluesmoke.sourceforge.net
2800S: Maintained
2801F: drivers/edac/sb_edac.c
2802
Clemens Ladischaf399172011-01-10 16:32:54 +01002803EDIROL UA-101/UA-1000 DRIVER
2804M: Clemens Ladisch <clemens@ladisch.de>
2805L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2806T: git git://git.alsa-project.org/alsa-kernel.git
2807S: Maintained
2808F: sound/usb/misc/ua101.c
2809
Matt Fleming1f7df952012-10-03 10:04:02 +01002810EXTENSIBLE FIRMWARE INTERFACE (EFI)
2811M: Matt Fleming <matt.fleming@intel.com>
2812L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002813T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002814S: Maintained
2815F: Documentation/x86/efi-stub.txt
2816F: arch/ia64/kernel/efi.c
2817F: arch/x86/boot/compressed/eboot.[ch]
2818F: arch/x86/include/asm/efi.h
2819F: arch/x86/platform/efi/*
2820F: drivers/firmware/efivars.c
2821F: include/linux/efi*.h
2822
Peter Jones85a00d92010-09-22 13:05:04 -07002823EFIFB FRAMEBUFFER DRIVER
2824L: linux-fbdev@vger.kernel.org
2825M: Peter Jones <pjones@redhat.com>
2826S: Maintained
2827F: drivers/video/efifb.c
2828
Josh Triplett0bee8d22006-07-30 03:03:58 -07002829EFS FILESYSTEM
2830W: http://aeschi.ch.eu.org/efs/
2831S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002832F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002833
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002834EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002835M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2836M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002837L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002838S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002839F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002840
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002841EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002842M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002843L: netdev@vger.kernel.org
2844S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002845F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002846
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002847EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002848M: Paul Gortmaker <paul.gortmaker@windriver.com>
2849M: Matt Mackall <mpm@selenic.com>
2850M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002851L: linux-embedded@vger.kernel.org
2852S: Maintained
2853
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002854EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002855M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002856L: linux-scsi@vger.kernel.org
2857W: http://sourceforge.net/projects/lpfcxxxx
2858S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002859F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002860
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002861ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002862M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002863S: Maintained
2864F: drivers/misc/cb710/
2865F: drivers/mmc/host/cb710-mmc.*
2866F: include/linux/cb710.h
2867
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002868ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2869M: Maxim Levitsky <maximlevitsky@gmail.com>
2870S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002871F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002872
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002874M: Christopher Hoover <ch@murgatroid.com>
2875M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002877F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002879EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002880M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002881S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002882T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002883F: drivers/video/s1d13xxxfb.c
2884F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002885
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002887M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002888L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002890F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
2892ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002893M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002894L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002895L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002896W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002898F: include/linux/netfilter_bridge/
2899F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
2901ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002902M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002904F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
2906EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002907M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002908L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002910F: Documentation/filesystems/ext2.txt
2911F: fs/ext2/
2912F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
2914EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002915M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002916M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002917M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002918L: linux-ext4@vger.kernel.org
2919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002920F: Documentation/filesystems/ext3.txt
2921F: fs/ext3/
2922F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002923
2924EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002925M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002926M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002927L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002928W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002929Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002931F: Documentation/filesystems/ext4.txt
2932F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
Mimi Zoharc5532b02011-08-17 18:52:24 -04002934Extended Verification Module (EVM)
2935M: Mimi Zohar <zohar@us.ibm.com>
2936S: Supported
2937F: security/integrity/evm/
2938
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002939EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2940M: MyungJoo Ham <myungjoo.ham@samsung.com>
2941M: Chanwoo Choi <cw00.choi@samsung.com>
2942L: linux-kernel@vger.kernel.org
2943S: Maintained
2944F: drivers/extcon/
2945F: Documentation/extcon/
2946
Jingoo Han0a799512012-02-06 11:30:39 +09002947EXYNOS DP DRIVER
2948M: Jingoo Han <jg1.han@samsung.com>
2949L: linux-fbdev@vger.kernel.org
2950S: Maintained
2951F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07002952F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09002953
Donghwa Lee33ad3912012-03-06 11:44:58 +09002954EXYNOS MIPI DISPLAY DRIVERS
2955M: Inki Dae <inki.dae@samsung.com>
2956M: Donghwa Lee <dh09.lee@samsung.com>
2957M: Kyungmin Park <kyungmin.park@samsung.com>
2958L: linux-fbdev@vger.kernel.org
2959S: Maintained
2960F: drivers/video/exynos/exynos_mipi*
2961F: include/video/exynos_mipi*
2962
Jean Delvaree53004e2006-01-09 23:26:14 +01002963F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002964M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002965L: lm-sensors@lm-sensors.org
2966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002967F: Documentation/hwmon/f71805f
2968F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002969
Michael Büscheea977e2012-04-02 12:14:32 -03002970FC0011 TUNER DRIVER
2971M: Michael Buesch <m@bues.ch>
2972L: linux-media@vger.kernel.org
2973S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03002974F: drivers/media/tuners/fc0011.h
2975F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03002976
Antti Palosaari91952bc2012-10-01 12:28:46 -03002977FC2580 MEDIA DRIVER
2978M: Antti Palosaari <crope@iki.fi>
2979L: linux-media@vger.kernel.org
2980W: http://linuxtv.org/
2981W: http://palosaari.fi/linux/
2982Q: http://patchwork.linuxtv.org/project/linux-media/list/
2983T: git git://linuxtv.org/anttip/media_tree.git
2984S: Maintained
2985F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
Eric Paris88b2dbd2010-08-18 12:25:50 -04002987FANOTIFY
2988M: Eric Paris <eparis@redhat.com>
2989S: Maintained
2990F: fs/notify/fanotify/
2991F: include/linux/fanotify.h
2992
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002994M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995W: http://www.farsite.co.uk/
2996S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002997F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
Akinobu Mitac5408b82007-04-23 14:41:20 -07002999FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003000M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003001S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003002F: Documentation/fault-injection/
3003F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003004
Robert Lovecae727d2010-02-16 12:16:00 -08003005FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3006M: Robert Love <robert.w.love@intel.com>
3007L: devel@open-fcoe.org
3008W: www.Open-FCoE.org
3009S: Supported
3010F: drivers/scsi/libfc/
3011F: drivers/scsi/fcoe/
3012F: include/scsi/fc/
3013F: include/scsi/libfc.h
3014F: include/scsi/libfcoe.h
3015
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003016FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003017M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003018L: linux-fsdevel@vger.kernel.org
3019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003020F: include/linux/fcntl.h
3021F: include/linux/fs.h
3022F: fs/fcntl.c
3023F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003024
3025FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003026M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003027L: linux-fsdevel@vger.kernel.org
3028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003029F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003030
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003031FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003032M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003033L: lm-sensors@lm-sensors.org
3034S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003035F: drivers/hwmon/f75375s.c
3036F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003037
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003038FIREWIRE AUDIO DRIVERS
3039M: Clemens Ladisch <clemens@ladisch.de>
3040L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3041T: git git://git.alsa-project.org/alsa-kernel.git
3042S: Maintained
3043F: sound/firewire/
3044
Chris Boota511ce32012-04-14 17:50:35 -07003045FIREWIRE SBP-2 TARGET
3046M: Chris Boot <bootc@bootc.net>
3047L: linux-scsi@vger.kernel.org
3048L: target-devel@vger.kernel.org
3049L: linux1394-devel@lists.sourceforge.net
3050T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3051S: Maintained
3052F: drivers/target/sbp/
3053
Joe Perches7d2c86b2009-04-07 20:59:01 -07003054FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003055M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003056L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003057W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003058T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003060F: drivers/firewire/
3061F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003062F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003063
3064FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003065M: Ming Lei <ming.lei@canonical.com>
3066L: linux-kernel@vger.kernel.org
3067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003068F: Documentation/firmware_class/
3069F: drivers/base/firmware*.c
3070F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003071
Jiri Kosina8206f662012-05-18 13:52:29 +02003072FLOPPY DRIVER
3073M: Jiri Kosina <jkosina@suse.cz>
3074T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3075S: Odd fixes
3076F: drivers/block/floppy.c
3077
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003078FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003079M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003080W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003082F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003083
3084FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003085L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003086S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003087F: drivers/net/wan/dlci.c
3088F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003089
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003091M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003092L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003094Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003095T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003097F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003098F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003099F: drivers/video/
3100F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003101F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
Zhang Wei173acc72008-03-01 07:42:48 -07003103FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003104M: Li Yang <leoli@freescale.com>
3105M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003106L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003108F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003109
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003110FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003111M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003112L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003113L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003115F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003116
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003117FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003118M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003119L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003120L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003122F: arch/arm/plat-mxc/include/mach/imxfb.h
3123F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003124
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003125FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003126M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3127M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003128L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003129L: netdev@vger.kernel.org
3130S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003131F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003132F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003133
Timur Tabid9e9d822008-04-24 08:45:26 +10003134FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003135M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003136L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003137S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003138F: arch/powerpc/sysdev/qe_lib/
3139F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003140
Joe Perchesb55ef9292009-10-26 16:49:46 -07003141FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003142M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003143L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003144L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003145S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003146F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003147
Li Yangbeaf53b2007-05-25 13:54:02 +08003148FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003149M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003150L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003151L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003152S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003153F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003154
Timur Tabid9e9d822008-04-24 08:45:26 +10003155FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003156M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003157L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003158S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003159F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003160
3161FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003162M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003163L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003164L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003165S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003166F: sound/soc/fsl/fsl*
3167F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003168
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003170M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003173F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
Pavel Machek71038f52009-01-15 13:51:02 -08003175FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003176M: Pavel Machek <pavel@ucw.cz>
3177M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003178L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003179S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003180F: Documentation/power/freezing-of-tasks.txt
3181F: include/linux/freezer.h
3182F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003183
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003184FRONTSWAP API
3185M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3186L: linux-kernel@vger.kernel.org
3187S: Maintained
3188F: mm/frontswap.c
3189F: include/linux/frontswap.h
3190
David Howellsa5432f52009-04-20 15:46:45 +01003191FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003192M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003193L: linux-cachefs@redhat.com
3194S: Supported
3195F: Documentation/filesystems/caching/
3196F: fs/fscache/
3197F: include/linux/fscache*.h
3198
David Howells5ab7ffe2007-04-10 15:10:45 +01003199FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003200M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003202F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Jonathan Woithe20b93732008-06-11 10:14:56 +09303204FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303205M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003206L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003208F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303209
Heungjun Kim4da621b2011-11-11 08:05:33 -03003210FUJITSU M-5MO LS CAMERA ISP DRIVER
3211M: Kyungmin Park <kyungmin.park@samsung.com>
3212M: Heungjun Kim <riverful.kim@samsung.com>
3213L: linux-media@vger.kernel.org
3214S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003215F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003216F: include/media/m5mols.h
3217
Robert Gerlach2d24c492012-01-18 14:26:22 +01003218FUJITSU TABLET EXTRAS
3219M: Robert Gerlach <khnz@gmx.de>
3220L: platform-driver-x86@vger.kernel.org
3221S: Maintained
3222F: drivers/platform/x86/fujitsu-tablet.c
3223
Miklos Szeredi04578f12005-09-09 13:10:22 -07003224FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003225M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003226L: fuse-devel@lists.sourceforge.net
3227W: http://fuse.sourceforge.net/
3228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003229F: fs/fuse/
3230F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003231
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003233M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003235S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003236F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
3238GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003239M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240L: linux-scsi@vger.kernel.org
3241W: http://www.icp-vortex.com/
3242S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003243F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003245GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003246M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003247S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003248F: drivers/i2c/busses/i2c-gpio.c
3249F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003250
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003251GENERIC GPIO I2C MULTIPLEXER DRIVER
3252M: Peter Korsgaard <peter.korsgaard@barco.com>
3253L: linux-i2c@vger.kernel.org
3254S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003255F: drivers/i2c/muxes/i2c-mux-gpio.c
3256F: include/linux/i2c-mux-gpio.h
3257F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003258
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003259GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003260M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003263F: drivers/net/wan/c101.c
3264F: drivers/net/wan/hd6457*
3265F: drivers/net/wan/hdlc*
3266F: drivers/net/wan/n2.c
3267F: drivers/net/wan/pc300too.c
3268F: drivers/net/wan/pci200syn.c
3269F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003271GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003272M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003273L: linux-arch@vger.kernel.org
3274T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3275S: Maintained
3276F: include/asm-generic
3277
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003278GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003279M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003280L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003281S: Supported
3282F: drivers/uio/uio_pci_generic.c
3283
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003284GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003285M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003286L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003287W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003288T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3289T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003290S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003291F: Documentation/filesystems/gfs2*.txt
3292F: fs/gfs2/
3293F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003294
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003295GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003296M: Hansjoerg Lipp <hjlipp@web.de>
3297M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003298L: gigaset307x-common@lists.sourceforge.net
3299W: http://gigaset307x.sourceforge.net/
3300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003301F: Documentation/isdn/README.gigaset
3302F: drivers/isdn/gigaset/
3303F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003304
Grant Likelya0dc00b2011-02-12 01:48:14 -07003305GPIO SUBSYSTEM
3306M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003307M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003308S: Maintained
3309T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003310F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003311F: drivers/gpio/
3312F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003313F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003314
Harry Wei71a6d0a2011-05-11 15:13:33 -07003315GRE DEMULTIPLEXER DRIVER
3316M: Dmitry Kozlov <xeb@mail.ru>
3317L: netdev@vger.kernel.org
3318S: Maintained
3319F: net/ipv4/gre.c
3320F: include/net/gre.h
3321
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003322GRETH 10/100/1G Ethernet MAC device driver
3323M: Kristoffer Glembo <kristoffer@gaisler.com>
3324L: netdev@vger.kernel.org
3325S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003326F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003327
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003328GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003329M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003330L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003331T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003332S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003333F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003334
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003335GSPCA GL860 SUBDRIVER
3336M: Olivier Lorin <o.lorin@laposte.net>
3337L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003338T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003339S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003340F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003341
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003342GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003343M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003344L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003345T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003346S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003347F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003348
3349GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003350M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003351L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003352T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003353S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003354F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003355
Brian Johnson261982f2009-07-19 15:58:56 -03003356GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003357M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003358L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003359T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Brian Johnson261982f2009-07-19 15:58:56 -03003360S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003361F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003362
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003363GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003364M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003365L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003366T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003367S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003368F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003369
3370GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003371M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003372L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003373T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003374S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003375F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003376
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003377STK1160 USB VIDEO CAPTURE DRIVER
3378M: Ezequiel Garcia <elezegarcia@gmail.com>
3379L: linux-media@vger.kernel.org
3380T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3381S: Maintained
3382F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003383
Harry Wei71a6d0a2011-05-11 15:13:33 -07003384HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3385M: Frank Seidel <frank@f-seidel.de>
3386L: platform-driver-x86@vger.kernel.org
3387W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3388S: Maintained
3389F: drivers/platform/x86/hdaps.c
3390
3391HWPOISON MEMORY FAILURE HANDLING
3392M: Andi Kleen <andi@firstfloor.org>
3393L: linux-mm@kvack.org
3394T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3395S: Maintained
3396F: mm/memory-failure.c
3397F: mm/hwpoison-inject.c
3398
3399HYPERVISOR VIRTUAL CONSOLE DRIVER
3400L: linuxppc-dev@lists.ozlabs.org
3401S: Odd Fixes
3402F: drivers/tty/hvc/
3403
Michael Buesch844dd052006-06-26 00:24:59 -07003404HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003405M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003406M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003407L: lm-sensors@lm-sensors.org
3408W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003409T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003410T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003411S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003412F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003413F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003414F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003415
3416HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003417M: Matt Mackall <mpm@selenic.com>
3418M: Herbert Xu <herbert@gondor.apana.org.au>
3419S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003420F: Documentation/hw_random.txt
3421F: drivers/char/hw_random/
3422F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003423
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003424HARDWARE SPINLOCK CORE
3425M: Ohad Ben-Cohen <ohad@wizery.com>
3426S: Maintained
3427F: Documentation/hwspinlock.txt
3428F: drivers/hwspinlock/hwspinlock_*
3429F: include/linux/hwspinlock.h
3430
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003432L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003434F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
Antti Palosaari91952bc2012-10-01 12:28:46 -03003436HD29L2 MEDIA DRIVER
3437M: Antti Palosaari <crope@iki.fi>
3438L: linux-media@vger.kernel.org
3439W: http://linuxtv.org/
3440W: http://palosaari.fi/linux/
3441Q: http://patchwork.linuxtv.org/project/linux-media/list/
3442T: git git://linuxtv.org/anttip/media_tree.git
3443S: Maintained
3444F: drivers/media/dvb-frontends/hd29l2*
3445
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003446HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003447M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003448L: iss_storagedev@hp.com
3449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003450F: Documentation/blockdev/cpqarray.txt
3451F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003452
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003453HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003454M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003455L: iss_storagedev@hp.com
3456S: Supported
3457F: Documentation/scsi/hpsa.txt
3458F: drivers/scsi/hpsa*.[ch]
3459F: include/linux/cciss*.h
3460
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003461HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003462M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003463L: iss_storagedev@hp.com
3464S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003465F: Documentation/blockdev/cciss.txt
3466F: drivers/block/cciss*
3467F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003468
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003470L: linux-fsdevel@vger.kernel.org
3471S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003472F: Documentation/filesystems/hfs.txt
3473F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
3475HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003476M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477L: linux-nvidia@lists.surfsouth.com
3478W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003480F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003482HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003483M: Pavel Machek <pavel@ucw.cz>
3484M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003485L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003486S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003487F: arch/x86/power/
3488F: drivers/base/power/
3489F: kernel/power/
3490F: include/linux/suspend.h
3491F: include/linux/freezer.h
3492F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003493F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003494
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003495HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003496M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003497L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003498T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003500F: drivers/hid/
3501F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003502
Ingo Molnar38bed542007-02-22 09:09:34 +01003503HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003504M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003505T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003507F: Documentation/timers/
3508F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003509F: kernel/time/clockevents.c
3510F: kernel/time/tick*.*
3511F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003512F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003513F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003514
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003517S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003518F: drivers/net/hamradio/dmascc.c
3519F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003521HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003522M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003523W: http://www.highpoint-tech.com
3524S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003525F: Documentation/scsi/hptiop.txt
3526F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003527
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003529M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530L: linux-hippi@sunsite.dk
3531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003532F: include/linux/hippidevice.h
3533F: include/linux/if_hippi.h
3534F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003535F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536
Jouni Malinenff1d2762005-05-12 22:54:16 -04003537HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003538M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003539L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003540L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003541W: http://hostap.epitest.fi/
3542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003543F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003544
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003545HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003546L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003547S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003548F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003549
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003550HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003551M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003552S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003553F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003554
Joe Perches7d2c86b2009-04-07 20:59:01 -07003555HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003556M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003558F: Documentation/timers/hpet.txt
3559F: drivers/char/hpet.c
3560F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003561
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003562HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003563M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003565F: arch/x86/kernel/hpet.c
3566F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003567
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003569M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003572F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573
Joe Perches7d2c86b2009-04-07 20:59:01 -07003574HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003575M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003576W: http://www.pharscape.org
3577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003578F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003579
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003580HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003581M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003582L: linux-input@vger.kernel.org
3583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003584F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003585
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003587M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003589F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003591Hyper-V CORE AND DRIVERS
3592M: K. Y. Srinivasan <kys@microsoft.com>
3593M: Haiyang Zhang <haiyangz@microsoft.com>
3594L: devel@linuxdriverproject.org
3595S: Maintained
3596F: drivers/hv/
3597F: drivers/hid/hid-hyperv.c
3598F: drivers/net/hyperv/
3599F: drivers/staging/hv/
3600
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003601I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003602M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003603L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003605F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003606
Jean Delvare5b543962005-08-15 19:51:02 +02003607I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003608M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
3609M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Wolfram Sangd7a5e242012-01-12 20:32:05 +01003610M: "Wolfram Sang (embedded platforms)" <w.sang@pengutronix.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003611L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003612W: http://i2c.wiki.kernel.org/
3613T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003614T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003616F: Documentation/i2c/
3617F: drivers/i2c/
3618F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003619F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620
Till Harbaume8c76ee2007-05-01 23:26:35 +02003621I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003622M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003623L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003624W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003626F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003627
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003629M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003631F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632
3633i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003634M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003635T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636S: Maintained
3637
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003639M: Tony Luck <tony.luck@intel.com>
3640M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003642T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003644F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645
Kent Yoder956c2032012-09-07 04:17:01 +08003646IBM Power in-Nest Crypto Acceleration
3647M: Kent Yoder <key@linux.vnet.ibm.com>
3648L: linux-crypto@vger.kernel.org
3649S: Supported
3650F: drivers/crypto/nx/
3651
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003652IBM Power 842 compression accelerator
3653M: Robert Jennings <rcj@linux.vnet.ibm.com>
3654S: Supported
3655F: drivers/crypto/nx/nx-842.c
3656F: include/linux/nx842.h
3657
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003659M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003661F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662
Santiago Leon9d348af2010-09-03 18:29:53 +00003663IBM Power Virtual Ethernet Device Driver
3664M: Santiago Leon <santil@linux.vnet.ibm.com>
3665L: netdev@vger.kernel.org
3666S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003667F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003668
Robert Jennings4b7652c2012-07-31 12:34:36 -05003669IBM Power Virtual SCSI/FC Device Drivers
3670M: Robert Jennings <rcj@linux.vnet.ibm.com>
3671L: linux-scsi@vger.kernel.org
3672S: Supported
3673F: drivers/scsi/ibmvscsi/
3674X: drivers/scsi/ibmvscsi/ibmvstgt.c
3675
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676IBM ServeRAID RAID DRIVER
3677P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003678M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003680S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003681F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003683ICH LPC AND GPIO DRIVER
3684M: Peter Tyser <ptyser@xes-inc.com>
3685S: Maintained
3686F: drivers/mfd/lpc_ich.c
3687F: drivers/gpio/gpio-ich.c
3688
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003689IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003690M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003692Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003693T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003695F: Documentation/ide/
3696F: drivers/ide/
3697F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698
Ike Panhc6cb8c132011-08-25 22:28:45 +08003699IDEAPAD LAPTOP EXTRAS DRIVER
3700M: Ike Panhc <ike.pan@canonical.com>
3701L: platform-driver-x86@vger.kernel.org
3702W: http://launchpad.net/ideapad-laptop
3703S: Maintained
3704F: drivers/platform/x86/ideapad-laptop.c
3705
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003706IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003707M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003708L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003710F: Documentation/cdrom/ide-cd
3711F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712
Andy Henroid27471fd2008-10-09 11:45:22 -07003713IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003714M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003715L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003716S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003717F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003718
Sergey Lapin02cf2282009-06-08 12:18:50 +00003719IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003720M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003721M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003722L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003723W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003724T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003725S: Maintained
3726F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003727F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003728F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003729
Ameya Palande9545f862012-01-10 09:00:58 -08003730IIO SUBSYSTEM AND DRIVERS
3731M: Jonathan Cameron <jic23@cam.ac.uk>
3732L: linux-iio@vger.kernel.org
3733S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003734F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003735F: drivers/staging/iio/
3736
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003737IKANOS/ADI EAGLE ADSL USB DRIVER
3738M: Matthieu Castet <castet.matthieu@free.fr>
3739M: Stanislaw Gruszka <stf_xl@wp.pl>
3740S: Maintained
3741F: drivers/usb/atm/ueagle-atm.c
3742
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003743INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003744M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003745S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003746F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003747
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003749L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003750S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003751F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752
3753INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003754M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003755M: Sean Hefty <sean.hefty@intel.com>
3756M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003757L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003758W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003759Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003760T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003762F: Documentation/infiniband/
3763F: drivers/infiniband/
3764F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765
Robert Lovec9f04f52005-07-15 12:21:07 -04003766INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003767M: John McCutchan <john@johnmccutchan.com>
3768M: Robert Love <rlove@rlove.org>
3769M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003771F: Documentation/filesystems/inotify.txt
3772F: fs/notify/inotify/
3773F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003774
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003775INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003776M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3777M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003778L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003779Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003780T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003782F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003783F: include/linux/input.h
3784F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003785
Henrik Rydberg3267a872010-06-24 19:10:40 -07003786INPUT MULTITOUCH (MT) PROTOCOL
3787M: Henrik Rydberg <rydberg@euromail.se>
3788L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003789T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003790S: Maintained
3791F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003792F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003793K: \b(ABS|SYN)_MT_
3794
Dave Jiang4ac13e12011-07-29 17:16:55 -07003795INTEL C600 SERIES SAS CONTROLLER DRIVER
3796M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003797M: Lukasz Dorau <lukasz.dorau@intel.com>
3798M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003799M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003800L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003801T: git git://git.code.sf.net/p/intel-sas/isci
3802S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003803F: drivers/scsi/isci/
3804F: firmware/isci/
3805
Len Brown26717172010-03-08 14:07:30 -05003806INTEL IDLE DRIVER
3807M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003808L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003809T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003810S: Supported
3811F: drivers/idle/intel_idle.c
3812
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003813INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003814M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003815L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003817F: Documentation/fb/intelfb.txt
3818F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003819
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003821M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003822L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003824F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303826INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003827M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003828L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303829W: http://www.lesswatts.org/projects/acpi/
3830S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003831F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303832
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003834M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003836F: arch/x86/kernel/microcode_core.c
3837F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003839INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003840M: Dan Williams <djbw@fb.com>
3841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003842F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003843
David Woodhouse6c8909b2008-10-18 16:12:17 +01003844INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003845M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003846L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003847T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003848S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003849F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003850F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003851
Dan Williamsb3e5f262007-08-07 10:26:35 -07003852INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003853M: Dan Williams <djbw@fb.com>
3854S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003855F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003856
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003857INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003858M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003860F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3861F: arch/arm/mach-ixp4xx/include/mach/npe.h
3862F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3863F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003864F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003865F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003866
Michael Buesch844dd052006-06-26 00:24:59 -07003867INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003868M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003870F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003871
Jeff Kirsher0d164402010-10-05 01:15:17 +00003872INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003873M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3874M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3875M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003876M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3877M: Don Skidmore <donald.c.skidmore@intel.com>
3878M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003879M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003880M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003881M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003882L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003883W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003884T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3885T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003887F: Documentation/networking/e100.txt
3888F: Documentation/networking/e1000.txt
3889F: Documentation/networking/e1000e.txt
3890F: Documentation/networking/igb.txt
3891F: Documentation/networking/igbvf.txt
3892F: Documentation/networking/ixgb.txt
3893F: Documentation/networking/ixgbe.txt
3894F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003895F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896
Len Brown6dccf9c2011-07-12 22:29:32 -04003897INTEL MRST PMU DRIVER
3898M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003899L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003900S: Supported
3901F: arch/x86/platform/mrst/pmu.*
3902
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003903INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
3904M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07003905L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003907F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07003908F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003909F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06003910
Shane Wang4bd96a72010-03-10 14:36:10 +08003911INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07003912M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
3913M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08003914M: Shane Wang <shane.wang@intel.com>
3915L: tboot-devel@lists.sourceforge.net
3916W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07003917T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08003918S: Supported
3919F: Documentation/intel_txt.txt
3920F: include/linux/tboot.h
3921F: arch/x86/kernel/tboot.c
3922
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003923INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003924M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003925M: linux-wimax@intel.com
3926L: wimax@linuxwimax.org
3927S: Supported
3928W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003929F: Documentation/wimax/README.i2400m
3930F: drivers/net/wimax/i2400m/
3931F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003932
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003933INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3934M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003935L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003936S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003937F: drivers/net/wireless/iwlegacy/
3938
Zhu Yib481de92007-09-25 17:54:57 -07003939INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07003940M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003941M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003942M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003943L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003944W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07003945T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07003946S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003947F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003948
Tomas Winklerde8fe022012-05-09 16:39:02 +03003949INTEL MANAGEMENT ENGINE (mei)
3950M: Tomas Winkler <tomas.winkler@intel.com>
3951L: linux-kernel@vger.kernel.org
3952S: Supported
3953F: include/linux/mei.h
3954F: drivers/misc/mei/*
3955F: Documentation/mei/*
3956
Ralf Baechlecb109a02007-08-30 23:56:30 -07003957IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003958M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959L: linux-mips@linux-mips.org
3960S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07003961F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962
Ralf Baechlecb109a02007-08-30 23:56:30 -07003963IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003964M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01003965L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003966S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003967F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003968
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003969IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003970M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003972F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973
Francois Romieu1202d6f2007-09-17 17:13:55 -07003974IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003975M: Francois Romieu <romieu@fr.zoreil.com>
3976M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003977L: netdev@vger.kernel.org
3978S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07003979F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003980
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003981IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04003982M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003983L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07003984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003985F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003986
Corey Minyard4409ebe2006-04-20 02:43:12 -07003987IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003988M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003989L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003990W: http://openipmi.sourceforge.net/
3991S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003992F: Documentation/IPMI.txt
3993F: drivers/char/ipmi/
3994F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003995
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003996IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003997M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003998L: linux-scsi@vger.kernel.org
3999W: http://www.adaptec.com/
4000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004001F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004002
4003IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004004M: Wensong Zhang <wensong@linux-vs.org>
4005M: Simon Horman <horms@verge.net.au>
4006M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004007L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004008L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004010F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004011F: include/net/ip_vs.h
4012F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004013F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014
Randy Dunlape7839f22008-10-12 16:11:45 -07004015IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004016M: Jiri Kosina <jkosina@suse.cz>
4017M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004018S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004019F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004020
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004021IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004022M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004023L: netdev@vger.kernel.org
4024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004025F: include/linux/ipx.h
4026F: include/net/ipx.h
4027F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004028
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004030M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004031L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004032L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004034S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004035T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004036F: Documentation/networking/irda.txt
4037F: drivers/net/irda/
4038F: include/net/irda/
4039F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004041IRQ SUBSYSTEM
4042M: Thomas Gleixner <tglx@linutronix.de>
4043S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004044T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004045F: kernel/irq/
4046
Grant Likely7ab3a832012-02-14 14:06:47 -07004047IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4048M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4049M: Grant Likely <grant.likely@secretlab.ca>
4050T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4051S: Maintained
4052F: Documentation/IRQ-domain.txt
4053F: include/linux/irqdomain.h
4054F: kernel/irq/irqdomain.c
4055
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004056ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004057M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004059F: Documentation/isapnp.txt
4060F: drivers/pnp/isapnp/
4061F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004062
Harry Wei71a6d0a2011-05-11 15:13:33 -07004063iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4064M: Peter Jones <pjones@redhat.com>
4065M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4066S: Maintained
4067F: drivers/firmware/iscsi_ibft*
4068
Mike Christie14816b1e2007-11-28 16:22:06 -08004069ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004070M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004071L: open-iscsi@googlegroups.com
4072W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004073T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004075F: drivers/scsi/*iscsi*
4076F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004077
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004079M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004080L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004081L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004083T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004085F: Documentation/isdn/
4086F: drivers/isdn/
4087F: include/linux/isdn.h
4088F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089
4090ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004091M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004092L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093W: http://www.melware.de
4094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004095F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096
Jean Delvared6248702010-03-05 22:17:20 +01004097IT87 HARDWARE MONITORING DRIVER
4098M: Jean Delvare <khali@linux-fr.org>
4099L: lm-sensors@lm-sensors.org
4100S: Maintained
4101F: Documentation/hwmon/it87
4102F: drivers/hwmon/it87.c
4103
Hans Verkuil91821ff2007-12-02 09:35:33 -03004104IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004105M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004106L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004107L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004108T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004109W: http://www.ivtvdriver.org
4110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004111F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004112F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004113F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004114
Guenter Roeck4453d732010-08-09 17:21:08 -07004115JC42.4 TEMPERATURE SENSOR DRIVER
4116M: Guenter Roeck <linux@roeck-us.net>
4117L: lm-sensors@lm-sensors.org
4118S: Maintained
4119F: drivers/hwmon/jc42.c
4120F: Documentation/hwmon/jc42
4121
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004122JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004123M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004124L: jfs-discussion@lists.sourceforge.net
4125W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004126T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004128F: Documentation/filesystems/jfs.txt
4129F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004130
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004131JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004132M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004133L: netdev@vger.kernel.org
4134S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004135F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004136
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004138M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004139L: linux-mtd@lists.infradead.org
4140W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004142F: fs/jffs2/
4143F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144
Josh Triplettde456d32006-07-30 03:04:00 -07004145JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004146M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004147M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004148L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004149S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004150F: fs/jbd/
4151F: include/linux/ext3_jbd.h
4152F: include/linux/jbd.h
4153
4154JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4155M: "Theodore Ts'o" <tytso@mit.edu>
4156L: linux-ext4@vger.kernel.org
4157S: Maintained
4158F: fs/jbd2/
4159F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004160
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004161JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004162M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004163L: linux-serial@vger.kernel.org
4164S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004165F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004166
Clemens Ladischaf399172011-01-10 16:32:54 +01004167K10TEMP HARDWARE MONITORING DRIVER
4168M: Clemens Ladisch <clemens@ladisch.de>
4169L: lm-sensors@lm-sensors.org
4170S: Maintained
4171F: Documentation/hwmon/k10temp
4172F: drivers/hwmon/k10temp.c
4173
Rudolf Marek4660cb32006-10-08 22:01:26 +02004174K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004175M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004176L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004178F: Documentation/hwmon/k8temp
4179F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180
4181KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004182M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004183L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004184S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004185F: Documentation/kbuild/kconfig-language.txt
4186F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187
Vivek Goyalea6c2082006-05-20 14:59:55 -07004188KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004189M: Vivek Goyal <vgoyal@redhat.com>
4190M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004191L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004192W: http://lse.sourceforge.net/kdump/
4193S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004194F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004195
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004197M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004198L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004200F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201
Michal Marek70fb7ba2010-01-29 14:22:43 +01004202KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004203M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004204T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4205T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004206L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004208F: Documentation/kbuild/
4209F: Makefile
4210F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004211F: scripts/basic/
4212F: scripts/mk*
4213F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
4215KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004216L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004217W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004218S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004220KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004221M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004222L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004224S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004225F: fs/nfsd/
4226F: include/linux/nfsd/
4227F: fs/lockd/
4228F: fs/nfs_common/
4229F: net/sunrpc/
4230F: include/linux/lockd/
4231F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232
Avi Kivity426d62e2006-12-13 00:34:03 -08004233KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07004234M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004235M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004236L: kvm@vger.kernel.org
4237W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004239F: Documentation/*/kvm.txt
4240F: arch/*/kvm/
4241F: arch/*/include/asm/kvm*
4242F: include/linux/kvm*
4243F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004244
Joerg Roedelad8003d2008-09-10 20:01:07 +02004245KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004246M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004247L: kvm@vger.kernel.org
4248W: http://kvm.qumranet.com
4249S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004250F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004251F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004252
Hollis Blanchard513014b2008-04-16 23:28:08 -05004253KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004254M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004255L: kvm-ppc@vger.kernel.org
4256W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004257S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004258F: arch/powerpc/include/asm/kvm*
4259F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004260
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004261KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004262M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004263L: kvm-ia64@vger.kernel.org
4264W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004265S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004266F: Documentation/ia64/kvm.txt
4267F: arch/ia64/include/asm/kvm*
4268F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004269
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004270KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004271M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004272M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004273M: linux390@de.ibm.com
4274L: linux-s390@vger.kernel.org
4275W: http://www.ibm.com/developerworks/linux/linux390/
4276S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004277F: Documentation/s390/kvm.txt
4278F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004279F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004280F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004281
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004282KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004283M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004284W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004285L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004287F: include/linux/kexec.h
4288F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004289
David Howellse9714612010-03-29 23:42:09 +01004290KEYS/KEYRINGS:
4291M: David Howells <dhowells@redhat.com>
4292L: keyrings@linux-nfs.org
4293S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004294F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004295F: include/linux/key.h
4296F: include/linux/key-type.h
4297F: include/keys/
4298F: security/keys/
4299
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004300KEYS-TRUSTED
4301M: David Safford <safford@watson.ibm.com>
4302M: Mimi Zohar <zohar@us.ibm.com>
4303L: linux-security-module@vger.kernel.org
4304L: keyrings@linux-nfs.org
4305S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004306F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004307F: include/keys/trusted-type.h
4308F: security/keys/trusted.c
4309F: security/keys/trusted.h
4310
4311KEYS-ENCRYPTED
4312M: Mimi Zohar <zohar@us.ibm.com>
4313M: David Safford <safford@watson.ibm.com>
4314L: linux-security-module@vger.kernel.org
4315L: keyrings@linux-nfs.org
4316S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004317F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004318F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004319F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004320
Jason Wessel5b778da2010-05-20 21:04:28 -05004321KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004322M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004323W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004324L: kgdb-bugreport@lists.sourceforge.net
4325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004326F: Documentation/DocBook/kgdb.tmpl
4327F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004328F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004329F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004330F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004331F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004332
Pekka Enberg456db8c2008-04-28 22:47:29 +03004333KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004334M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004335M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004336S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004337F: Documentation/kmemcheck.txt
4338F: arch/x86/include/asm/kmemcheck.h
4339F: arch/x86/mm/kmemcheck/
4340F: include/linux/kmemcheck.h
4341F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004342
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004343KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004344M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004345S: Maintained
4346F: Documentation/kmemleak.txt
4347F: include/linux/kmemleak.h
4348F: mm/kmemleak.c
4349F: mm/kmemleak-test.c
4350
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004351KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004352M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4353M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4354M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004355M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004357F: Documentation/kprobes.txt
4358F: include/linux/kprobes.h
4359F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004360
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004361KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004362M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004363W: http://miguelojeda.es/auxdisplay.htm
4364W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004366F: Documentation/auxdisplay/ks0108
4367F: drivers/auxdisplay/ks0108.c
4368F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004369
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004372S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004373F: Documentation/networking/lapb-module.txt
4374F: include/*/lapb.h
4375F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376
4377LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004378M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379L: linux-scsi@vger.kernel.org
4380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004381F: Documentation/scsi/53c700.txt
4382F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383
Richard Purdie263de9b2006-05-15 09:44:16 -07004384LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004385M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004386M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004387L: linux-leds@vger.kernel.org
4388T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004390F: drivers/leds/
4391F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004392
Jean Delvareb0461a42011-06-15 15:08:46 -07004393LEGACY EEPROM DRIVER
4394M: Jean Delvare <khali@linux-fr.org>
4395S: Maintained
4396F: Documentation/misc-devices/eeprom
4397F: drivers/misc/eeprom/eeprom.c
4398
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004400M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401L: legousb-devel@lists.sourceforge.net
4402W: http://legousb.sourceforge.net/
4403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004404F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405
Michael Krufky055616a2012-10-02 00:56:06 -03004406LG2160 MEDIA DRIVER
4407M: Michael Krufky <mkrufky@linuxtv.org>
4408L: linux-media@vger.kernel.org
4409W: http://linuxtv.org/
4410W: http://github.com/mkrufky
4411Q: http://patchwork.linuxtv.org/project/linux-media/list/
4412T: git git://linuxtv.org/mkrufky/tuners.git
4413S: Maintained
4414F: drivers/media/dvb-frontends/lg2160.*
4415
Michael Krufky6f0e7722012-10-02 00:56:00 -03004416LGDT3305 MEDIA DRIVER
4417M: Michael Krufky <mkrufky@linuxtv.org>
4418L: linux-media@vger.kernel.org
4419W: http://linuxtv.org/
4420W: http://github.com/mkrufky
4421Q: http://patchwork.linuxtv.org/project/linux-media/list/
4422T: git git://linuxtv.org/mkrufky/tuners.git
4423S: Maintained
4424F: drivers/media/dvb-frontends/lgdt3305.*
4425
Rusty Russell568a17f2007-10-25 14:12:24 +10004426LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004427M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004428L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004429W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004430S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004431F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004432F: arch/x86/lguest/
4433F: drivers/lguest/
4434F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004435F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004436
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004438M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439W: http://www.ibm.com/linux/ltc/projects/ppc
4440S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004441F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004443LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004444M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4445M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004447L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004448Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004449T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004451F: Documentation/powerpc/
4452F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453
4454LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004455M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004457L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004459F: arch/powerpc/platforms/powermac/
4460F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461
Grant Likely77a76362008-07-12 12:11:43 -06004462LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004463M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004464L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004465T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004467F: arch/powerpc/platforms/512x/
4468F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469
4470LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004471M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004472M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004474L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004475T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004477F: arch/powerpc/platforms/40x/
4478F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479
Grant Likely260c02a2007-10-02 12:15:34 +10004480LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004481M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004482W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004483L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004484T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004486F: arch/powerpc/*/*virtex*
4487F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
Tom Rinie93adf12005-07-26 12:49:53 -07004489LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004490M: Vitaly Bordug <vitb@kernel.crashing.org>
4491M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004492W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004493L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004494S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004495F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004496
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004498M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004499W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004500L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004501S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004502F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004503F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504
Olof Johanssonab06ff32006-09-06 14:44:54 -05004505LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004506M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004507L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004508S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004509F: arch/powerpc/platforms/pasemi/
4510F: drivers/*/*pasemi*
4511F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004512
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004514M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004515L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516S: Supported
4517
Harry Weia23ce6d2011-02-11 16:52:20 +01004518LIS3LV02D ACCELEROMETER DRIVER
4519M: Eric Piel <eric.piel@tremplin-utc.net>
4520S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004521F: Documentation/misc-devices/lis3lv02d
4522F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004523F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004524
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004525LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004526M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004528F: include/linux/llc.h
4529F: include/net/llc*
4530F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004531
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004532LM73 HARDWARE MONITOR DRIVER
4533M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4534L: lm-sensors@lm-sensors.org
4535S: Maintained
4536F: drivers/hwmon/lm73.c
4537
Jean Delvare156e2d12011-07-25 21:46:11 +02004538LM78 HARDWARE MONITOR DRIVER
4539M: Jean Delvare <khali@linux-fr.org>
4540L: lm-sensors@lm-sensors.org
4541S: Maintained
4542F: Documentation/hwmon/lm78
4543F: drivers/hwmon/lm78.c
4544
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004546M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004547L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004549F: Documentation/hwmon/lm83
4550F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551
4552LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004553M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004554L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004556F: Documentation/hwmon/lm90
4557F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004559LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004560M: Peter Zijlstra <peterz@infradead.org>
4561M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004562T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004564F: Documentation/lockdep*.txt
4565F: Documentation/lockstat.txt
4566F: include/linux/lockdep.h
4567F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004568
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004569LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004570M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004571L: linux-ntfs-dev@lists.sourceforge.net
4572W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004574F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004575F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576
Joern Engelef6ada32009-11-20 22:17:12 +01004577LogFS
4578M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304579M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004580L: logfs@logfs.org
4581W: logfs.org
4582S: Maintained
4583F: fs/logfs/
4584
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004585LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004586M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004587M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004588L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004589L: linux-scsi@vger.kernel.org
4590W: http://www.lsilogic.com/support
4591S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004592F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004593
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004595M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596L: linux-scsi@vger.kernel.org
4597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004598F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599
Guenter Roecke5f5c992010-06-25 11:59:54 -07004600LTC4261 HARDWARE MONITOR DRIVER
4601M: Guenter Roeck <linux@roeck-us.net>
4602L: lm-sensors@lm-sensors.org
4603S: Maintained
4604F: Documentation/hwmon/ltc4261
4605F: drivers/hwmon/ltc4261.c
4606
Mike Frysinger81365c32008-10-29 14:01:12 -07004607LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004608M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004609M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004610M: Cyril Hrubis <chrubis@suse.cz>
4611M: Caspar Zhang <caspar@casparzhang.com>
4612M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004613L: ltp-list@lists.sourceforge.net (subscribers-only)
4614W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004615T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004616T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004617S: Maintained
4618
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004619M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004620M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004621L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004622L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4623W: http://www.linux-m32r.org/
4624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004625F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004626
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004628M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629L: linux-m68k@lists.linux-m68k.org
4630W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004631T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004633F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004634F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635
4636M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004637M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004639L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004641F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642
4643M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004644M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645W: http://www.tazenda.demon.co.uk/phil/linux-hp
4646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004647F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648
Jiri Benc64a327a2007-05-05 11:47:08 -07004649MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004650M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004651L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004652W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004653T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4654T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004656F: Documentation/networking/mac80211-injection.txt
4657F: include/net/mac80211.h
4658F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004659
Stefano Brivio1036d862007-12-23 04:46:27 +01004660MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004661M: Stefano Brivio <stefano.brivio@polimi.it>
4662M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004663L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004664W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004665T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4666T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004668F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004669
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004670MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004671M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004672L: netdev@vger.kernel.org
4673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004674F: drivers/net/macvlan.c
4675F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004676
Michael Kerriskfaf16682005-07-31 22:34:47 -07004677MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004678M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004679W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004680L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004681S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004682
stephen hemminger44c14c12012-04-02 12:59:47 +00004683MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4684M: Mirko Lindner <mlindner@marvell.com>
4685M: Stephen Hemminger <shemminger@vyatta.com>
4686L: netdev@vger.kernel.org
4687S: Maintained
4688F: drivers/net/ethernet/marvell/sk*
4689
Stefano Brivio74cda162007-11-19 20:27:46 +01004690MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004691M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004692L: libertas-dev@lists.infradead.org
4693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004694F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004695
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004696MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004697M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004698L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004699S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004700F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004701F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
Bing Zhaofcad5842011-07-13 13:11:58 -07004703MARVELL MWIFIEX WIRELESS DRIVER
4704M: Bing Zhao <bzhao@marvell.com>
4705L: linux-wireless@vger.kernel.org
4706S: Maintained
4707F: drivers/net/wireless/mwifiex/
4708
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004709MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004710M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004711L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004712S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004713F: drivers/net/wireless/mwl8k.c
4714
Pierre Ossman2a695672009-03-16 19:52:26 +01004715MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004716M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004717S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004718F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004719
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004721L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004722S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004723F: drivers/video/matrox/matroxfb_*
4724F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725
Guenter Roeckca462082012-06-01 23:28:23 -07004726MAX16065 HARDWARE MONITOR DRIVER
4727M: Guenter Roeck <linux@roeck-us.net>
4728L: lm-sensors@lm-sensors.org
4729S: Maintained
4730F: Documentation/hwmon/max16065
4731F: drivers/hwmon/max16065.c
4732
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004733MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004734M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004735L: lm-sensors@lm-sensors.org
4736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004737F: Documentation/hwmon/max6650
4738F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004739
Joe Perches127c49a2009-04-08 08:34:04 -07004740MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004741M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004742P: LinuxTV.org Project
4743L: linux-media@vger.kernel.org
4744W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004745Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches08deed12012-03-23 15:01:57 -07004746T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Joe Perches127c49a2009-04-08 08:34:04 -07004747S: Maintained
4748F: Documentation/dvb/
4749F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004750F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004751F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004752F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004753F: include/media/
4754F: include/linux/dvb/
4755F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004756
4757MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004758M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004759L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004760W: http://megaraid.lsilogic.com
4761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004762F: Documentation/scsi/megaraid.txt
4763F: drivers/scsi/megaraid.*
4764F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004765
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004766MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768W: http://www.linux-mm.org
4769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004770F: include/linux/mm.h
4771F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004772
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004773MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004774M: Johannes Weiner <hannes@cmpxchg.org>
4775M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004776M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004777M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004778L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004779L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004781F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004782F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004783
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004785M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004787W: http://www.linux-mtd.infradead.org/
4788Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004789T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004791F: drivers/mtd/
4792F: include/linux/mtd/
4793F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794
Michal Simekc6375b02009-03-27 14:25:52 +01004795MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004796M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004797L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004798W: http://www.monstr.eu/fdt/
4799T: git git://git.monstr.eu/linux-2.6-microblaze.git
4800S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004801F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802
4803MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004804M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004806F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807
4808MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004809M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004811W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004812T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004813Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004814S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004815F: Documentation/mips/
4816F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004819M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004821F: include/linux/module.h
4822F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823
4824MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004826S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004827F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004828F: drivers/media/pci/meye/
Joe Perches679655d2009-04-07 20:44:32 -07004829F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830
Pavel Pisac58ff042007-05-16 01:10:41 +02004831MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004832M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004833L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004835F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004836
Jiri Slabyb9705b62008-04-30 00:53:48 -07004837MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004838M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004840F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004841F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004842
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004843MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004844M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004845L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004847F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004848
Anisse Astier0f1006b2009-12-17 11:28:49 +01004849MSI WMI SUPPORT
4850M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05004851L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004852S: Supported
4853F: drivers/platform/x86/msi-wmi.c
4854
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004855MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004856M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004857T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004858S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004859F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004860
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004861MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004862M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004863L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004864T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004866F: drivers/mmc/
4867F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004868
David Brownell15a05802007-08-08 09:12:54 -07004869MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004870S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004871F: drivers/mmc/host/mmc_spi.c
4872F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004873
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004875M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004877F: Documentation/sound/oss/MultiSound
4878F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879
Jiri Slabyd7354102006-12-08 02:38:35 -08004880MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004881S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004882F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004883F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004884
Felipe Balbi550a7372008-07-24 12:27:36 +03004885MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004886M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004887L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004888T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004890F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004891
Michael Krufkyea0af5f2012-10-02 00:55:41 -03004892MXL5007T MEDIA DRIVER
4893M: Michael Krufky <mkrufky@linuxtv.org>
4894L: linux-media@vger.kernel.org
4895W: http://linuxtv.org/
4896W: http://github.com/mkrufky
4897Q: http://patchwork.linuxtv.org/project/linux-media/list/
4898T: git git://linuxtv.org/mkrufky/tuners.git
4899S: Maintained
4900F: drivers/media/tuners/mxl5007t.*
4901
Brice Goglin2d3cf582008-05-17 12:45:36 +02004902MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004903M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004904L: netdev@vger.kernel.org
4905W: http://www.myri.com/scs/download-Myri10GE.html
4906S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004907F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004908
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04004910S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004911F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912
Daniel Mack23dc05a2011-05-18 11:28:38 +02004913NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4914M: Daniel Mack <zonque@gmail.com>
4915S: Maintained
4916L: alsa-devel@alsa-project.org
4917W: http://www.native-instruments.com
4918F: sound/usb/caiaq/
4919
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004921M: Petr Vandrovec <petr@vandrovec.name>
4922S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004923F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924
4925NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004926M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927L: linux-scsi@vger.kernel.org
4928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004929F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004931NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004932M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004933L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004934W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004935S: Supported
4936F: drivers/infiniband/hw/nes/
4937
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004938NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05004939M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07004940L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004942F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004943
Jon Masonb2f5a052010-07-15 08:47:27 +00004944NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00004945M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07004946L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07004947S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004948F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00004949F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07004950F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07004951
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953P: Harald Welte
4954P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01004955M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004956M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07004957L: netfilter-devel@vger.kernel.org
4958L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004959L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960W: http://www.netfilter.org/
4961W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02004962T: git git://1984.lsi.us.es/nf
4963T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004965F: include/linux/netfilter*
4966F: include/linux/netfilter/
4967F: include/net/netfilter/
4968F: net/*/netfilter.c
4969F: net/*/netfilter/
4970F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971
Paul Moore4cc67732006-09-25 15:57:13 -07004972NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00004973M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07004974W: http://netlabel.sf.net
4975L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00004976S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004977F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004978F: include/net/netlabel.h
4979F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004980
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004982M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004984W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004986F: include/linux/netrom.h
4987F: include/net/netrom.h
4988F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004990NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004991M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004993F: Documentation/blockdev/nbd.txt
4994F: drivers/block/nbd.c
4995F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996
Neil Horman6e436502009-10-05 03:56:55 +00004997NETWORK DROP MONITOR
4998M: Neil Horman <nhorman@tuxdriver.com>
4999L: netdev@vger.kernel.org
5000S: Maintained
5001W: https://fedorahosted.org/dropwatch/
5002F: net/core/drop_monitor.c
5003
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005005M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005006L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005007W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00005008W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005009T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5010T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005012F: net/
5013F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005014F: include/linux/in.h
5015F: include/linux/net.h
5016F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017
5018NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005019M: "David S. Miller" <davem@davemloft.net>
5020M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005021M: James Morris <jmorris@namei.org>
5022M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5023M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005024L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005025T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005027F: net/ipv4/
5028F: net/ipv6/
5029F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005030F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031
David S. Miller73b76562012-10-16 14:08:40 -04005032NETWORKING [IPSEC]
5033M: Steffen Klassert <steffen.klassert@secunet.com>
5034M: Herbert Xu <herbert@gondor.apana.org.au>
5035M: "David S. Miller" <davem@davemloft.net>
5036L: netdev@vger.kernel.org
5037T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5038S: Maintained
5039F: net/xfrm/
5040F: net/key/
5041F: net/ipv4/xfrm*
5042F: net/ipv6/xfrm*
5043F: include/uapi/linux/xfrm.h
5044F: include/net/xfrm.h
5045
James Morris10e2ff12007-08-25 14:41:28 -07005046NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005047M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005048L: netdev@vger.kernel.org
5049S: Maintained
5050
John W. Linville29f8f632006-01-18 14:52:48 -08005051NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005052M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005053L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005054Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005055T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005056S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005057F: net/mac80211/
5058F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005059F: net/wireless/
5060F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005061F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005062F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005063F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005064
Joe Perches788873a2009-04-16 09:38:45 +00005065NETWORKING DRIVERS
5066L: netdev@vger.kernel.org
5067W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005068T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5069T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005070S: Odd Fixes
5071F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005072F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005073F: include/linux/netdevice.h
5074F: include/linux/arcdevice.h
5075F: include/linux/etherdevice.h
5076F: include/linux/fcdevice.h
5077F: include/linux/fddidevice.h
5078F: include/linux/hippidevice.h
5079F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005080
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005081NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005082M: Sony Chacko <sony.chacko@qlogic.com>
5083M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005084L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005085W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005086S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005087F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005088
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005089NFC SUBSYSTEM
5090M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5091M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5092M: Samuel Ortiz <sameo@linux.intel.com>
5093L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005094L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005095S: Maintained
5096F: net/nfc/
5097F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005098F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005099F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005101NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005102M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005103L: linux-nfs@vger.kernel.org
5104W: http://client.linux-nfs.org
5105T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005107F: fs/lockd/
5108F: fs/nfs/
5109F: fs/nfs_common/
5110F: net/sunrpc/
5111F: include/linux/lockd/
5112F: include/linux/nfs*
5113F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114
5115NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005116M: Jan-Pascal van Best <janpascal@vanbest.org>
5117M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005120F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005122NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005123M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005124L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005125W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005126T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005127S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005128F: Documentation/filesystems/nilfs2.txt
5129F: fs/nilfs2/
5130F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005131
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005133M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005136F: Documentation/scsi/NinjaSCSI.txt
5137F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138
5139NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005140M: GOTO Masanori <gotom@debian.or.jp>
5141M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005144F: Documentation/scsi/NinjaSCSI.txt
5145F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005148M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005150W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005151T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005152S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005153F: Documentation/filesystems/ntfs.txt
5154F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005156NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005157M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005158L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005160F: drivers/video/riva/
5161F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162
Tony Lindgrenf5525782009-05-28 13:23:53 -07005163OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005164M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005165L: linux-omap@vger.kernel.org
5166W: http://www.muru.com/linux/omap/
5167W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005168Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005169T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005170S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005171F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005172F: drivers/i2c/busses/i2c-omap.c
5173F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005174
5175OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005176M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005177L: linux-omap@vger.kernel.org
5178S: Maintained
5179F: arch/arm/*omap*/*clock*
5180
5181OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005182M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005183L: linux-omap@vger.kernel.org
5184S: Maintained
5185F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005186F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005187
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005188OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5189M: Rajendra Nayak <rnayak@ti.com>
5190M: Paul Walmsley <paul@pwsan.com>
5191L: linux-omap@vger.kernel.org
5192S: Maintained
5193F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5194F: arch/arm/mach-omap2/powerdomain44xx.c
5195F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5196F: arch/arm/mach-omap2/clockdomain44xx.c
5197
Tony Lindgrenf5525782009-05-28 13:23:53 -07005198OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005199M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005200M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005201L: alsa-devel@alsa-project.org (subscribers-only)
5202L: linux-omap@vger.kernel.org
5203S: Maintained
5204F: sound/soc/omap/
5205
5206OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005207M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005208L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005209L: linux-omap@vger.kernel.org
5210S: Maintained
5211F: drivers/video/omap/
5212
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005213OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005214M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005215L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005216L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005217S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005218F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005219F: Documentation/arm/OMAP/DSS
5220
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005221OMAP HARDWARE SPINLOCK SUPPORT
5222M: Ohad Ben-Cohen <ohad@wizery.com>
5223L: linux-omap@vger.kernel.org
5224S: Maintained
5225F: drivers/hwspinlock/omap_hwspinlock.c
5226F: arch/arm/mach-omap2/hwspinlock.c
5227
Tony Lindgrenf5525782009-05-28 13:23:53 -07005228OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005229M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005230L: linux-omap@vger.kernel.org
5231S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005232F: drivers/mmc/host/omap.c
5233
5234OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305235M: Venkatraman S <svenkatr@ti.com>
5236L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005237L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305238S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005239F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005240
5241OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005242M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005243S: Maintained
5244F: drivers/char/hw_random/omap-rng.c
5245
Paul Walmsleyf400c822010-12-06 19:08:54 -07005246OMAP HWMOD SUPPORT
5247M: Benoît Cousson <b-cousson@ti.com>
5248M: Paul Walmsley <paul@pwsan.com>
5249L: linux-omap@vger.kernel.org
5250S: Maintained
5251F: arch/arm/mach-omap2/omap_hwmod.c
5252F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5253
5254OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5255M: Benoît Cousson <b-cousson@ti.com>
5256L: linux-omap@vger.kernel.org
5257S: Maintained
5258F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5259
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005260OMAP IMAGE SIGNAL PROCESSOR (ISP)
5261M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5262L: linux-media@vger.kernel.org
5263S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005264F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005265
Tony Lindgrenf5525782009-05-28 13:23:53 -07005266OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005267M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005268L: linux-usb@vger.kernel.org
5269L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005270T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005271S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005272F: drivers/usb/*/*omap*
5273F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005274
Kevin Hilman6d994712012-07-16 10:05:07 -07005275OMAP GPIO DRIVER
5276M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5277M: Kevin Hilman <khilman@ti.com>
5278L: linux-omap@vger.kernel.org
5279S: Maintained
5280F: drivers/gpio/gpio-omap.c
5281
Bob Copeland0ad122d2008-07-25 19:45:18 -07005282OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005283M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005284L: linux-karma-devel@lists.sourceforge.net
5285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005286F: Documentation/filesystems/omfs.txt
5287F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005288
Harald Weltec1986ee2005-11-13 16:06:29 -08005289OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005290M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005292F: drivers/char/pcmcia/cm4000_cs.c
5293F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005294
Harald Welte77c44ab2005-11-13 16:06:26 -08005295OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005296M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005298F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005299
Jonathan Corbet77d51402007-03-22 19:44:17 -03005300OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005301M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005302L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005303T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005304S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005305F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005306
Thomas Gleixner431bca72007-05-02 09:31:35 +02005307ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005308M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005309L: linux-mtd@lists.infradead.org
5310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005311F: drivers/mtd/onenand/
5312F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005313
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005315M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316L: osst-users@lists.sourceforge.net
5317L: linux-scsi@vger.kernel.org
5318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005319F: drivers/scsi/osst*
5320F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005322OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005323M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005324L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005326F: Documentation/i2c/busses/i2c-ocores
5327F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005328
Grant Likely860c44c2009-10-26 16:49:49 -07005329OPEN FIRMWARE AND FLATTENED DEVICE TREE
5330M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005331M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005332L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005333W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005334T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005335S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005336F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005337F: drivers/of
5338F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005339F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005340K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005341K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005342
Jonas Bonn19f9d392011-06-04 22:00:38 +03005343OPENRISC ARCHITECTURE
5344M: Jonas Bonn <jonas@southpole.se>
5345W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005346L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005347S: Maintained
5348T: git git://openrisc.net/~jonas/linux
5349F: arch/openrisc
5350
Jesse Grossccb13522011-10-25 19:26:31 -07005351OPENVSWITCH
5352M: Jesse Gross <jesse@nicira.com>
5353L: dev@openvswitch.org
5354W: http://openvswitch.org
5355T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5356S: Maintained
5357F: net/openvswitch/
5358
Clemens Ladischaf399172011-01-10 16:32:54 +01005359OPL4 DRIVER
5360M: Clemens Ladisch <clemens@ladisch.de>
5361L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5362T: git git://git.alsa-project.org/alsa-kernel.git
5363S: Maintained
5364F: sound/drivers/opl4/
5365
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07005367M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368L: oprofile-list@lists.sf.net
5369S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005370F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005371F: arch/*/oprofile/
5372F: drivers/oprofile/
5373F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005375ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005376M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005377M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005378L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5379W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005380T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005381S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005382F: Documentation/filesystems/ocfs2.txt
5383F: Documentation/filesystems/dlmfs.txt
5384F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005385
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005387L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005388W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005389W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005390S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005391F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005393OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005394M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005395M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005396L: osd-dev@open-osd.org
5397W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005398T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005399S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005400F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005401F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005402F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005403
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005404P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005405M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005406L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005407W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005409F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005410
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005411PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005412M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005413L: netdev@vger.kernel.org
5414S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005415F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005416
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005417PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005418M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005419L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005421F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005422
Steffen Klassert48fc2672010-08-13 10:10:46 -04005423PADATA PARALLEL EXECUTION MECHANISM
5424M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005425L: linux-crypto@vger.kernel.org
5426S: Maintained
5427F: kernel/padata.c
5428F: include/linux/padata.h
5429F: Documentation/padata.txt
5430
Harald Welte709ee532008-09-23 17:46:57 +02005431PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005432M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005433L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005434S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005435F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005436
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005437PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005438M: David Howells <dhowells@redhat.com>
5439M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005440L: linux-am33-list@redhat.com (moderated for non-subscribers)
5441W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005443F: Documentation/mn10300/
5444F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005445
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005447L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005448S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005449F: drivers/parport/
5450F: include/linux/parport*.h
5451F: drivers/char/ppdev.c
5452F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005454PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005455M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005456M: Chris Wright <chrisw@sous-sol.org>
5457M: Alok Kataria <akataria@vmware.com>
5458M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005459L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005460S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005461F: Documentation/ia64/paravirt_ops.txt
5462F: arch/*/kernel/paravirt*
5463F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005464
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005466M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005467L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468W: http://www.torque.net/linux-pp.html
5469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005470F: Documentation/blockdev/paride.txt
5471F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472
5473PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005474M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005475M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005476L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005478Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005479T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005481F: arch/parisc/
5482F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483
Jim Cromie1662d322006-10-06 00:43:59 -07005484PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005485M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005486L: lm-sensors@lm-sensors.org
5487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005488F: Documentation/hwmon/pc87360
5489F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005490
5491PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005492M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005494F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005495
Jean Delvare1ad107f2010-08-14 21:09:00 +02005496PC87427 HARDWARE MONITORING DRIVER
5497M: Jean Delvare <khali@linux-fr.org>
5498L: lm-sensors@lm-sensors.org
5499S: Maintained
5500F: Documentation/hwmon/pc87427
5501F: drivers/hwmon/pc87427.c
5502
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005503PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005504M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005505S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005506F: drivers/leds/leds-pca9532.c
5507F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005508
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005509PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005510M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005511L: linux-i2c@vger.kernel.org
5512S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005513F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005514
Wolfram Sanga1867d32009-09-18 22:45:51 +02005515PCA9564/PCA9665 I2C BUS DRIVER
5516M: Wolfram Sang <w.sang@pengutronix.de>
5517L: linux-i2c@vger.kernel.org
5518S: Maintained
5519F: drivers/i2c/algos/i2c-algo-pca.c
5520F: drivers/i2c/busses/i2c-pca-*
5521F: include/linux/i2c-algo-pca.h
5522F: include/linux/i2c-pca-platform.h
5523
Khalid Aziz3971dae2012-04-12 12:49:13 -07005524PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005525M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005526S: Maintained
5527F: drivers/firmware/pcdp.*
5528
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005529PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005530M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005531L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005532S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005533F: Documentation/PCI/pci-error-recovery.txt
5534F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005535
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005537M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005538L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005539Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005540T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005542F: Documentation/PCI/
5543F: drivers/pci/
5544F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005547P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005548L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005549W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005550T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005552F: Documentation/pcmcia/
5553F: drivers/pcmcia/
5554F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555
5556PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005557M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005558L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005560F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561
Steffen Klassert48fc2672010-08-13 10:10:46 -04005562PCRYPT PARALLEL CRYPTO ENGINE
5563M: Steffen Klassert <steffen.klassert@secunet.com>
5564L: linux-crypto@vger.kernel.org
5565S: Maintained
5566F: crypto/pcrypt.c
5567F: include/crypto/pcrypt.h
5568
Tejun Heoe72df0b2010-12-10 17:02:49 +01005569PER-CPU MEMORY ALLOCATOR
5570M: Tejun Heo <tj@kernel.org>
5571M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005572T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5573S: Maintained
5574F: include/linux/percpu*.h
5575F: mm/percpu*.c
5576F: arch/*/include/asm/percpu.h
5577
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005578PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005579M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005581F: include/linux/delayacct.h
5582F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005583
Ingo Molnar57c0c152009-09-21 12:20:38 +02005584PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005585M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5586M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005587M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005588M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005589T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005590S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005591F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005592F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005593F: arch/*/kernel/perf_event*.c
5594F: arch/*/kernel/*/perf_event*.c
5595F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005596F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005597F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005598F: arch/*/kernel/perf_callchain.c
5599F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005600
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005601PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005602M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005603L: linux-abi-devel@lists.sourceforge.net
5604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005605F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005606
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005607PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005608M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005609S: Supported
5610F: Documentation/networking/phonet.txt
5611F: include/linux/phonet.h
5612F: include/net/phonet/
5613F: net/phonet/
5614
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005616M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617L: linux-mtd@lists.infradead.org
5618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005619F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620
Bruno Prémontefdbb102012-07-30 21:39:03 +02005621PICOLCD HID DRIVER
5622M: Bruno Prémont <bonbons@linux-vserver.org>
5623L: linux-input@vger.kernel.org
5624S: Maintained
5625F: drivers/hid/hid-picolcd*
5626
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005627PICOXCELL SUPPORT
5628M: Jamie Iles <jamie@jamieiles.com>
5629L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5630T: git git://github.com/jamieiles/linux-2.6-ji.git
5631S: Supported
5632F: arch/arm/mach-picoxcell
5633F: drivers/*/picoxcell*
5634F: drivers/*/*/picoxcell*
5635
Linus Walleij2744e8a2011-05-02 20:50:54 +02005636PIN CONTROL SUBSYSTEM
5637M: Linus Walleij <linus.walleij@linaro.org>
5638S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005639F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005640F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005641
Viresh Kumardeda8282012-03-28 22:27:07 +05305642PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005643M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305644L: spear-devel@list.st.com
5645L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5646W: http://www.st.com/spear
5647S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005648F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305649
Peter Osterlund249a6772005-09-27 21:45:30 -07005650PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005651M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005653F: drivers/block/pktcdvd.c
5654F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005655
GuanXuetaob31d8272011-01-16 00:35:49 +08005656PKUNITY SOC DRIVERS
5657M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5658W: http://mprc.pku.edu.cn/~guanxuetao/linux
5659S: Maintained
5660T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5661F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005662F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005663F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005664F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005665
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005666PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005667M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005668L: lm-sensors@lm-sensors.org
5669W: http://www.lm-sensors.org/
5670W: http://www.roeck-us.net/linux/drivers/
5671T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5672S: Maintained
5673F: Documentation/hwmon/pmbus
5674F: drivers/hwmon/pmbus/
5675F: include/linux/i2c/pmbus.h
5676
Anil Ravindranath89a36812009-08-25 17:35:18 -07005677PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005678M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005679L: linux-scsi@vger.kernel.org
5680W: http://www.pmc-sierra.com/
5681S: Supported
5682F: drivers/scsi/pmcraid.*
5683
jack wangdbf9bfe2009-10-14 16:19:21 +08005684PMC SIERRA PM8001 DRIVER
5685M: jack_wang@usish.com
5686M: lindar_liu@usish.com
5687L: linux-scsi@vger.kernel.org
5688S: Supported
5689F: drivers/scsi/pm8001/
5690
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005692M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005693T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005695F: fs/timerfd.c
5696F: include/linux/timer*
5697F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698
Anton Vorontsov3be86142007-07-15 04:43:36 +04005699POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005700M: Anton Vorontsov <cbou@mail.ru>
5701M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005702T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005704F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005705F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005706
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005708M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005709M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005711F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712
Vitaly Wool999445d2007-01-04 13:07:03 +01005713PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005714M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005715L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005717F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005718
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005720M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721L: linux-ppp@vger.kernel.org
5722S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005723F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724
5725PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005726M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005728F: net/atm/pppoatm.c
5729F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730
5731PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005732M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005734F: drivers/net/ppp/pppoe.c
5735F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736
James Chapmana6d23702007-06-27 15:53:17 -07005737PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005738M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005739S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005740F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005741F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005742
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005743PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005744M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005745W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5746L: linuxpps@ml.enneenne.com (subscribers-only)
5747S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005748F: Documentation/pps/
5749F: drivers/pps/
5750F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005751
Harry Wei71a6d0a2011-05-11 15:13:33 -07005752PPTP DRIVER
5753M: Dmitry Kozlov <xeb@mail.ru>
5754L: netdev@vger.kernel.org
5755S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005756F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005757W: http://sourceforge.net/projects/accel-pptp
5758
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005760M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005761L: kpreempt-tech@lists.sourceforge.net
5762W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5763S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005764F: Documentation/preempt-locking.txt
5765F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766
5767PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005768M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005769L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005770W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005771S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005772F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005774PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005775M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005776L: linux-ide@vger.kernel.org
5777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005778F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005779
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005780PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005781M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005782L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005783L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005784S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005785F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005786
Geoff Levandf58a9d12006-11-23 00:46:51 +01005787PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005788M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005789L: linuxppc-dev@lists.ozlabs.org
5790L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005792F: arch/powerpc/boot/ps3*
5793F: arch/powerpc/include/asm/lv1call.h
5794F: arch/powerpc/include/asm/ps3*.h
5795F: arch/powerpc/platforms/ps3/
5796F: drivers/*/ps3*
5797F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005798F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005799F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005800F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005801
Jim Pariscffb4add2009-01-06 11:32:10 +00005802PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005803M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005804L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005805S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005806F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005807
Anton Vorontsov8defe592012-08-03 18:07:20 -07005808PSTORE FILESYSTEM
5809M: Anton Vorontsov <cbouatmailru@gmail.com>
5810M: Colin Cross <ccross@android.com>
5811M: Kees Cook <keescook@chromium.org>
5812M: Tony Luck <tony.luck@intel.com>
5813S: Maintained
5814T: git git://git.infradead.org/users/cbou/linux-pstore.git
5815F: fs/pstore/
5816F: include/linux/pstore*
5817F: drivers/firmware/efivars.c
5818F: drivers/acpi/apei/erst.c
5819
Richard Cochran7fbc4152012-03-10 01:55:53 +00005820PTP HARDWARE CLOCK SUPPORT
5821M: Richard Cochran <richardcochran@gmail.com>
5822S: Maintained
5823W: http://linuxptp.sourceforge.net/
5824F: Documentation/ABI/testing/sysfs-ptp
5825F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07005826F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00005827F: drivers/net/phy/dp83640*
5828F: drivers/ptp/*
5829F: include/linux/ptp_cl*
5830
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005831PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005832M: Roland McGrath <roland@redhat.com>
5833M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005834S: Maintained
5835F: include/asm-generic/syscall.h
5836F: include/linux/ptrace.h
5837F: include/linux/regset.h
5838F: include/linux/tracehook.h
5839F: kernel/ptrace.c
5840
Michael Krufky83202042006-07-03 00:24:18 -07005841PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005842M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005843L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005844L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005845W: http://www.isely.net/pvrusb2/
Joe Perches08deed12012-03-23 15:01:57 -07005846T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Michael Krufky83202042006-07-03 00:24:18 -07005847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005848F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03005849F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005850
Thierry Reding200efed2012-03-27 13:16:18 +02005851PWM SUBSYSTEM
5852M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005853L: linux-kernel@vger.kernel.org
5854S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02005855W: http://gitorious.org/linux-pwm
5856T: git git://gitorious.org/linux-pwm/linux-pwm.git
5857F: Documentation/pwm.txt
5858F: Documentation/devicetree/bindings/pwm/
5859F: include/linux/pwm.h
5860F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005861F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07005862F: drivers/video/backlight/pwm_bl.c
5863F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005864
Eric Miao30ec2612008-06-12 15:21:41 -07005865PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005866M: Eric Miao <eric.y.miao@gmail.com>
5867M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005868M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005869L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005870T: git git://github.com/hzhuang1/linux.git
5871T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005873F: arch/arm/mach-pxa/
5874F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08005875F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07005876F: drivers/usb/gadget/pxa2*
5877F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005878F: sound/arm/pxa*
5879F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005880
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005881MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005882M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005883M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005884L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005885T: git git://github.com/hzhuang1/linux.git
5886T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005887S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005888F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005889
Pierre Ossman272f1332007-05-14 21:25:26 +02005890PXA MMCI DRIVER
5891S: Orphan
5892
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005893PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005894M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005895L: rtc-linux@googlegroups.com
5896S: Maintained
5897
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005898QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005899M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005900L: linux-rdma@vger.kernel.org
5901S: Supported
5902F: drivers/infiniband/hw/qib/
5903
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005904QLOGIC QLA1280 SCSI DRIVER
5905M: Michael Reed <mdr@sgi.com>
5906L: linux-scsi@vger.kernel.org
5907S: Maintained
5908F: drivers/scsi/qla1280.[ch]
5909
Linus Torvalds1da177e2005-04-16 15:20:36 -07005910QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005911M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005912M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005913L: linux-scsi@vger.kernel.org
5914S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005915F: Documentation/scsi/LICENSE.qla2xxx
5916F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917
Ravi Anand883c98f2010-04-28 11:45:49 +05305918QLOGIC QLA4XXX iSCSI DRIVER
5919M: Ravi Anand <ravi.anand@qlogic.com>
5920M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5921M: iscsi-driver@qlogic.com
5922L: linux-scsi@vger.kernel.org
5923S: Supported
5924F: drivers/scsi/qla4xxx/
5925
Ron Mercer5a4faa872006-07-25 00:40:21 -07005926QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00005927M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005928M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07005929M: linux-driver@qlogic.com
5930L: netdev@vger.kernel.org
5931S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005932F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005933F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07005934
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005935QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00005936M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07005937M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005938M: linux-driver@qlogic.com
5939L: netdev@vger.kernel.org
5940S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005941F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005942
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005943QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00005944M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005945M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07005946M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005947L: netdev@vger.kernel.org
5948S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005949F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005950
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005952M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953W: http://www.alarsen.net/linux/qnx4fs/
5954S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005955F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07005956F: include/linux/qnx4_fs.h
5957F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958
Antti Palosaari91952bc2012-10-01 12:28:46 -03005959QT1010 MEDIA DRIVER
5960M: Antti Palosaari <crope@iki.fi>
5961L: linux-media@vger.kernel.org
5962W: http://linuxtv.org/
5963W: http://palosaari.fi/linux/
5964Q: http://patchwork.linuxtv.org/project/linux-media/list/
5965T: git git://linuxtv.org/anttip/media_tree.git
5966S: Maintained
5967F: drivers/media/tuners/qt1010*
5968
Richard Kuo4f4567c2011-10-31 18:56:38 -05005969QUALCOMM HEXAGON ARCHITECTURE
5970M: Richard Kuo <rkuo@codeaurora.org>
5971L: linux-hexagon@vger.kernel.org
5972S: Supported
5973F: arch/hexagon/
5974
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005975RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07005976M: Yehuda Sadeh <yehuda@inktank.com>
5977M: Sage Weil <sage@inktank.com>
5978M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005979M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07005980W: http://ceph.com/
5981T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005982S: Supported
5983F: drivers/block/rbd.c
5984F: drivers/block/rbd_types.h
5985
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005987M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005988L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005990F: drivers/video/aty/radeon*
5991F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992
5993RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005994M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005995L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005997F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998
Randy Dunlape7839f22008-10-12 16:11:45 -07005999RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006000P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006001M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006002M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006003M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006004L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006005L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006006W: http://rt2x00.serialmonkey.com/
6007S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006008T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006009F: drivers/net/wireless/rt2x00/
6010
Nick Piggin9db55792008-02-08 04:19:49 -08006011RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006012M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006014F: Documentation/blockdev/ramdisk.txt
6015F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006016
Matt Mackall9e95ce22005-04-16 15:25:56 -07006017RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006018M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006020F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006021
Matt Porter394b7012005-11-07 01:00:15 -08006022RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006023M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006024M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006026F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006027
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006028RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006029L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006030S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006031F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006032
6033RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006034M: Josh Triplett <josh@freedesktop.org>
6035M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006036S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006037T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006038F: Documentation/RCU/torture.txt
6039F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006040
Florian Fainellic1f766b2008-02-06 22:39:44 +01006041RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006042M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006043S: Maintained
6044
Florian Fainellidb17f392007-12-19 11:30:30 +01006045RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006046M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006047L: netdev@vger.kernel.org
6048S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006049F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006050
Andy Grovera09ed662009-02-24 15:30:41 +00006051RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006052M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006053L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006054S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006055F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006056
Josh Triplett595182b2006-10-04 02:17:21 -07006057READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006058M: Dipankar Sarma <dipankar@in.ibm.com>
6059M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006060W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006061S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006062T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006063F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006064X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006065F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006066F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006067X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006068
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006069REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006070M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006071L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006072Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006074F: Documentation/rtc.txt
6075F: drivers/rtc/
6076F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006077
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006079L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006081F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082
Mark Brownb83a3132011-05-11 19:59:58 +02006083REGISTER MAP ABSTRACTION
6084M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6085T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6086S: Supported
6087F: drivers/base/regmap/
6088F: include/linux/regmap.h
6089
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006090REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6091M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006092T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006093S: Maintained
6094F: drivers/remoteproc/
6095F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006096F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006097
Ivo van Doorne08976452008-04-12 19:23:55 +02006098RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006099M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006100L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006101W: http://wireless.kernel.org/
6102T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6103T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006104S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006105F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006106F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006107
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006108RICOH SMARTMEDIA/XD DRIVER
6109M: Maxim Levitsky <maximlevitsky@gmail.com>
6110S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006111F: drivers/mtd/nand/r852.c
6112F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006113
Maxim Levitsky92634122011-03-25 01:56:59 -07006114RICOH R5C592 MEMORYSTICK DRIVER
6115M: Maxim Levitsky <maximlevitsky@gmail.com>
6116S: Maintained
6117F: drivers/memstick/host/r592.*
6118
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119ROCKETPORT DRIVER
6120P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121W: http://www.comtrol.com
6122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006123F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006124F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125
6126ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006127M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006129W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006131F: include/linux/rose.h
6132F: include/net/rose.h
6133F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134
Antti Palosaari91952bc2012-10-01 12:28:46 -03006135RTL2830 MEDIA DRIVER
6136M: Antti Palosaari <crope@iki.fi>
6137L: linux-media@vger.kernel.org
6138W: http://linuxtv.org/
6139W: http://palosaari.fi/linux/
6140Q: http://patchwork.linuxtv.org/project/linux-media/list/
6141T: git git://linuxtv.org/anttip/media_tree.git
6142S: Maintained
6143F: drivers/media/dvb-frontends/rtl2830*
6144
Larry Finger59840482008-11-12 17:13:09 -06006145RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006146M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006147L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006148W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006149T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006150S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006151F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006152
Larry Finger59840482008-11-12 17:13:09 -06006153RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006154M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006155M: Hin-Tak Leung <htl10@users.sourceforge.net>
6156M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006157L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006158W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006159T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006160S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006161F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006162
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006163RTL8192CE WIRELESS DRIVER
6164M: Larry Finger <Larry.Finger@lwfinger.net>
6165M: Chaoming Li <chaoming_li@realsil.com.cn>
6166L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006167W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006168T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6169S: Maintained
6170F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006171F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006172
6173S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006174M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006175L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006177F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006178
Linus Torvalds1da177e2005-04-16 15:20:36 -07006179S390
Joe Perches8b58be82009-07-29 15:04:30 -07006180M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6181M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006182M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006183L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006184W: http://www.ibm.com/developerworks/linux/linux390/
6185S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006186F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006187F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006188F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006189F: Documentation/s390/
6190F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006191
6192S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006193M: Ursula Braun <ursula.braun@de.ibm.com>
6194M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006195M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006196L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006197W: http://www.ibm.com/developerworks/linux/linux390/
6198S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006199F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006200
Felix Beckfeed9b62009-03-26 15:24:23 +01006201S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006202M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006203M: linux390@de.ibm.com
6204L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006205W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006206S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006207F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006208
Heiko Carstens5238da42006-02-11 17:56:01 -08006209S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006210M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006211M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006212L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006213W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006215F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216
Ursula Braundd96df22007-09-19 13:09:02 +02006217S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006218M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006219M: linux390@de.ibm.com
6220L: linux-s390@vger.kernel.org
6221W: http://www.ibm.com/developerworks/linux/linux390/
6222S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006223F: drivers/s390/net/*iucv*
6224F: include/net/iucv/
6225F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006226
Ben Dooks4dde7f72008-06-30 22:40:38 +01006227S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006228M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006229L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006230S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006231F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006232
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006234M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006235L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006236T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237W: http://www.mihu.de/linux/saa7146
6238S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006239F: drivers/media/common/saa7146/
6240F: drivers/media/pci/saa7146/
6241F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242
Corentin Chary92304a42011-12-05 12:38:35 -05006243SAMSUNG LAPTOP DRIVER
6244M: Corentin Chary <corentincj@iksaif.net>
6245L: platform-driver-x86@vger.kernel.org
6246S: Maintained
6247F: drivers/platform/x86/samsung-laptop.c
6248
Mark Brown4a109cc2010-09-24 10:50:46 +01006249SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006250M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006251L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6252S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006253F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006254
Jingoo Han0d89a282011-12-19 11:09:35 +09006255SAMSUNG FRAMEBUFFER DRIVER
6256M: Jingoo Han <jg1.han@samsung.com>
6257L: linux-fbdev@vger.kernel.org
6258S: Maintained
6259F: drivers/video/s3c-fb.c
6260
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006261SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6262M: Sangbeom Kim <sbkim73@samsung.com>
6263L: linux-kernel@vger.kernel.org
6264S: Supported
6265F: drivers/mfd/sec*.c
6266F: drivers/regulator/s2m*.c
6267F: drivers/regulator/s5m*.c
6268F: drivers/rtc/rtc-sec.c
6269F: include/linux/mfd/samsung/
6270
Alan Coxca749e22011-03-18 13:56:14 +00006271SERIAL DRIVERS
6272M: Alan Cox <alan@linux.intel.com>
6273L: linux-serial@vger.kernel.org
6274S: Maintained
6275F: drivers/tty/serial
6276
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306277SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006278M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306279S: Maintained
6280F: include/linux/dw_dmac.h
6281F: drivers/dma/dw_dmac_regs.h
6282F: drivers/dma/dw_dmac.c
6283
Thomas Gleixner88606e82010-12-14 21:37:13 +01006284TIMEKEEPING, NTP
6285M: John Stultz <johnstul@us.ibm.com>
6286M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006287T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006288S: Supported
6289F: include/linux/clocksource.h
6290F: include/linux/time.h
6291F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006292F: kernel/time/clocksource.c
6293F: kernel/time/time*.c
6294F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006295F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006296
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006297TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006298M: Huang Shijie <shijie8@gmail.com>
6299M: Kang Yong <kangyong@telegent.com>
6300M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006301S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006302F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006303
Linus Torvalds1da177e2005-04-16 15:20:36 -07006304SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006305M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006307F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006308
6309SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006310M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006311M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006312T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006314F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006315F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006316
Chen Liqin6bcf6732009-06-13 15:24:33 +08006317SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006318M: Chen Liqin <liqin.chen@sunplusct.com>
6319M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006320W: http://www.sunplusct.com
6321S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006322F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006323
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006325M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006326L: linux-scsi@vger.kernel.org
6327W: http://www.kernel.dk
6328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006329F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006330
Roland Dreierfb50a832010-10-07 09:54:53 -07006331SCSI RDMA PROTOCOL (SRP) INITIATOR
6332M: David Dillow <dillowda@ornl.gov>
6333L: linux-rdma@vger.kernel.org
6334S: Supported
6335W: http://www.openfabrics.org
6336Q: http://patchwork.kernel.org/project/linux-rdma/list/
6337T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6338F: drivers/infiniband/ulp/srp/
6339F: include/scsi/srp.h
6340
Linus Torvalds1da177e2005-04-16 15:20:36 -07006341SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006342M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343L: linux-scsi@vger.kernel.org
6344W: http://www.torque.net/sg
6345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006346F: drivers/scsi/sg.c
6347F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348
6349SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006350M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006352T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6353T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6354T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006356F: drivers/scsi/
6357F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358
6359SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006360M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361L: linux-scsi@vger.kernel.org
6362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006363F: Documentation/scsi/st.txt
6364F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365
6366SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006367M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006368M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006369L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006370W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006372F: Documentation/networking/sctp.txt
6373F: include/linux/sctp.h
6374F: include/net/sctp/
6375F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376
6377SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006378M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006379S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006380F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006381F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006382F: drivers/watchdog/scx200_wdt.c
6383F: drivers/i2c/busses/scx200*
6384F: drivers/mtd/maps/scx200_docflash.c
6385F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006386
6387SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006388M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006390F: drivers/char/scx200_gpio.c
6391F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006392
6393SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006394M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006396F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006397
Sascha Sommer6a369132008-07-15 14:21:29 +02006398SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006399M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006400L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006402F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006403
Randy Dunlape7839f22008-10-12 16:11:45 -07006404SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006405M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006406L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006407T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6408S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006409F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006410F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006411
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006412SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006413M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006414L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006415L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006417F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006418
Ben Dooks0d1bb412009-06-14 13:52:37 +01006419SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006420M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006421L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006422S: Maintained
6423F: drivers/mmc/host/sdhci-s3c.c
6424
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006425SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006426M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006427L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006428L: linux-mmc@vger.kernel.org
6429S: Maintained
6430F: drivers/mmc/host/sdhci-spear.c
6431
James Morris8711cca2008-12-04 03:19:45 +11006432SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006433M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006434L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006435T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006436W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006437S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006438F: security/
James Morris8711cca2008-12-04 03:19:45 +11006439
Linus Torvalds1da177e2005-04-16 15:20:36 -07006440SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006441M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442S: Supported
6443
6444SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006445M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006446M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006447M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006448L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006449W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006450T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006452F: include/linux/selinux*
6453F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006454F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455
John Johansenc1c124e2010-07-29 14:48:09 -07006456APPARMOR SECURITY MODULE
6457M: John Johansen <john.johansen@canonical.com>
6458L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6459W: apparmor.wiki.kernel.org
6460T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6461S: Supported
6462F: security/apparmor/
6463
Jiri Slabycef2cf02007-05-08 00:31:45 -07006464SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006465M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006467F: drivers/misc/phantom.c
6468F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006469
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006470SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006471M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006472L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006473T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006475F: drivers/ata/
6476F: include/linux/ata.h
6477F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006478
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306479SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006480M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006481L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006482W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006483S: Supported
6484F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306485
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006486SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006487M: Sathya Perla <sathya.perla@emulex.com>
6488M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6489M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006490L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006491W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006492S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006493F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006494
Ben Hutchings8ceee662008-04-27 12:55:59 +01006495SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006496M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006497M: Ben Hutchings <bhutchings@solarflare.com>
6498L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006499S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006500F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006501
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006502SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006503M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006505F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006506
6507SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006508M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006509L: linux-ia64@vger.kernel.org
6510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006511F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006512F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006513F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006514
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006516M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517L: linux-visws-devel@lists.sf.net
6518W: http://linux-visws.sf.net
6519S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006520F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521
Jack Steiner75312612008-08-15 00:40:42 -07006522SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006523M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006525F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006526
Len Brown6349d992009-08-14 15:07:14 -04006527SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006528M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006529L: sfi-devel@simplefirmware.org
6530W: http://simplefirmware.org/
6531T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006532S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006533F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006534F: drivers/sfi/
6535F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006536
Linus Torvalds1da177e2005-04-16 15:20:36 -07006537SIMTEC EB110ATX (Chalice CATS)
6538P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006539P: Vincent Sanders <vince@simtec.co.uk>
6540M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541W: http://www.simtec.co.uk/products/EB110ATX/
6542S: Supported
6543
6544SIMTEC EB2410ITX (BAST)
6545P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006546P: Vincent Sanders <vince@simtec.co.uk>
6547M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548W: http://www.simtec.co.uk/products/EB2410ITX/
6549S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006550F: arch/arm/mach-s3c2410/mach-bast.c
6551F: arch/arm/mach-s3c2410/bast-ide.c
6552F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006553
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006554TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006555M: Sekhar Nori <nsekhar@ti.com>
6556M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306557L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306558T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006559Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006560S: Supported
6561F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006562F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006563
Francois Romieu92aab3c2005-07-30 13:11:18 +02006564SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006565M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006566L: netdev@vger.kernel.org
6567S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006568F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006569
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006571M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006573L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006574S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006575F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006577SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006578M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006579L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006581F: Documentation/i2c/busses/i2c-sis96x
6582F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006583
Linus Torvalds1da177e2005-04-16 15:20:36 -07006584SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006585M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006586W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006588F: Documentation/fb/sisfb.txt
6589F: drivers/video/sis/
6590F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006591
6592SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006593M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594W: http://www.winischhofer.at/linuxsisusbvga.shtml
6595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006596F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006598SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006599M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006600M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006601M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006602L: linux-mm@kvack.org
6603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006604F: include/linux/sl?b*.h
6605F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006606
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006607SLEEPABLE READ-COPY UPDATE (SRCU)
6608M: Lai Jiangshan <laijs@cn.fujitsu.com>
6609M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6610W: http://www.rdrop.com/users/paulmck/RCU/
6611S: Supported
6612T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6613F: include/linux/srcu*
6614F: kernel/srcu*
6615
Casey Schaufler66372842012-05-23 18:34:52 -07006616SMACK SECURITY MODULE
6617M: Casey Schaufler <casey@schaufler-ca.com>
6618L: linux-security-module@vger.kernel.org
6619W: http://schaufler-ca.com
6620T: git git://git.gitorious.org/smack-next/kernel.git
6621S: Maintained
6622F: Documentation/security/Smack.txt
6623F: security/smack/
6624
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006626M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006627S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006628F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006630SMM665 HARDWARE MONITOR DRIVER
6631M: Guenter Roeck <linux@roeck-us.net>
6632L: lm-sensors@lm-sensors.org
6633S: Maintained
6634F: Documentation/hwmon/smm665
6635F: drivers/hwmon/smm665.c
6636
Steve Glendinning9df73052010-08-14 21:08:54 +02006637SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006638M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006639L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006640S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006641F: Documentation/hwmon/emc2103
6642F: drivers/hwmon/emc2103.c
6643
Hans de Goedea98d5062011-03-21 17:59:36 +01006644SMSC SCH5627 HARDWARE MONITOR DRIVER
6645M: Hans de Goede <hdegoede@redhat.com>
6646L: lm-sensors@lm-sensors.org
6647S: Supported
6648F: Documentation/hwmon/sch5627
6649F: drivers/hwmon/sch5627.c
6650
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006651SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006652M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006653L: lm-sensors@lm-sensors.org
6654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006655F: Documentation/hwmon/smsc47b397
6656F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006657
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006658SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006659M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006660L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006662F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006663F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006664
Steve Glendinning2cb37722008-12-11 20:54:30 -08006665SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006666M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006667L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006668S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006669F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006670
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006671SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006672M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006673L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006674S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006675F: drivers/video/smscufx.c
6676
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006677SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006678M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006679L: linux-altix@sgi.com
6680L: linux-ia64@vger.kernel.org
6681W: http://www.sgi.com/altix
6682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006683F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006684
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006685SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006686M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006687L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006688T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006689S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006690F: include/media/soc*
6691F: drivers/media/i2c/soc_camera/
6692F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006693
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006694SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006695M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006697F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006698
Linus Torvalds1da177e2005-04-16 15:20:36 -07006699SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006700M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006702S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006703F: drivers/md/
6704F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006705
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006707M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006708L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006709S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006710F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711
Michael Buesch61e115a2007-09-18 15:12:50 -04006712SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006713M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006714L: netdev@vger.kernel.org
6715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006716F: drivers/ssb/
6717F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006718
Linus Torvalds1da177e2005-04-16 15:20:36 -07006719SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006720M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05006721L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006722W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006724F: Documentation/laptops/sony-laptop.txt
6725F: drivers/char/sonypi.c
6726F: drivers/platform/x86/sony-laptop.c
6727F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006728
Alex Dubovbaf85322008-02-09 10:20:54 -08006729SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006730M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006731W: http://tifmxx.berlios.de/
6732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006733F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006734
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006736M: Jaroslav Kysela <perex@perex.cz>
6737M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006738L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006739W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006740T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006741T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006742S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006743F: Documentation/sound/
6744F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006745F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006746
Mark Brownbd903bd2008-11-19 19:16:05 +00006747SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006748M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006749M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006750T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006751L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006752W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006753S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006754F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006755F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006756
Sam Ravnborg473321f2009-01-04 15:47:49 -08006757SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006758M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006759L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006760Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006761T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6762T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006764F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006765F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766
David S. Miller6404fcc2010-03-16 01:00:17 -07006767SPARC SERIAL DRIVERS
6768M: "David S. Miller" <davem@davemloft.net>
6769L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006770T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6771T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07006772S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05006773F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006774F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006775F: drivers/tty/serial/sunhv.c
6776F: drivers/tty/serial/sunsab.c
6777F: drivers/tty/serial/sunsab.h
6778F: drivers/tty/serial/sunsu.c
6779F: drivers/tty/serial/sunzilog.c
6780F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006781
Christopher Li389325b2012-04-05 14:25:14 -07006782SPARSE CHECKER
6783M: "Christopher Li" <sparse@chrisli.org>
6784L: linux-sparse@vger.kernel.org
6785W: https://sparse.wiki.kernel.org/
6786T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
6787T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
6788S: Maintained
6789F: include/linux/compiler.h
6790
viresh kumarfc0c1952010-04-01 12:31:21 +01006791SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006792M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306793M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006794L: spear-devel@list.st.com
6795L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006796W: http://www.st.com/spear
6797S: Maintained
6798F: arch/arm/plat-spear/
6799
Viresh Kumar71e09a92012-04-20 22:39:48 +05306800SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006801M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306802M: Shiraz Hashim <shiraz.hashim@st.com>
6803L: spear-devel@list.st.com
6804L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6805W: http://www.st.com/spear
6806S: Maintained
6807F: arch/arm/mach-spear13xx/
6808
viresh kumarfc0c1952010-04-01 12:31:21 +01006809SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006810M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306811M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006812L: spear-devel@list.st.com
6813L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006814W: http://www.st.com/spear
6815S: Maintained
6816F: arch/arm/mach-spear3xx/
6817
6818SPEAR6XX MACHINE SUPPORT
6819M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306820M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006821M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006822L: spear-devel@list.st.com
6823L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006824W: http://www.st.com/spear
6825S: Maintained
6826F: arch/arm/mach-spear6xx/
6827
6828SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006829M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006830L: spear-devel@list.st.com
6831L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006832W: http://www.st.com/spear
6833S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05306834F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01006835
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006836SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006837M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006838L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006839Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006840T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006842F: Documentation/spi/
6843F: drivers/spi/
6844F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006845
Jim Lewis2752e402006-09-29 02:01:19 -07006846SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006847M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6848M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07006849L: netdev@vger.kernel.org
6850S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006851F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006852F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07006853
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006854SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006855M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006856L: linuxppc-dev@lists.ozlabs.org
6857L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006858W: http://www.ibm.com/developerworks/power/cell/
6859S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006860F: Documentation/filesystems/spufs.txt
6861F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006862
Phillip Lougherfc555842009-01-05 08:46:29 +00006863SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006864M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006865L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6866W: http://squashfs.org.uk
6867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006868F: Documentation/filesystems/squashfs.txt
6869F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006870
Linus Torvalds1da177e2005-04-16 15:20:36 -07006871SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006872M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006874F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875
Linus Torvalds26e9a392008-10-17 09:50:12 -07006876STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08006877M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08006878L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08006879S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006880
Linus Torvalds26e9a392008-10-17 09:50:12 -07006881STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08006882M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006883T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006884L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08006885S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006886F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006887
Joe Perchesc8c8b102011-07-05 09:42:12 -07006888STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6889M: Henk de Groot <pe1dnn@amsat.org>
6890S: Odd Fixes
6891F: drivers/staging/wlags49_h2/
6892F: drivers/staging/wlags49_h25/
6893
Joe Perchesc9555152011-07-05 09:42:01 -07006894STAGING - ASUS OLED
6895M: Jakub Schmidtke <sjakub@gmail.com>
6896S: Odd Fixes
6897F: drivers/staging/asus_oled/
6898
Joe Perchesebd3d012011-07-05 09:42:02 -07006899STAGING - COMEDI
6900M: Ian Abbott <abbotti@mev.co.uk>
6901M: Mori Hess <fmhess@users.sourceforge.net>
6902S: Odd Fixes
6903F: drivers/staging/comedi/
6904
Joe Perches8ca572c2011-07-05 09:42:03 -07006905STAGING - CRYSTAL HD VIDEO DECODER
6906M: Naren Sankar <nsankar@broadcom.com>
6907M: Jarod Wilson <jarod@wilsonet.com>
6908M: Scott Davilla <davilla@4pi.com>
6909M: Manu Abraham <abraham.manu@gmail.com>
6910S: Odd Fixes
6911F: drivers/staging/crystalhd/
6912
Joe Perches0f16ffc2011-07-05 09:42:04 -07006913STAGING - ECHO CANCELLER
6914M: Steve Underwood <steveu@coppice.org>
6915M: David Rowe <david@rowetel.com>
6916S: Odd Fixes
6917F: drivers/staging/echo/
6918
Mark Einon8dc2bbe72011-08-29 18:42:37 +01006919STAGING - ET131X NETWORK DRIVER
6920M: Mark Einon <mark.einon@gmail.com>
6921S: Odd Fixes
6922F: drivers/staging/et131x/
6923
Joe Perchesa0138162011-07-05 15:21:34 -07006924STAGING - FLARION FT1000 DRIVERS
6925M: Marek Belisko <marek.belisko@gmail.com>
6926S: Odd Fixes
6927F: drivers/staging/ft1000/
6928
Joe Perchesec3fab92011-07-05 09:42:05 -07006929STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6930M: David Täht <d@teklibre.com>
6931S: Odd Fixes
6932F: drivers/staging/frontier/
6933
Joe Perches6c1bb422011-07-05 09:42:07 -07006934STAGING - INDUSTRIAL IO
6935M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07006936L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07006937S: Odd Fixes
6938F: drivers/staging/iio/
6939
Joe Perchesa0138162011-07-05 15:21:34 -07006940STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
6941M: Jarod Wilson <jarod@wilsonet.com>
6942W: http://www.lirc.org/
6943S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006944F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07006945
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006946STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02006947M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006948M: Marc Dietrich <marvin24@gmx.de>
6949L: ac100@lists.launchpad.net (moderated for non-subscribers)
6950S: Maintained
6951F: drivers/staging/nvec/
6952
Joe Perchesa0138162011-07-05 15:21:34 -07006953STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
6954M: Andres Salomon <dilinger@queued.net>
6955M: Chris Ball <cjb@laptop.org>
6956M: Jon Nettleton <jon.nettleton@gmail.com>
6957W: http://wiki.laptop.org/go/DCON
6958S: Odd Fixes
6959F: drivers/staging/olpc_dcon/
6960
Chris Kelly94cfdd12012-03-14 10:55:42 +00006961STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00006962M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00006963M: Chris Kelly <ckelly@ozmodevices.com>
6964S: Maintained
6965F: drivers/staging/ozwpan/
6966
Joe Perchesa0138162011-07-05 15:21:34 -07006967STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07006968M: Willy Tarreau <willy@meta-x.org>
6969S: Odd Fixes
6970F: drivers/staging/panel/
6971
Joe Perchesa0138162011-07-05 15:21:34 -07006972STAGING - REALTEK RTL8712U DRIVERS
6973M: Larry Finger <Larry.Finger@lwfinger.net>
6974M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
6975S: Odd Fixes
6976F: drivers/staging/rtl8712/
6977
Joe Perches9629fa82011-07-05 09:42:09 -07006978STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
6979M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
6980S: Odd Fixes
6981F: drivers/staging/sm7xx/
6982
Joe Perchesa0138162011-07-05 15:21:34 -07006983STAGING - SOFTLOGIC 6x10 MPEG CODEC
6984M: Ben Collins <bcollins@bluecherry.net>
6985S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006986F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07006987
6988STAGING - SPEAKUP CONSOLE SPEECH DRIVER
6989M: William Hubbs <w.d.hubbs@gmail.com>
6990M: Chris Brannon <chris@the-brannons.com>
6991M: Kirk Reiser <kirk@braille.uwo.ca>
6992M: Samuel Thibault <samuel.thibault@ens-lyon.org>
6993L: speakup@braille.uwo.ca
6994W: http://www.linux-speakup.org/
6995S: Odd Fixes
6996F: drivers/staging/speakup/
6997
6998STAGING - TI DSP BRIDGE DRIVERS
6999M: Omar Ramirez Luna <omar.ramirez@ti.com>
7000S: Odd Fixes
7001F: drivers/staging/tidspbridge/
7002
Joe Perchesa0138162011-07-05 15:21:34 -07007003STAGING - USB ENE SM/MS CARD READER DRIVER
7004M: Al Cho <acho@novell.com>
7005S: Odd Fixes
7006F: drivers/staging/keucr/
7007
Joe Perchesb3e871c2011-07-05 09:42:10 -07007008STAGING - VIA VT665X DRIVERS
7009M: Forest Bond <forest@alittletooquiet.net>
7010S: Odd Fixes
7011F: drivers/staging/vt665?/
7012
Joe Perches81a9a522011-07-05 09:42:11 -07007013STAGING - WINBOND IS89C35 WLAN USB DRIVER
7014M: Pavel Machek <pavel@ucw.cz>
7015S: Odd Fixes
7016F: drivers/staging/winbond/
7017
Joe Perches709bcb02011-07-05 09:42:13 -07007018STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007019M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007020S: Odd Fixes
7021F: drivers/staging/xgifb/
7022
Linus Torvalds1da177e2005-04-16 15:20:36 -07007023STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007024M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007025S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007026F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007028SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007029M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007030W: http://sammy.net/sun3/
7031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007032F: arch/m68k/kernel/*sun3*
7033F: arch/m68k/sun3*/
7034F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007035F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007036
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007037SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007038M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007039L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007040W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007041Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007042T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007043S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007044F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007045F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007046F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007047
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007048SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007049M: Len Brown <len.brown@intel.com>
7050M: Pavel Machek <pavel@ucw.cz>
7051M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007052L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007053S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007054F: Documentation/power/
7055F: arch/x86/kernel/acpi/
7056F: drivers/base/power/
7057F: kernel/power/
7058F: include/linux/suspend.h
7059F: include/linux/freezer.h
7060F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007061
7062SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007063M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064L: linux-video@atrey.karlin.mff.cuni.cz
7065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007066F: Documentation/svga.txt
7067F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007068
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007069SWIOTLB SUBSYSTEM
7070M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7071L: linux-kernel@vger.kernel.org
7072S: Supported
7073F: lib/swiotlb.c
7074F: arch/*/kernel/pci-swiotlb.c
7075F: include/linux/swiotlb.h
7076
Linus Torvalds1da177e2005-04-16 15:20:36 -07007077SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007078M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007080F: Documentation/filesystems/sysv-fs.txt
7081F: fs/sysv/
7082F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007083
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007084TARGET SUBSYSTEM
7085M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7086L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007087L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007088L: http://groups.google.com/group/linux-iscsi-target-dev
7089W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007090T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007091S: Supported
7092F: drivers/target/
7093F: include/target/
7094F: Documentation/target/
7095
Alan Cox4e688522008-04-30 00:52:11 -07007096TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007097M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007099F: Documentation/accounting/taskstats*
7100F: include/linux/taskstats*
7101F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007102
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007103TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007104M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007105L: netdev@vger.kernel.org
7106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007107F: include/linux/pkt_cls.h
7108F: include/net/pkt_cls.h
7109F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007110
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007111TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007112M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7113M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007114W: http://tcp-lp-mod.sourceforge.net/
7115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007116F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007117
Antti Palosaari91952bc2012-10-01 12:28:46 -03007118TDA10071 MEDIA DRIVER
7119M: Antti Palosaari <crope@iki.fi>
7120L: linux-media@vger.kernel.org
7121W: http://linuxtv.org/
7122W: http://palosaari.fi/linux/
7123Q: http://patchwork.linuxtv.org/project/linux-media/list/
7124T: git git://linuxtv.org/anttip/media_tree.git
7125S: Maintained
7126F: drivers/media/dvb-frontends/tda10071*
7127
7128TDA18212 MEDIA DRIVER
7129M: Antti Palosaari <crope@iki.fi>
7130L: linux-media@vger.kernel.org
7131W: http://linuxtv.org/
7132W: http://palosaari.fi/linux/
7133Q: http://patchwork.linuxtv.org/project/linux-media/list/
7134T: git git://linuxtv.org/anttip/media_tree.git
7135S: Maintained
7136F: drivers/media/tuners/tda18212*
7137
7138TDA18218 MEDIA DRIVER
7139M: Antti Palosaari <crope@iki.fi>
7140L: linux-media@vger.kernel.org
7141W: http://linuxtv.org/
7142W: http://palosaari.fi/linux/
7143Q: http://patchwork.linuxtv.org/project/linux-media/list/
7144T: git git://linuxtv.org/anttip/media_tree.git
7145S: Maintained
7146F: drivers/media/tuners/tda18218*
7147
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007148TDA18271 MEDIA DRIVER
7149M: Michael Krufky <mkrufky@linuxtv.org>
7150L: linux-media@vger.kernel.org
7151W: http://linuxtv.org/
7152W: http://github.com/mkrufky
7153Q: http://patchwork.linuxtv.org/project/linux-media/list/
7154T: git git://linuxtv.org/mkrufky/tuners.git
7155S: Maintained
7156F: drivers/media/tuners/tda18271*
7157
Michael Krufkye48307a2012-10-02 00:56:33 -03007158TDA827x MEDIA DRIVER
7159M: Michael Krufky <mkrufky@linuxtv.org>
7160L: linux-media@vger.kernel.org
7161W: http://linuxtv.org/
7162W: http://github.com/mkrufky
7163Q: http://patchwork.linuxtv.org/project/linux-media/list/
7164T: git git://linuxtv.org/mkrufky/tuners.git
7165S: Maintained
7166F: drivers/media/tuners/tda8290.*
7167
Michael Krufky66cf9212012-10-02 00:56:28 -03007168TDA8290 MEDIA DRIVER
7169M: Michael Krufky <mkrufky@linuxtv.org>
7170L: linux-media@vger.kernel.org
7171W: http://linuxtv.org/
7172W: http://github.com/mkrufky
7173Q: http://patchwork.linuxtv.org/project/linux-media/list/
7174T: git git://linuxtv.org/mkrufky/tuners.git
7175S: Maintained
7176F: drivers/media/tuners/tda8290.*
7177
Jiri Pirko3d249d42011-11-11 22:16:48 +00007178TEAM DRIVER
7179M: Jiri Pirko <jpirko@redhat.com>
7180L: netdev@vger.kernel.org
7181S: Supported
7182F: drivers/net/team/
7183F: include/linux/if_team.h
7184
Erik Gilling84b94142010-06-09 15:35:53 -07007185TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007186M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007187L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007188Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7189T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007190S: Supported
7191F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007192F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007193F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007194
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007195TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007196M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007197L: netdev@vger.kernel.org
7198S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007199F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007200
Alan Cox4e688522008-04-30 00:52:11 -07007201Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007202M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007203S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007204F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007205
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007206TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007207M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007208M: Max Filippov <jcmvbkbc@gmail.com>
7209L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007211F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007212
7213THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007214M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007215L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007216L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007217W: http://ibm-acpi.sourceforge.net
7218W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007219T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007221F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007222
Alex Dubov4020f2d2006-10-04 02:15:37 -07007223TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007224M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007226F: drivers/misc/tifm*
7227F: drivers/mmc/host/tifm_sd.c
7228F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007229
M R Swami Reddy152ad442012-04-02 20:02:31 +05307230TI LM49xxx FAMILY ASoC CODEC DRIVERS
7231M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307232M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307233L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7234S: Maintained
7235F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307236F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307237
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007238TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007239M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007240L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7241S: Maintained
7242F: sound/soc/codecs/twl4030*
7243
Luciano Coelho90921012011-11-20 21:40:41 +02007244TI WILINK WIRELESS DRIVERS
7245M: Luciano Coelho <coelho@ti.com>
7246L: linux-wireless@vger.kernel.org
7247W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7248W: http://wireless.kernel.org/en/users/Drivers/wl1251
7249T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7250S: Maintained
7251F: drivers/net/wireless/ti/
7252F: include/linux/wl12xx.h
7253
Per Lidene86eaa32006-01-12 16:45:18 +01007254TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007255M: Jon Maloy <jon.maloy@ericsson.com>
7256M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007257L: netdev@vger.kernel.org (core kernel code)
7258L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007259W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007261F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007262F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007263
Chris Metcalf867e3592010-05-28 23:09:12 -04007264TILE ARCHITECTURE
7265M: Chris Metcalf <cmetcalf@tilera.com>
7266W: http://www.tilera.com/scm/
7267S: Supported
7268F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007269F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007270F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007271F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007272
Linus Torvalds1da177e2005-04-16 15:20:36 -07007273TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007274M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007275L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007276W: http://sourceforge.net/projects/tlan/
7277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007278F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007279F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007280
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007281TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007282M: Kentaro Takeda <takedakn@nttdata.co.jp>
7283M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007284L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7285L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007286L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7287L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7288W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007289T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007291F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007292
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007293TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007294M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007295L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007296S: Maintained
7297F: drivers/platform/x86/topstar-laptop.c
7298
Linus Torvalds1da177e2005-04-16 15:20:36 -07007299TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007300L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007301S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007302F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007303
7304TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007305M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007306L: tlinux-users@tce.toshiba-dme.co.jp
7307W: http://www.buzzard.org.uk/toshiba/
7308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007309F: drivers/char/toshiba.c
7310F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007311
Pierre Ossmand719f902009-03-24 21:06:09 +01007312TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007313M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007314M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007315L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007316S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007317F: drivers/mmc/host/tmio_mmc*
7318F: drivers/mmc/host/sh_mobile_sdhi.c
7319F: include/linux/mmc/tmio.h
7320F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007321
Hugh Dickins98f32602009-05-21 20:33:58 +01007322TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007323M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007324L: linux-mm@kvack.org
7325S: Maintained
7326F: include/linux/shmem_fs.h
7327F: mm/shmem.c
7328
Alan Cox4e688522008-04-30 00:52:11 -07007329TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007330M: Kent Yoder <key@linux.vnet.ibm.com>
7331M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007332W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007333M: Marcel Selhorst <tpmdd@selhorst.net>
7334M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007335W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007336L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007338F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007339
Joe Perchesd6f005a2009-10-26 16:49:40 -07007340TRACING
7341M: Steven Rostedt <rostedt@goodmis.org>
7342M: Frederic Weisbecker <fweisbec@gmail.com>
7343M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007344T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007345S: Maintained
7346F: Documentation/trace/ftrace.txt
7347F: arch/*/*/*/ftrace.h
7348F: arch/*/kernel/ftrace.c
7349F: include/*/ftrace.h
7350F: include/linux/trace*.h
7351F: include/trace/
7352F: kernel/trace/
7353
Linus Torvalds1da177e2005-04-16 15:20:36 -07007354TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007355M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007356T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007357S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007358K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359
Alan Cox4e688522008-04-30 00:52:11 -07007360TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007361M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7362S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007363T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007364F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007365F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007366F: include/linux/serial_core.h
7367F: include/linux/serial.h
7368F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007369
Antti Palosaari91952bc2012-10-01 12:28:46 -03007370TUA9001 MEDIA DRIVER
7371M: Antti Palosaari <crope@iki.fi>
7372L: linux-media@vger.kernel.org
7373W: http://linuxtv.org/
7374W: http://palosaari.fi/linux/
7375Q: http://patchwork.linuxtv.org/project/linux-media/list/
7376T: git git://linuxtv.org/anttip/media_tree.git
7377S: Maintained
7378F: drivers/media/tuners/tua9001*
7379
Grant Grundler740db6d2008-02-17 11:53:49 -07007380TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007381M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007382L: netdev@vger.kernel.org
7383S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007384F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007385
7386TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007387M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007388L: vtun@office.satix.net
7389W: http://vtun.sourceforge.net/tun
7390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007391F: Documentation/networking/tuntap.txt
7392F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007393
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007394TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007395M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007397F: drivers/tc/
7398F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007399
Linus Torvalds1da177e2005-04-16 15:20:36 -07007400U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007401M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007402L: linux-scsi@vger.kernel.org
7403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007404F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007405
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007406UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007407M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007408M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007409L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007410T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007411W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007413F: Documentation/filesystems/ubifs.txt
7414F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007415
Alan Coxcc2020e2008-05-19 14:21:51 +01007416UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007417M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007418W: http://www.uclinux.org/
7419L: uclinux-dev@uclinux.org (subscribers-only)
7420S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007421F: arch/m68k/*/*_no.*
7422F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007423
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007424UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007425M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007426W: http://uclinux-h8.sourceforge.jp/
7427S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007428F: arch/h8300/
7429F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007430F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007431
Linus Torvalds1da177e2005-04-16 15:20:36 -07007432UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007433M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007434S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007435F: Documentation/filesystems/udf.txt
7436F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007437
Alan Coxcc2020e2008-05-19 14:21:51 +01007438UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007439M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007441F: Documentation/filesystems/ufs.txt
7442F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007443
David Herrmann0a09d3a2012-06-10 15:16:28 +02007444UHID USERSPACE HID IO DRIVER:
7445M: David Herrmann <dh.herrmann@googlemail.com>
7446L: linux-input@vger.kernel.org
7447S: Maintained
7448F: drivers/hid/uhid.c
7449F: include/linux/uhid.h
7450
David Vrabel18332a82008-09-17 16:34:44 +01007451ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007452L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007453S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007454F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007455F: include/linux/uwb.h
7456F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007457
GuanXuetaob31d8272011-01-16 00:35:49 +08007458UNICORE32 ARCHITECTURE:
7459M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7460W: http://mprc.pku.edu.cn/~guanxuetao/linux
7461S: Maintained
7462T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7463F: arch/unicore32/
7464
Tony Finchd8379ab2009-11-27 15:50:30 +00007465UNIFDEF
7466M: Tony Finch <dot@dotat.at>
7467W: http://dotat.at/prog/unifdef
7468S: Maintained
7469F: scripts/unifdef.c
7470
Linus Torvalds1da177e2005-04-16 15:20:36 -07007471UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007472M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007473W: http://www.kernel.dk
7474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007475F: Documentation/cdrom/
7476F: drivers/cdrom/cdrom.c
7477F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007478
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307479UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7480M: Vinayak Holikatti <vinholikatti@gmail.com>
7481M: Santosh Y <santoshsy@gmail.com>
7482L: linux-scsi@vger.kernel.org
7483S: Supported
7484F: Documentation/scsi/ufs.txt
7485F: drivers/scsi/ufs/
7486
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007487UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007488M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007489W: http://www.linux-mtd.infradead.org/
7490L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007491T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007492S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007493F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007494F: include/linux/mtd/ubi.h
7495F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007496
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007497UNSORTED BLOCK IMAGES (UBI) Fastmap
7498M: Richard Weinberger <richard@nod.at>
7499L: linux-mtd@lists.infradead.org
7500S: Maintained
7501F: drivers/mtd/ubi/fastmap.c
7502
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007504M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007505L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007507F: Documentation/usb/acm.txt
7508F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007509
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007510USB ATTACHED SCSI
7511M: Matthew Wilcox <willy@linux.intel.com>
7512M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7513L: linux-usb@vger.kernel.org
7514L: linux-scsi@vger.kernel.org
7515S: Supported
7516F: drivers/usb/storage/uas.c
7517
Linus Torvalds1da177e2005-04-16 15:20:36 -07007518USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007519M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007520L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007521S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007522F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007523
Linus Torvalds1da177e2005-04-16 15:20:36 -07007524USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007525M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007526L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007528F: drivers/net/usb/cdc_*.c
7529F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007530
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007531USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007532M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007533L: linux-usb@vger.kernel.org
7534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007535F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007536
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007537USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007538M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007539L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007540W: http://www.linux-usb.org/usbnet
7541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007542F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007543
Alan Coxcc2020e2008-05-19 14:21:51 +01007544USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007545M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007546L: rio500-users@lists.sourceforge.net
7547W: http://rio500.sourceforge.net
7548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007549F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007550
Linus Torvalds1da177e2005-04-16 15:20:36 -07007551USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007552M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007553L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007555F: Documentation/usb/ehci.txt
7556F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557
David Brownell69ae9e32006-11-14 02:03:31 -08007558USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007559M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007560L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007561W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007562T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007564F: drivers/usb/gadget/
7565F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007566
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007567USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007568M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007569L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007570T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007571S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007572F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007573F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007574
matt mooney857aab32011-06-17 15:50:46 -07007575USB/IP DRIVERS
7576M: Matt Mooney <mfm@muteddisk.com>
7577L: linux-usb@vger.kernel.org
7578S: Maintained
7579F: drivers/staging/usbip/
7580
Olav Kongas959eea22005-11-03 17:38:14 +02007581USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007582M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007583L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007585F: drivers/usb/host/isp116x*
7586F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007587
Linus Torvalds1da177e2005-04-16 15:20:36 -07007588USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007589M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007590L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007592F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593
7594USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007595M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007596L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007597L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007598S: Maintained
7599W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007600F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007601
Clemens Ladischaf399172011-01-10 16:32:54 +01007602USB MIDI DRIVER
7603M: Clemens Ladisch <clemens@ladisch.de>
7604L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7605T: git git://git.alsa-project.org/alsa-kernel.git
7606S: Maintained
7607F: sound/usb/midi.*
7608
Linus Torvalds1da177e2005-04-16 15:20:36 -07007609USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007610M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007611L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007613F: Documentation/usb/ohci.txt
7614F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007615
Matthias Urlichsba460e42005-07-14 00:33:47 -07007616USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007617M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007618L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007620F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007621
Linus Torvalds1da177e2005-04-16 15:20:36 -07007622USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007623M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007624L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007625L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626W: http://pegasus2.sourceforge.net/
7627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007628F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007629
Felipe Balbid3ad5582012-05-21 16:24:49 +03007630USB PHY LAYER
7631M: Felipe Balbi <balbi@ti.com>
7632L: linux-usb@vger.kernel.org
7633T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7634S: Maintained
7635F: drivers/usb/phy/
7636F: drivers/usb/otg/
7637
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007638USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007639M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007640L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007641S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007642F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007643
7644USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007645M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007646L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007647L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007648W: http://pegasus2.sourceforge.net/
7649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007650F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007651
Alan Cox4e688522008-04-30 00:52:11 -07007652USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007653M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007654L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007656F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007657
7658USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007659M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007660L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007661S: Maintained
7662W: http://geocities.com/i0xox0i
7663W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007664F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007665
Linus Torvalds1da177e2005-04-16 15:20:36 -07007666USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007667M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007668W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007670F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007671
7672USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007673M: Peter Berger <pberger@brimson.com>
7674M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007675L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007677F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007678
7679USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007680M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007681L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007682S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007683F: Documentation/usb/usb-serial.txt
7684F: drivers/usb/serial/generic.c
7685F: drivers/usb/serial/usb-serial.c
7686F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007687
Linus Torvalds1da177e2005-04-16 15:20:36 -07007688USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007689M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007690L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007692F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007693
7694USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007695M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007696L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007698F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007699
7700USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007701M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007702L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007703W: http://www.connecttech.com
7704S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007705F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007706
Steve Glendinningb3f0db12012-08-15 21:53:38 +00007707USB SMSC75XX ETHERNET DRIVER
7708M: Steve Glendinning <steve.glendinning@shawell.net>
7709L: netdev@vger.kernel.org
7710S: Maintained
7711F: drivers/net/usb/smsc75xx.*
7712
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007713USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007714M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007715L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007717F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007718
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007719USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007720M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007721L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007722L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007723T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007724W: http://www.linux-projects.org
7725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007726F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007727F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007728
7729USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007730M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007731L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007732W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007733T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007734S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007735F: Documentation/usb/
7736F: drivers/net/usb/
7737F: drivers/usb/
7738F: include/linux/usb.h
7739F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007740
7741USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007742M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007743L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007745F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007746
David Brownell69ae9e32006-11-14 02:03:31 -08007747USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02007748M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007749L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007750W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07007751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007752F: drivers/net/usb/usbnet.c
7753F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007754
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007755USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007756M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03007757L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007758L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007759T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007760W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007761S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007762F: drivers/media/usb/uvc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007763
Laurent Pinchart8282da42012-10-04 02:32:42 +02007764USB WEBCAM GADGET
7765M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7766L: linux-usb@vger.kernel.org
7767S: Maintained
7768F: drivers/usb/gadget/*uvc*.c
7769F: drivers/usb/gadget/webcam.c
7770
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007771USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007772M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007773L: linux-wireless@vger.kernel.org
7774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007775F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007776
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007777USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007778M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007779L: linux-usb@vger.kernel.org
7780S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007781F: drivers/usb/host/xhci*
7782F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007783
Linus Torvalds1da177e2005-04-16 15:20:36 -07007784USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007785L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007786W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007787S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007788F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007789
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007790USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007791M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007792L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007793L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007794T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007795W: http://royale.zerezo.com/zr364xx/
7796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007797F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007798F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007799
Randy Dunlape7839f22008-10-12 16:11:45 -07007800USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007801M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007802M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007803L: user-mode-linux-devel@lists.sourceforge.net
7804L: user-mode-linux-user@lists.sourceforge.net
7805W: http://user-mode-linux.sourceforge.net
7806S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007807F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007808F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02007809F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07007810F: fs/hostfs/
7811F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007812
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007813USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007814M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08007815M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007817F: Documentation/DocBook/uio-howto.tmpl
7818F: drivers/uio/
7819F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007820
Karel Zak256cccb2012-06-01 10:13:09 +02007821UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007822M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02007823L: util-linux@vger.kernel.org
7824W: http://en.wikipedia.org/wiki/Util-linux
7825T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007826S: Maintained
7827
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007828UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007829M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007830L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007831W: http://dev.gentoo.org/~spock/projects/uvesafb/
7832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007833F: Documentation/fb/uvesafb.txt
7834F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007835
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007836VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007837M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007839F: Documentation/filesystems/vfat.txt
7840F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007841
Alex Williamsoncba33452012-07-31 08:16:22 -06007842VFIO DRIVER
7843M: Alex Williamson <alex.williamson@redhat.com>
7844L: kvm@vger.kernel.org
7845S: Maintained
7846F: Documentation/vfio.txt
7847F: drivers/vfio/
7848F: include/linux/vfio.h
7849
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007850VIDEOBUF2 FRAMEWORK
7851M: Pawel Osciak <pawel@osciak.com>
7852M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007853M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007854L: linux-media@vger.kernel.org
7855S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007856F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007857F: include/media/videobuf2-*
7858
Amit Shah9a824462010-03-23 18:23:09 +05307859VIRTIO CONSOLE DRIVER
7860M: Amit Shah <amit.shah@redhat.com>
7861L: virtualization@lists.linux-foundation.org
7862S: Maintained
7863F: drivers/char/virtio_console.c
7864F: include/linux/virtio_console.h
7865
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307866VIRTIO CORE, NET AND BLOCK DRIVERS
7867M: Rusty Russell <rusty@rustcorp.com.au>
7868M: "Michael S. Tsirkin" <mst@redhat.com>
7869L: virtualization@lists.linux-foundation.org
7870S: Maintained
7871F: drivers/virtio/
7872F: drivers/net/virtio_net.c
7873F: drivers/block/virtio_blk.c
7874F: include/linux/virtio_*.h
7875
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007876VIRTIO HOST (VHOST)
7877M: "Michael S. Tsirkin" <mst@redhat.com>
7878L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007879L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007880L: netdev@vger.kernel.org
7881S: Maintained
7882F: drivers/vhost/
7883F: include/linux/vhost.h
7884
Linus Torvalds1da177e2005-04-16 15:20:36 -07007885VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007886M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007887S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007888F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007889
Jean Delvare32c0a522005-09-22 21:47:58 +02007890VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007891M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01007892L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02007893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007894F: Documentation/i2c/busses/i2c-viapro
7895F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02007896
Harald Weltef0bf7f62009-06-17 20:22:39 +02007897VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007898M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007899M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007900S: Maintained
7901F: drivers/mmc/host/via-sdmmc.c
7902
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007903VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007904M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007905L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007906S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007907F: include/linux/via-core.h
7908F: include/linux/via-gpio.h
7909F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007910F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007911
Francois Romieu01f20732007-01-26 00:57:17 -08007912VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007913M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007914L: netdev@vger.kernel.org
7915S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007916F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007917
Patrick McHardybe7f8272007-10-23 20:26:36 -07007918VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007919M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007920L: netdev@vger.kernel.org
7921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007922F: drivers/net/macvlan.c
7923F: include/linux/if_*vlan.h
7924F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07007925
Florian Fainelli55e331c2009-06-16 15:33:53 -07007926VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007927M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08007928L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07007929S: Maintained
7930F: drivers/vlynq/vlynq.c
7931F: include/linux/vlynq.h
7932
Martyn Welch390beae2012-05-03 17:52:36 +01007933VME SUBSYSTEM
7934M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02007935M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01007936M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7937L: devel@driverdev.osuosl.org
7938S: Maintained
7939T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7940F: Documentation/vme_api.txt
7941F: drivers/staging/vme/
7942F: drivers/vme/
7943F: include/linux/vme*
7944
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007945VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08007946M: Shreyas Bhatewara <sbhatewara@vmware.com>
7947M: "VMware, Inc." <pv-drivers@vmware.com>
7948L: netdev@vger.kernel.org
7949S: Maintained
7950F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007951
Alok Kataria851b1642009-10-13 14:51:05 -07007952VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08007953M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07007954M: VMware PV-Drivers <pv-drivers@vmware.com>
7955L: linux-scsi@vger.kernel.org
7956S: Maintained
7957F: drivers/scsi/vmw_pvscsi.c
7958F: drivers/scsi/vmw_pvscsi.h
7959
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007960VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01007961M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007962M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007963W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00007964W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07007965T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007966S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007967F: drivers/regulator/
7968F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007969
Juerg Haefligerab413192006-09-24 20:54:04 +02007970VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007971M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02007972L: lm-sensors@lm-sensors.org
7973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007974F: Documentation/hwmon/vt1211
7975F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02007976
Roger Lucas1de9e372005-11-26 20:20:05 +01007977VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007978M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01007979L: lm-sensors@lm-sensors.org
7980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007981F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01007982
Tony Olech88095e72011-05-14 16:48:13 -04007983VUB300 USB to SDIO/SD/MMC bridge chip
7984M: Tony Olech <tony.olech@elandigitalsystems.com>
7985L: linux-mmc@vger.kernel.org
7986L: linux-usb@vger.kernel.org
7987S: Supported
7988F: drivers/mmc/host/vub300.c
7989
Linus Torvalds1da177e2005-04-16 15:20:36 -07007990W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07007991M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007993F: Documentation/w1/
7994F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007995
Charles Spirakis13927072006-07-05 18:05:15 +02007996W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007997M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02007998L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04007999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008000F: Documentation/hwmon/w83791d
8001F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008002
Rudolf Marek61db0112006-12-12 18:18:30 +01008003W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008004M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008005L: lm-sensors@lm-sensors.org
8006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008007F: Documentation/hwmon/w83793
8008F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008009
Jean Delvaree3760b42010-10-28 20:31:49 +02008010W83795 HARDWARE MONITORING DRIVER
8011M: Jean Delvare <khali@linux-fr.org>
8012L: lm-sensors@lm-sensors.org
8013S: Maintained
8014F: drivers/hwmon/w83795.c
8015
Linus Torvalds1da177e2005-04-16 15:20:36 -07008016W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008017M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008019F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008020
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008021WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008022M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008023L: linux-watchdog@vger.kernel.org
8024W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008025T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008027F: Documentation/watchdog/
8028F: drivers/watchdog/
8029F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008030
Linus Torvalds1da177e2005-04-16 15:20:36 -07008031WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008032M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008033L: linux-scsi@vger.kernel.org
8034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008035F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008036
David Herrmannb22e00f2011-09-06 13:50:40 +02008037WIIMOTE HID DRIVER
8038M: David Herrmann <dh.herrmann@googlemail.com>
8039L: linux-input@vger.kernel.org
8040S: Maintained
8041F: drivers/hid/hid-wiimote*
8042
David Härdemane258b802009-09-21 17:04:53 -07008043WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008044M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008045S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008046F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008047
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008048WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008049M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008050M: linux-wimax@intel.com
8051L: wimax@linuxwimax.org
8052S: Supported
8053W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008054F: Documentation/wimax/README.wimax
8055F: include/linux/wimax.h
8056F: include/linux/wimax/debug.h
8057F: include/net/wimax.h
8058F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008059
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008060WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008061M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008063F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008064
Linus Torvalds1da177e2005-04-16 15:20:36 -07008065WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008066M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008067L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008068W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008070F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008071
Mark Brownfebf1df2008-04-02 00:51:09 -04008072WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008073M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8074M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008075L: linux-input@vger.kernel.org
8076T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8077W: http://opensource.wolfsonmicro.com/node/7
8078S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008079F: drivers/input/touchscreen/*wm97*
8080F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008081
Mark Brown055bcbc2010-08-13 14:18:12 +01008082WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008083M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008084L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008085T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008086T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008087W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008088S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008089F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008090F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008091F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008092F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008093F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008094F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008095F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008096F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008097F: drivers/input/misc/wm831x-on.c
8098F: drivers/input/touchscreen/wm831x-ts.c
8099F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008100F: drivers/mfd/arizona*
8101F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008102F: drivers/power/wm83*.c
8103F: drivers/rtc/rtc-wm83*.c
8104F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008105F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008106F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008107F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008108F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008109F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008110F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008111F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008112F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008113F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008114F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008115
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008116WORKQUEUE
8117M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008118T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8119S: Maintained
8120F: include/linux/workqueue.h
8121F: kernel/workqueue.c
8122F: Documentation/workqueue.txt
8123
Linus Torvalds1da177e2005-04-16 15:20:36 -07008124X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008125M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008126L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008127S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008128F: Documentation/networking/x25*
8129F: include/net/x25*
8130F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008131
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008132X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008133M: Thomas Gleixner <tglx@linutronix.de>
8134M: Ingo Molnar <mingo@redhat.com>
8135M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008136M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008137T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008139F: Documentation/x86/
8140F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008141
Matthew Garrettd0944852010-02-11 10:40:13 -05008142X86 PLATFORM DRIVERS
8143M: Matthew Garrett <mjg@redhat.com>
8144L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008145T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008146S: Maintained
8147F: drivers/platform/x86
8148
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008149X86 MCE INFRASTRUCTURE
8150M: Tony Luck <tony.luck@intel.com>
8151M: Borislav Petkov <bp@amd64.org>
8152L: linux-edac@vger.kernel.org
8153S: Maintained
8154F: arch/x86/kernel/cpu/mcheck/*
8155
Ian Campbellc4468082011-04-27 15:26:46 -07008156XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008157M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008158M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008159L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8160L: virtualization@lists.linux-foundation.org
8161S: Supported
8162F: arch/x86/xen/
8163F: drivers/*/xen-*front.c
8164F: drivers/xen/
8165F: arch/x86/include/asm/xen/
8166F: include/xen/
8167
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008168XEN HYPERVISOR ARM
8169M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8170L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8171S: Supported
8172F: arch/arm/xen/
8173F: arch/arm/include/asm/xen/
8174
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008175XEN NETWORK BACKEND DRIVER
8176M: Ian Campbell <ian.campbell@citrix.com>
8177L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8178L: netdev@vger.kernel.org
8179S: Supported
8180F: drivers/net/xen-netback/*
8181
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008182XEN PCI SUBSYSTEM
8183M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008184L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008185S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008186F: arch/x86/pci/*xen*
8187F: drivers/pci/*xen*
8188
8189XEN SWIOTLB SUBSYSTEM
8190M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008191L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008192S: Supported
8193F: arch/x86/xen/*swiotlb*
8194F: drivers/xen/*swiotlb*
8195
Linus Torvalds1da177e2005-04-16 15:20:36 -07008196XFS FILESYSTEM
8197P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008198M: Ben Myers <bpm@sgi.com>
8199M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008200M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008201L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008202W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008203T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008204S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008205F: Documentation/filesystems/xfs.txt
8206F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008207
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008208XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008209M: Anirudha Sarangi <anirudh@xilinx.com>
8210M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008211S: Maintained
8212F: drivers/net/ethernet/xilinx/xilinx_axienet*
8213
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008214XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008215M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008216W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008218F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008219
Peter Korsgaard238b8722006-12-06 20:35:17 -08008220XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008221M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008222L: linux-serial@vger.kernel.org
8223S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008224F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008225
Linus Torvalds1da177e2005-04-16 15:20:36 -07008226YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008227M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008228L: linux-hams@vger.kernel.org
8229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008230F: drivers/net/hamradio/yam*
8231F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008232
Henkaf64a5e2005-10-12 15:02:56 +02008233YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008234M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008235L: usbb2k-api-dev@nongnu.org
8236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008237F: Documentation/input/yealink.txt
8238F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008239
Linus Torvalds1da177e2005-04-16 15:20:36 -07008240Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008241M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008242W: http://yaina.de/jreuter/
8243W: http://www.qsl.net/dl1bke/
8244L: linux-hams@vger.kernel.org
8245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008246F: Documentation/networking/z8530drv.txt
8247F: drivers/net/hamradio/*scc.c
8248F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008250ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008251M: Daniel Drake <dsd@gentoo.org>
8252M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008253W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008254L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008255L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8256S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008257F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008258
Linus Torvalds1da177e2005-04-16 15:20:36 -07008259ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008260L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008261L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008262W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008263T: Mercurial http://linuxtv.org/hg/v4l-dvb
8264S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008265F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008266
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008267ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008268M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008269S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008270F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008271
Linus Torvalds1da177e2005-04-16 15:20:36 -07008272THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008273M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008274L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008275Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008276T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008277S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008278F: *
8279F: */