blob: adbdac1d43c51650e30cffed8e32ad28f9f4b920 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew Garrettd09448532010-02-11 10:40:13 -0500225L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700226W: http://piie.net/?section=acerhdf
227S: Maintained
228F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200229
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230ACER WMI LAPTOP EXTRAS
Carlos Corbachod9269a72011-05-02 09:57:18 +0100231M: Joey Lee <jlee@novell.com>
Matthew Garrettd09448532010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700237M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200238M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500239L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400240W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800241Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400242T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700244F: drivers/acpi/
245F: drivers/pnp/pnpacpi/
246F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700247F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248
Len Brown8b59a452007-01-08 19:03:28 -0500249ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500251L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300252W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700254F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700262
Len Brown359acec2007-02-10 01:59:24 -0500263ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500269
Carlos Corbachobff431e2008-02-05 02:17:04 +0000270ACPI WMI DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -0500271L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700273F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100275AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700276M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200277W: http://wiki.parisc-linux.org/AD1889
278L: linux-parisc@vger.kernel.org
279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700280F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
283M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100284L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700285W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000286S: Supported
287F: drivers/misc/ad525x_dpot.c
288
289AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/regulator/ad5398.c
295
296AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/input/misc/ad714x.c
302
303AD7877 TOUCHSCREEN DRIVER
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/touchscreen/ad7877.c
309
310AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7879.c
316
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700317ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
318M: Jiri Kosina <jkosina@suse.cz>
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200323L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/hwmon/adm1025
326F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330L: lm-sensors@lm-sensors.org
331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333
Michael Wucc0b88c2007-08-31 01:15:25 -0400334ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400335L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200336W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400339
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 Guoa9866a02011-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 Garrettd09448532010-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 Skinnemoena1cfac482008-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 Skinnemoena1cfac482008-02-08 04:21:00 -08001379S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001380F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac482008-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 Kirsher9f2f381f2011-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 Garrettd09448532010-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 Garrettd09448532010-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 Verkuil6d8425b12008-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 Verkuil6d8425b12008-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 Verkuil6d8425b12008-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 Verkuil6d8425b12008-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 Garrettd09448532010-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 Garrettd09448532010-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 Garrettd09448532010-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
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003601I2C OVER PARALLEL PORT
3602M: Jean Delvare <khali@linux-fr.org>
3603L: linux-i2c@vger.kernel.org
3604S: Maintained
3605F: Documentation/i2c/busses/i2c-parport
3606F: Documentation/i2c/busses/i2c-parport-light
3607F: drivers/i2c/busses/i2c-parport.c
3608F: drivers/i2c/busses/i2c-parport-light.c
3609
3610I2C/SMBUS CONTROLLER DRIVERS FOR PC
3611M: Jean Delvare <khali@linux-fr.org>
3612L: linux-i2c@vger.kernel.org
3613S: Maintained
3614F: Documentation/i2c/busses/i2c-ali1535
3615F: Documentation/i2c/busses/i2c-ali1563
3616F: Documentation/i2c/busses/i2c-ali15x3
3617F: Documentation/i2c/busses/i2c-amd756
3618F: Documentation/i2c/busses/i2c-amd8111
3619F: Documentation/i2c/busses/i2c-i801
3620F: Documentation/i2c/busses/i2c-nforce2
3621F: Documentation/i2c/busses/i2c-piix4
3622F: Documentation/i2c/busses/i2c-sis5595
3623F: Documentation/i2c/busses/i2c-sis630
3624F: Documentation/i2c/busses/i2c-sis96x
3625F: Documentation/i2c/busses/i2c-via
3626F: Documentation/i2c/busses/i2c-viapro
3627F: drivers/i2c/busses/i2c-ali1535.c
3628F: drivers/i2c/busses/i2c-ali1563.c
3629F: drivers/i2c/busses/i2c-ali15x3.c
3630F: drivers/i2c/busses/i2c-amd756.c
3631F: drivers/i2c/busses/i2c-amd756-s4882.c
3632F: drivers/i2c/busses/i2c-amd8111.c
3633F: drivers/i2c/busses/i2c-i801.c
3634F: drivers/i2c/busses/i2c-isch.c
3635F: drivers/i2c/busses/i2c-nforce2.c
3636F: drivers/i2c/busses/i2c-nforce2-s4985.c
3637F: drivers/i2c/busses/i2c-piix4.c
3638F: drivers/i2c/busses/i2c-sis5595.c
3639F: drivers/i2c/busses/i2c-sis630.c
3640F: drivers/i2c/busses/i2c-sis96x.c
3641F: drivers/i2c/busses/i2c-via.c
3642F: drivers/i2c/busses/i2c-viapro.c
3643
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003644I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003645M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003646L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003648F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003649
Jean Delvare5b543962005-08-15 19:51:02 +02003650I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003651M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003652M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003653L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003654W: http://i2c.wiki.kernel.org/
3655T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003656T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003658F: Documentation/i2c/
3659F: drivers/i2c/
3660F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003661F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003663I2C-TAOS-EVM DRIVER
3664M: Jean Delvare <khali@linux-fr.org>
3665L: linux-i2c@vger.kernel.org
3666S: Maintained
3667F: Documentation/i2c/busses/i2c-taos-evm
3668F: drivers/i2c/busses/i2c-taos-evm.c
3669
Till Harbaume8c76ee2007-05-01 23:26:35 +02003670I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003671M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003672L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003673W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003675F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003676
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003678M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003680F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681
3682i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003683M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003684T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685S: Maintained
3686
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003688M: Tony Luck <tony.luck@intel.com>
3689M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003691T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003693F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694
Kent Yoder956c2032012-09-07 04:17:01 +08003695IBM Power in-Nest Crypto Acceleration
3696M: Kent Yoder <key@linux.vnet.ibm.com>
3697L: linux-crypto@vger.kernel.org
3698S: Supported
3699F: drivers/crypto/nx/
3700
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003701IBM Power 842 compression accelerator
3702M: Robert Jennings <rcj@linux.vnet.ibm.com>
3703S: Supported
3704F: drivers/crypto/nx/nx-842.c
3705F: include/linux/nx842.h
3706
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003708M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003710F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711
Santiago Leon9d348af2010-09-03 18:29:53 +00003712IBM Power Virtual Ethernet Device Driver
3713M: Santiago Leon <santil@linux.vnet.ibm.com>
3714L: netdev@vger.kernel.org
3715S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003716F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003717
Robert Jennings4b7652c2012-07-31 12:34:36 -05003718IBM Power Virtual SCSI/FC Device Drivers
3719M: Robert Jennings <rcj@linux.vnet.ibm.com>
3720L: linux-scsi@vger.kernel.org
3721S: Supported
3722F: drivers/scsi/ibmvscsi/
3723X: drivers/scsi/ibmvscsi/ibmvstgt.c
3724
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725IBM ServeRAID RAID DRIVER
3726P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003727M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003729S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003730F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003732ICH LPC AND GPIO DRIVER
3733M: Peter Tyser <ptyser@xes-inc.com>
3734S: Maintained
3735F: drivers/mfd/lpc_ich.c
3736F: drivers/gpio/gpio-ich.c
3737
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003738IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003739M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003741Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003742T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003744F: Documentation/ide/
3745F: drivers/ide/
3746F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747
Ike Panhc6cb8c132011-08-25 22:28:45 +08003748IDEAPAD LAPTOP EXTRAS DRIVER
3749M: Ike Panhc <ike.pan@canonical.com>
3750L: platform-driver-x86@vger.kernel.org
3751W: http://launchpad.net/ideapad-laptop
3752S: Maintained
3753F: drivers/platform/x86/ideapad-laptop.c
3754
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003755IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003756M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003757L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003759F: Documentation/cdrom/ide-cd
3760F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761
Andy Henroid27471fd2008-10-09 11:45:22 -07003762IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003763M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003764L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003765S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003766F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003767
Sergey Lapin02cf2282009-06-08 12:18:50 +00003768IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003769M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003770M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003771L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003772W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003773T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003774S: Maintained
3775F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003776F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003777F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003778
Ameya Palande9545f862012-01-10 09:00:58 -08003779IIO SUBSYSTEM AND DRIVERS
3780M: Jonathan Cameron <jic23@cam.ac.uk>
3781L: linux-iio@vger.kernel.org
3782S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003783F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003784F: drivers/staging/iio/
3785
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003786IKANOS/ADI EAGLE ADSL USB DRIVER
3787M: Matthieu Castet <castet.matthieu@free.fr>
3788M: Stanislaw Gruszka <stf_xl@wp.pl>
3789S: Maintained
3790F: drivers/usb/atm/ueagle-atm.c
3791
Samuel Iglesias Gonsalvez14dc1242012-11-16 16:19:59 +01003792INDUSTRY PACK SUBSYSTEM (IPACK)
3793M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
3794M: Jens Taprogge <jens.taprogge@taprogge.org>
3795M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3796L: industrypack-devel@lists.sourceforge.net
3797W: http://industrypack.sourceforge.net
3798S: Maintained
3799F: drivers/ipack/
3800
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003801INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003802M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003803S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003804F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003805
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003807L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003808S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003809F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810
3811INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003812M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003813M: Sean Hefty <sean.hefty@intel.com>
3814M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003815L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003816W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003817Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003818T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003820F: Documentation/infiniband/
3821F: drivers/infiniband/
3822F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Robert Lovec9f04f52005-07-15 12:21:07 -04003824INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003825M: John McCutchan <john@johnmccutchan.com>
3826M: Robert Love <rlove@rlove.org>
3827M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003829F: Documentation/filesystems/inotify.txt
3830F: fs/notify/inotify/
3831F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003832
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003833INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003834M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3835M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003836L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003837Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003838T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003840F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003841F: include/linux/input.h
3842F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003843
Henrik Rydberg3267a872010-06-24 19:10:40 -07003844INPUT MULTITOUCH (MT) PROTOCOL
3845M: Henrik Rydberg <rydberg@euromail.se>
3846L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003847T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003848S: Maintained
3849F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003850F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003851K: \b(ABS|SYN)_MT_
3852
Dave Jiang4ac13e12011-07-29 17:16:55 -07003853INTEL C600 SERIES SAS CONTROLLER DRIVER
3854M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003855M: Lukasz Dorau <lukasz.dorau@intel.com>
3856M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003857M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003858L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003859T: git git://git.code.sf.net/p/intel-sas/isci
3860S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003861F: drivers/scsi/isci/
3862F: firmware/isci/
3863
Len Brown26717172010-03-08 14:07:30 -05003864INTEL IDLE DRIVER
3865M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003866L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003867T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003868S: Supported
3869F: drivers/idle/intel_idle.c
3870
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003871INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003872M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003873L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003875F: Documentation/fb/intelfb.txt
3876F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003877
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003879M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003880L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003882F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303884INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003885M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05003886L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303887W: http://www.lesswatts.org/projects/acpi/
3888S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003889F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303890
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003892M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003894F: arch/x86/kernel/microcode_core.c
3895F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003897INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003898M: Dan Williams <djbw@fb.com>
3899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003900F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003901
David Woodhouse6c8909b2008-10-18 16:12:17 +01003902INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003903M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003904L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003905T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003906S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003907F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003908F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003909
Dan Williamsb3e5f262007-08-07 10:26:35 -07003910INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003911M: Dan Williams <djbw@fb.com>
3912S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003913F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003914
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003915INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003916M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003918F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3919F: arch/arm/mach-ixp4xx/include/mach/npe.h
3920F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3921F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003922F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003923F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003924
Michael Buesch844dd052006-06-26 00:24:59 -07003925INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003926M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003928F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003929
Jeff Kirsher0d164402010-10-05 01:15:17 +00003930INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003931M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3932M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3933M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003934M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3935M: Don Skidmore <donald.c.skidmore@intel.com>
3936M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003937M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003938M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003939M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003940L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003941W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003942T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3943T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003945F: Documentation/networking/e100.txt
3946F: Documentation/networking/e1000.txt
3947F: Documentation/networking/e1000e.txt
3948F: Documentation/networking/igb.txt
3949F: Documentation/networking/igbvf.txt
3950F: Documentation/networking/ixgb.txt
3951F: Documentation/networking/ixgbe.txt
3952F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003953F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954
Len Brown6dccf9c2011-07-12 22:29:32 -04003955INTEL MRST PMU DRIVER
3956M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003957L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003958S: Supported
3959F: arch/x86/platform/mrst/pmu.*
3960
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003961INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
3962M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07003963L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003964S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003965F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07003966F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003967F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06003968
Shane Wang4bd96a72010-03-10 14:36:10 +08003969INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07003970M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
3971M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08003972M: Shane Wang <shane.wang@intel.com>
3973L: tboot-devel@lists.sourceforge.net
3974W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07003975T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08003976S: Supported
3977F: Documentation/intel_txt.txt
3978F: include/linux/tboot.h
3979F: arch/x86/kernel/tboot.c
3980
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003981INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003982M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003983M: linux-wimax@intel.com
3984L: wimax@linuxwimax.org
3985S: Supported
3986W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003987F: Documentation/wimax/README.i2400m
3988F: drivers/net/wimax/i2400m/
3989F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003990
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003991INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3992M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003993L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003994S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003995F: drivers/net/wireless/iwlegacy/
3996
Zhu Yib481de92007-09-25 17:54:57 -07003997INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07003998M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003999M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004000M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004001L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004002W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07004003T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004004S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004005F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004006
Tomas Winklerde8fe022012-05-09 16:39:02 +03004007INTEL MANAGEMENT ENGINE (mei)
4008M: Tomas Winkler <tomas.winkler@intel.com>
4009L: linux-kernel@vger.kernel.org
4010S: Supported
4011F: include/linux/mei.h
4012F: drivers/misc/mei/*
4013F: Documentation/mei/*
4014
Ralf Baechlecb109a02007-08-30 23:56:30 -07004015IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004016M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017L: linux-mips@linux-mips.org
4018S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004019F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
Ralf Baechlecb109a02007-08-30 23:56:30 -07004021IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004022M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004023L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004024S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004025F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004026
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004027IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004028M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004030F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
Francois Romieu1202d6f2007-09-17 17:13:55 -07004032IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004033M: Francois Romieu <romieu@fr.zoreil.com>
4034M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004035L: netdev@vger.kernel.org
4036S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004037F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004038
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004039IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004040M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004041L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004043F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004044
Corey Minyard4409ebe2006-04-20 02:43:12 -07004045IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004046M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004047L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004048W: http://openipmi.sourceforge.net/
4049S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004050F: Documentation/IPMI.txt
4051F: drivers/char/ipmi/
4052F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004053
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004054IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004055M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004056L: linux-scsi@vger.kernel.org
4057W: http://www.adaptec.com/
4058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004059F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004060
4061IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004062M: Wensong Zhang <wensong@linux-vs.org>
4063M: Simon Horman <horms@verge.net.au>
4064M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004065L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004066L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004068F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004069F: include/net/ip_vs.h
4070F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004071F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072
Randy Dunlape7839f22008-10-12 16:11:45 -07004073IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004074M: Jiri Kosina <jkosina@suse.cz>
4075M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004076S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004077F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004078
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004079IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004080M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004081L: netdev@vger.kernel.org
4082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004083F: include/linux/ipx.h
4084F: include/net/ipx.h
4085F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004086
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004088M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004089L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004090L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004092S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004093T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004094F: Documentation/networking/irda.txt
4095F: drivers/net/irda/
4096F: include/net/irda/
4097F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004099IRQ SUBSYSTEM
4100M: Thomas Gleixner <tglx@linutronix.de>
4101S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004102T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004103F: kernel/irq/
4104
Grant Likely7ab3a832012-02-14 14:06:47 -07004105IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4106M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4107M: Grant Likely <grant.likely@secretlab.ca>
4108T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4109S: Maintained
4110F: Documentation/IRQ-domain.txt
4111F: include/linux/irqdomain.h
4112F: kernel/irq/irqdomain.c
4113
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004114ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004115M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004117F: Documentation/isapnp.txt
4118F: drivers/pnp/isapnp/
4119F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004120
Harry Wei71a6d0a2011-05-11 15:13:33 -07004121iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4122M: Peter Jones <pjones@redhat.com>
4123M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4124S: Maintained
4125F: drivers/firmware/iscsi_ibft*
4126
Mike Christie14816b1e2007-11-28 16:22:06 -08004127ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004128M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004129L: open-iscsi@googlegroups.com
4130W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004131T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004133F: drivers/scsi/*iscsi*
4134F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004135
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004137M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004138L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004139L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004141T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004143F: Documentation/isdn/
4144F: drivers/isdn/
4145F: include/linux/isdn.h
4146F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147
4148ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004149M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004150L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151W: http://www.melware.de
4152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004153F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154
Jean Delvared6248702010-03-05 22:17:20 +01004155IT87 HARDWARE MONITORING DRIVER
4156M: Jean Delvare <khali@linux-fr.org>
4157L: lm-sensors@lm-sensors.org
4158S: Maintained
4159F: Documentation/hwmon/it87
4160F: drivers/hwmon/it87.c
4161
Hans Verkuil91821ff2007-12-02 09:35:33 -03004162IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004163M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004164L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004165L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004166T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004167W: http://www.ivtvdriver.org
4168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004169F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004170F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004171F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004172
Guenter Roeck4453d732010-08-09 17:21:08 -07004173JC42.4 TEMPERATURE SENSOR DRIVER
4174M: Guenter Roeck <linux@roeck-us.net>
4175L: lm-sensors@lm-sensors.org
4176S: Maintained
4177F: drivers/hwmon/jc42.c
4178F: Documentation/hwmon/jc42
4179
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004180JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004181M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004182L: jfs-discussion@lists.sourceforge.net
4183W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004184T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004186F: Documentation/filesystems/jfs.txt
4187F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004188
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004189JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004190M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004191L: netdev@vger.kernel.org
4192S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004193F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004194
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004196M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004197L: linux-mtd@lists.infradead.org
4198W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004200F: fs/jffs2/
4201F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202
Josh Triplettde456d32006-07-30 03:04:00 -07004203JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004204M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004205M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004206L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004207S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004208F: fs/jbd/
4209F: include/linux/ext3_jbd.h
4210F: include/linux/jbd.h
4211
4212JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4213M: "Theodore Ts'o" <tytso@mit.edu>
4214L: linux-ext4@vger.kernel.org
4215S: Maintained
4216F: fs/jbd2/
4217F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004218
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004219JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004220M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004221L: linux-serial@vger.kernel.org
4222S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004223F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004224
Clemens Ladischaf399172011-01-10 16:32:54 +01004225K10TEMP HARDWARE MONITORING DRIVER
4226M: Clemens Ladisch <clemens@ladisch.de>
4227L: lm-sensors@lm-sensors.org
4228S: Maintained
4229F: Documentation/hwmon/k10temp
4230F: drivers/hwmon/k10temp.c
4231
Rudolf Marek4660cb32006-10-08 22:01:26 +02004232K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004233M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004234L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004236F: Documentation/hwmon/k8temp
4237F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238
4239KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004240M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004241L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004242S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004243F: Documentation/kbuild/kconfig-language.txt
4244F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245
Vivek Goyalea6c2082006-05-20 14:59:55 -07004246KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004247M: Vivek Goyal <vgoyal@redhat.com>
4248M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004249L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004250W: http://lse.sourceforge.net/kdump/
4251S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004252F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004253
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004255M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004256L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004258F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259
Michal Marek70fb7ba2010-01-29 14:22:43 +01004260KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004261M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004262T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4263T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004264L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004266F: Documentation/kbuild/
4267F: Makefile
4268F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004269F: scripts/basic/
4270F: scripts/mk*
4271F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272
4273KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004274L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004275W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004276S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004278KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004279M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004280L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004282S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004283F: fs/nfsd/
4284F: include/linux/nfsd/
4285F: fs/lockd/
4286F: fs/nfs_common/
4287F: net/sunrpc/
4288F: include/linux/lockd/
4289F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290
Avi Kivity426d62e2006-12-13 00:34:03 -08004291KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07004292M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004293M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004294L: kvm@vger.kernel.org
4295W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004296S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004297F: Documentation/*/kvm.txt
4298F: arch/*/kvm/
4299F: arch/*/include/asm/kvm*
4300F: include/linux/kvm*
4301F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004302
Joerg Roedelad8003d2008-09-10 20:01:07 +02004303KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004304M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004305L: kvm@vger.kernel.org
4306W: http://kvm.qumranet.com
4307S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004308F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004309F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004310
Hollis Blanchard513014b2008-04-16 23:28:08 -05004311KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004312M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004313L: kvm-ppc@vger.kernel.org
4314W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004315S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004316F: arch/powerpc/include/asm/kvm*
4317F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004318
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004319KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004320M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004321L: kvm-ia64@vger.kernel.org
4322W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004323S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004324F: Documentation/ia64/kvm.txt
4325F: arch/ia64/include/asm/kvm*
4326F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004327
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004328KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004329M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004330M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004331M: linux390@de.ibm.com
4332L: linux-s390@vger.kernel.org
4333W: http://www.ibm.com/developerworks/linux/linux390/
4334S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004335F: Documentation/s390/kvm.txt
4336F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004337F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004338F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004339
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004340KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004341M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004342W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004343L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004345F: include/linux/kexec.h
4346F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004347
David Howellse9714612010-03-29 23:42:09 +01004348KEYS/KEYRINGS:
4349M: David Howells <dhowells@redhat.com>
4350L: keyrings@linux-nfs.org
4351S: Maintained
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07004352F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004353F: include/linux/key.h
4354F: include/linux/key-type.h
4355F: include/keys/
4356F: security/keys/
4357
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004358KEYS-TRUSTED
4359M: David Safford <safford@watson.ibm.com>
4360M: Mimi Zohar <zohar@us.ibm.com>
4361L: linux-security-module@vger.kernel.org
4362L: keyrings@linux-nfs.org
4363S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07004364F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004365F: include/keys/trusted-type.h
4366F: security/keys/trusted.c
4367F: security/keys/trusted.h
4368
4369KEYS-ENCRYPTED
4370M: Mimi Zohar <zohar@us.ibm.com>
4371M: David Safford <safford@watson.ibm.com>
4372L: linux-security-module@vger.kernel.org
4373L: keyrings@linux-nfs.org
4374S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07004375F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004376F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004377F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004378
Jason Wessel5b778da2010-05-20 21:04:28 -05004379KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004380M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004381W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004382L: kgdb-bugreport@lists.sourceforge.net
4383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004384F: Documentation/DocBook/kgdb.tmpl
4385F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004386F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004387F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004388F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004389F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004390
Pekka Enberg456db8c2008-04-28 22:47:29 +03004391KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004392M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004393M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004394S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004395F: Documentation/kmemcheck.txt
4396F: arch/x86/include/asm/kmemcheck.h
4397F: arch/x86/mm/kmemcheck/
4398F: include/linux/kmemcheck.h
4399F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004400
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004401KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004402M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004403S: Maintained
4404F: Documentation/kmemleak.txt
4405F: include/linux/kmemleak.h
4406F: mm/kmemleak.c
4407F: mm/kmemleak-test.c
4408
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004409KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004410M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4411M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4412M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004413M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004415F: Documentation/kprobes.txt
4416F: include/linux/kprobes.h
4417F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004418
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004419KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004420M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004421W: http://miguelojeda.es/auxdisplay.htm
4422W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004424F: Documentation/auxdisplay/ks0108
4425F: drivers/auxdisplay/ks0108.c
4426F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004427
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004430S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004431F: Documentation/networking/lapb-module.txt
4432F: include/*/lapb.h
4433F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434
4435LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004436M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437L: linux-scsi@vger.kernel.org
4438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004439F: Documentation/scsi/53c700.txt
4440F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441
Richard Purdie263de9b2006-05-15 09:44:16 -07004442LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004443M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004444M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004445L: linux-leds@vger.kernel.org
4446T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004448F: drivers/leds/
4449F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004450
Jean Delvareb0461a42011-06-15 15:08:46 -07004451LEGACY EEPROM DRIVER
4452M: Jean Delvare <khali@linux-fr.org>
4453S: Maintained
4454F: Documentation/misc-devices/eeprom
4455F: drivers/misc/eeprom/eeprom.c
4456
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004458M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459L: legousb-devel@lists.sourceforge.net
4460W: http://legousb.sourceforge.net/
4461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004462F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
Michael Krufky055616a2012-10-02 00:56:06 -03004464LG2160 MEDIA DRIVER
4465M: Michael Krufky <mkrufky@linuxtv.org>
4466L: linux-media@vger.kernel.org
4467W: http://linuxtv.org/
4468W: http://github.com/mkrufky
4469Q: http://patchwork.linuxtv.org/project/linux-media/list/
4470T: git git://linuxtv.org/mkrufky/tuners.git
4471S: Maintained
4472F: drivers/media/dvb-frontends/lg2160.*
4473
Michael Krufky6f0e7722012-10-02 00:56:00 -03004474LGDT3305 MEDIA DRIVER
4475M: Michael Krufky <mkrufky@linuxtv.org>
4476L: linux-media@vger.kernel.org
4477W: http://linuxtv.org/
4478W: http://github.com/mkrufky
4479Q: http://patchwork.linuxtv.org/project/linux-media/list/
4480T: git git://linuxtv.org/mkrufky/tuners.git
4481S: Maintained
4482F: drivers/media/dvb-frontends/lgdt3305.*
4483
Rusty Russell568a17f2007-10-25 14:12:24 +10004484LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004485M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004486L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004487W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004488S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004489F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004490F: arch/x86/lguest/
4491F: drivers/lguest/
4492F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004493F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004494
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004496M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497W: http://www.ibm.com/linux/ltc/projects/ppc
4498S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004499F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004501LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004502M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4503M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004505L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004506Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004507T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004509F: Documentation/powerpc/
4510F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511
4512LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004513M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004515L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004517F: arch/powerpc/platforms/powermac/
4518F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519
Grant Likely77a76362008-07-12 12:11:43 -06004520LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004521M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004522L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004523T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004525F: arch/powerpc/platforms/512x/
4526F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527
4528LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004529M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004530M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004532L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004533T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004535F: arch/powerpc/platforms/40x/
4536F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537
Grant Likely260c02a2007-10-02 12:15:34 +10004538LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004539M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004540W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004541L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004542T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004544F: arch/powerpc/*/*virtex*
4545F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546
Tom Rinie93adf12005-07-26 12:49:53 -07004547LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004548M: Vitaly Bordug <vitb@kernel.crashing.org>
4549M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004550W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004551L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004552S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004553F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004554
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004556M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004557W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004558L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004559S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004560F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004561F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562
Olof Johanssonab06ff32006-09-06 14:44:54 -05004563LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004564M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004565L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004566S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004567F: arch/powerpc/platforms/pasemi/
4568F: drivers/*/*pasemi*
4569F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004570
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004572M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004573L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574S: Supported
4575
Harry Weia23ce6d2011-02-11 16:52:20 +01004576LIS3LV02D ACCELEROMETER DRIVER
4577M: Eric Piel <eric.piel@tremplin-utc.net>
4578S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004579F: Documentation/misc-devices/lis3lv02d
4580F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004581F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004582
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004583LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004584M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004586F: include/linux/llc.h
4587F: include/net/llc*
4588F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004589
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004590LM73 HARDWARE MONITOR DRIVER
4591M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4592L: lm-sensors@lm-sensors.org
4593S: Maintained
4594F: drivers/hwmon/lm73.c
4595
Jean Delvare156e2d12011-07-25 21:46:11 +02004596LM78 HARDWARE MONITOR DRIVER
4597M: Jean Delvare <khali@linux-fr.org>
4598L: lm-sensors@lm-sensors.org
4599S: Maintained
4600F: Documentation/hwmon/lm78
4601F: drivers/hwmon/lm78.c
4602
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004604M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004605L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004607F: Documentation/hwmon/lm83
4608F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609
4610LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004611M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004612L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004614F: Documentation/hwmon/lm90
4615F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004617LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004618M: Peter Zijlstra <peterz@infradead.org>
4619M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004620T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004622F: Documentation/lockdep*.txt
4623F: Documentation/lockstat.txt
4624F: include/linux/lockdep.h
4625F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004626
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004627LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004628M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004629L: linux-ntfs-dev@lists.sourceforge.net
4630W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004632F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004633F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634
Joern Engelef6ada32009-11-20 22:17:12 +01004635LogFS
4636M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304637M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004638L: logfs@logfs.org
4639W: logfs.org
4640S: Maintained
4641F: fs/logfs/
4642
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004643LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004644M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004645M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004646L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004647L: linux-scsi@vger.kernel.org
4648W: http://www.lsilogic.com/support
4649S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004650F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004651
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004653M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654L: linux-scsi@vger.kernel.org
4655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004656F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657
Guenter Roecke5f5c992010-06-25 11:59:54 -07004658LTC4261 HARDWARE MONITOR DRIVER
4659M: Guenter Roeck <linux@roeck-us.net>
4660L: lm-sensors@lm-sensors.org
4661S: Maintained
4662F: Documentation/hwmon/ltc4261
4663F: drivers/hwmon/ltc4261.c
4664
Mike Frysinger81365c32008-10-29 14:01:12 -07004665LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004666M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004667M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004668M: Cyril Hrubis <chrubis@suse.cz>
4669M: Caspar Zhang <caspar@casparzhang.com>
4670M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004671L: ltp-list@lists.sourceforge.net (subscribers-only)
4672W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004673T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004674T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004675S: Maintained
4676
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004677M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004678M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004679L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004680L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4681W: http://www.linux-m32r.org/
4682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004683F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004684
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004686M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687L: linux-m68k@lists.linux-m68k.org
4688W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004689T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004691F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004692F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
4694M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004695M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004697L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004699F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700
4701M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004702M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703W: http://www.tazenda.demon.co.uk/phil/linux-hp
4704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004705F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706
Jiri Benc64a327a2007-05-05 11:47:08 -07004707MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004708M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004709L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004710W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004711T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4712T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004714F: Documentation/networking/mac80211-injection.txt
4715F: include/net/mac80211.h
4716F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004717
Stefano Brivio1036d862007-12-23 04:46:27 +01004718MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004719M: Stefano Brivio <stefano.brivio@polimi.it>
4720M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004721L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004722W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004723T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4724T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004726F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004727
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004728MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004729M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004730L: netdev@vger.kernel.org
4731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004732F: drivers/net/macvlan.c
4733F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004734
Michael Kerriskfaf16682005-07-31 22:34:47 -07004735MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004736M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004737W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004738L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004739S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004740
stephen hemminger44c14c12012-04-02 12:59:47 +00004741MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4742M: Mirko Lindner <mlindner@marvell.com>
4743M: Stephen Hemminger <shemminger@vyatta.com>
4744L: netdev@vger.kernel.org
4745S: Maintained
4746F: drivers/net/ethernet/marvell/sk*
4747
Stefano Brivio74cda162007-11-19 20:27:46 +01004748MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004749M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004750L: libertas-dev@lists.infradead.org
4751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004752F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004753
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004754MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004755M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004756L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004757S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004758F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004759F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760
Bing Zhaofcad5842011-07-13 13:11:58 -07004761MARVELL MWIFIEX WIRELESS DRIVER
4762M: Bing Zhao <bzhao@marvell.com>
4763L: linux-wireless@vger.kernel.org
4764S: Maintained
4765F: drivers/net/wireless/mwifiex/
4766
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004767MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004768M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004769L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004770S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004771F: drivers/net/wireless/mwl8k.c
4772
Pierre Ossman2a695672009-03-16 19:52:26 +01004773MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004774M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004775S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004776F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004777
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004779L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004780S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004781F: drivers/video/matrox/matroxfb_*
4782F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
Guenter Roeckca462082012-06-01 23:28:23 -07004784MAX16065 HARDWARE MONITOR DRIVER
4785M: Guenter Roeck <linux@roeck-us.net>
4786L: lm-sensors@lm-sensors.org
4787S: Maintained
4788F: Documentation/hwmon/max16065
4789F: drivers/hwmon/max16065.c
4790
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004791MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004792M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004793L: lm-sensors@lm-sensors.org
4794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004795F: Documentation/hwmon/max6650
4796F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004797
Joe Perches127c49a2009-04-08 08:34:04 -07004798MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004799M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004800P: LinuxTV.org Project
4801L: linux-media@vger.kernel.org
4802W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004803Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches08deed12012-03-23 15:01:57 -07004804T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Joe Perches127c49a2009-04-08 08:34:04 -07004805S: Maintained
4806F: Documentation/dvb/
4807F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004808F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004809F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004810F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004811F: include/media/
4812F: include/linux/dvb/
4813F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004814
4815MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004816M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004817L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004818W: http://megaraid.lsilogic.com
4819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004820F: Documentation/scsi/megaraid.txt
4821F: drivers/scsi/megaraid.*
4822F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004823
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004824MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826W: http://www.linux-mm.org
4827S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004828F: include/linux/mm.h
4829F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004830
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004831MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004832M: Johannes Weiner <hannes@cmpxchg.org>
4833M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004834M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004835M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004836L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004837L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004839F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004840F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004841
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004843M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004845W: http://www.linux-mtd.infradead.org/
4846Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004847T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004849F: drivers/mtd/
4850F: include/linux/mtd/
4851F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852
Michal Simekc6375b02009-03-27 14:25:52 +01004853MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004854M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004855L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004856W: http://www.monstr.eu/fdt/
4857T: git git://git.monstr.eu/linux-2.6-microblaze.git
4858S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004859F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860
4861MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004862M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004864F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865
4866MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004867M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004869W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004870T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004871Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004872S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004873F: Documentation/mips/
4874F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004877M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004879F: include/linux/module.h
4880F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881
4882MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004884S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004885F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004886F: drivers/media/pci/meye/
Joe Perches679655d2009-04-07 20:44:32 -07004887F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888
Pavel Pisac58ff042007-05-16 01:10:41 +02004889MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004890M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004891L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004893F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004894
Jiri Slabyb9705b62008-04-30 00:53:48 -07004895MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004896M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004898F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004899F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004900
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004901MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004902M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05004903L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004905F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004906
Anisse Astier0f1006b2009-12-17 11:28:49 +01004907MSI WMI SUPPORT
4908M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd09448532010-02-11 10:40:13 -05004909L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004910S: Supported
4911F: drivers/platform/x86/msi-wmi.c
4912
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004913MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004914M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004915T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004916S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004917F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004918
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004919MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004920M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004921L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004922T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004924F: drivers/mmc/
4925F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004926
David Brownell15a05802007-08-08 09:12:54 -07004927MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004928S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004929F: drivers/mmc/host/mmc_spi.c
4930F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004931
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004933M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004935F: Documentation/sound/oss/MultiSound
4936F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937
Jiri Slabyd7354102006-12-08 02:38:35 -08004938MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004939S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004940F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004941F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004942
Felipe Balbi550a7372008-07-24 12:27:36 +03004943MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004944M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004945L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004946T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004948F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004949
Michael Krufkyea0af5f2012-10-02 00:55:41 -03004950MXL5007T MEDIA DRIVER
4951M: Michael Krufky <mkrufky@linuxtv.org>
4952L: linux-media@vger.kernel.org
4953W: http://linuxtv.org/
4954W: http://github.com/mkrufky
4955Q: http://patchwork.linuxtv.org/project/linux-media/list/
4956T: git git://linuxtv.org/mkrufky/tuners.git
4957S: Maintained
4958F: drivers/media/tuners/mxl5007t.*
4959
Brice Goglin2d3cf582008-05-17 12:45:36 +02004960MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004961M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004962L: netdev@vger.kernel.org
4963W: http://www.myri.com/scs/download-Myri10GE.html
4964S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004965F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004966
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04004968S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004969F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970
Daniel Mack23dc05a2011-05-18 11:28:38 +02004971NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4972M: Daniel Mack <zonque@gmail.com>
4973S: Maintained
4974L: alsa-devel@alsa-project.org
4975W: http://www.native-instruments.com
4976F: sound/usb/caiaq/
4977
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004979M: Petr Vandrovec <petr@vandrovec.name>
4980S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004981F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982
4983NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004984M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985L: linux-scsi@vger.kernel.org
4986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004987F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004989NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004990M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004991L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004992W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004993S: Supported
4994F: drivers/infiniband/hw/nes/
4995
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004996NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05004997M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07004998L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005000F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005001
Jon Masonb2f5a052010-07-15 08:47:27 +00005002NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005003M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005004L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005005S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005006F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005007F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005008F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005009
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011P: Harald Welte
5012P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005013M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005014M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005015L: netfilter-devel@vger.kernel.org
5016L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005017L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018W: http://www.netfilter.org/
5019W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005020T: git git://1984.lsi.us.es/nf
5021T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005023F: include/linux/netfilter*
5024F: include/linux/netfilter/
5025F: include/net/netfilter/
5026F: net/*/netfilter.c
5027F: net/*/netfilter/
5028F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029
Paul Moore4cc67732006-09-25 15:57:13 -07005030NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005031M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005032W: http://netlabel.sf.net
5033L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005034S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005035F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005036F: include/net/netlabel.h
5037F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005038
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005040M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005042W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005044F: include/linux/netrom.h
5045F: include/net/netrom.h
5046F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005048NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005049M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005051F: Documentation/blockdev/nbd.txt
5052F: drivers/block/nbd.c
5053F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054
Neil Horman6e436502009-10-05 03:56:55 +00005055NETWORK DROP MONITOR
5056M: Neil Horman <nhorman@tuxdriver.com>
5057L: netdev@vger.kernel.org
5058S: Maintained
5059W: https://fedorahosted.org/dropwatch/
5060F: net/core/drop_monitor.c
5061
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005063M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005064L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005065W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00005066W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005067T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5068T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005070F: net/
5071F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005072F: include/linux/in.h
5073F: include/linux/net.h
5074F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075
5076NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005077M: "David S. Miller" <davem@davemloft.net>
5078M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005079M: James Morris <jmorris@namei.org>
5080M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5081M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005082L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005083T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005085F: net/ipv4/
5086F: net/ipv6/
5087F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005088F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089
David S. Miller73b76562012-10-16 14:08:40 -04005090NETWORKING [IPSEC]
5091M: Steffen Klassert <steffen.klassert@secunet.com>
5092M: Herbert Xu <herbert@gondor.apana.org.au>
5093M: "David S. Miller" <davem@davemloft.net>
5094L: netdev@vger.kernel.org
5095T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5096S: Maintained
5097F: net/xfrm/
5098F: net/key/
5099F: net/ipv4/xfrm*
5100F: net/ipv6/xfrm*
5101F: include/uapi/linux/xfrm.h
5102F: include/net/xfrm.h
5103
James Morris10e2ff12007-08-25 14:41:28 -07005104NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005105M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005106L: netdev@vger.kernel.org
5107S: Maintained
5108
John W. Linville29f8f632006-01-18 14:52:48 -08005109NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005110M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005111L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005112Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005113T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005114S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005115F: net/mac80211/
5116F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005117F: net/wireless/
5118F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005119F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005120F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005121F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005122
Joe Perches788873a2009-04-16 09:38:45 +00005123NETWORKING DRIVERS
5124L: netdev@vger.kernel.org
5125W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005126T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5127T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005128S: Odd Fixes
5129F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005130F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005131F: include/linux/netdevice.h
5132F: include/linux/arcdevice.h
5133F: include/linux/etherdevice.h
5134F: include/linux/fcdevice.h
5135F: include/linux/fddidevice.h
5136F: include/linux/hippidevice.h
5137F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005138
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005139NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005140M: Sony Chacko <sony.chacko@qlogic.com>
5141M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005142L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005143W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005144S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005145F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005146
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005147NFC SUBSYSTEM
5148M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5149M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5150M: Samuel Ortiz <sameo@linux.intel.com>
5151L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005152L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005153S: Maintained
5154F: net/nfc/
5155F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005156F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005157F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005159NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005160M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005161L: linux-nfs@vger.kernel.org
5162W: http://client.linux-nfs.org
5163T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005165F: fs/lockd/
5166F: fs/nfs/
5167F: fs/nfs_common/
5168F: net/sunrpc/
5169F: include/linux/lockd/
5170F: include/linux/nfs*
5171F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172
5173NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005174M: Jan-Pascal van Best <janpascal@vanbest.org>
5175M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005176L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005178F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005180NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005181M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005182L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005183W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005184T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005185S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005186F: Documentation/filesystems/nilfs2.txt
5187F: fs/nilfs2/
5188F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005189
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005191M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005194F: Documentation/scsi/NinjaSCSI.txt
5195F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196
5197NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005198M: GOTO Masanori <gotom@debian.or.jp>
5199M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005202F: Documentation/scsi/NinjaSCSI.txt
5203F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005206M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005208W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005209T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005210S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005211F: Documentation/filesystems/ntfs.txt
5212F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005214NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005215M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005216L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005218F: drivers/video/riva/
5219F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220
Tony Lindgrenf5525782009-05-28 13:23:53 -07005221OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005222M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005223L: linux-omap@vger.kernel.org
5224W: http://www.muru.com/linux/omap/
5225W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005226Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005227T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005228S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005229F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005230F: drivers/i2c/busses/i2c-omap.c
5231F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005232
5233OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005234M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005235L: linux-omap@vger.kernel.org
5236S: Maintained
5237F: arch/arm/*omap*/*clock*
5238
5239OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005240M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005241L: linux-omap@vger.kernel.org
5242S: Maintained
5243F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005244F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005245
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005246OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5247M: Rajendra Nayak <rnayak@ti.com>
5248M: Paul Walmsley <paul@pwsan.com>
5249L: linux-omap@vger.kernel.org
5250S: Maintained
5251F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5252F: arch/arm/mach-omap2/powerdomain44xx.c
5253F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5254F: arch/arm/mach-omap2/clockdomain44xx.c
5255
Tony Lindgrenf5525782009-05-28 13:23:53 -07005256OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005257M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005258M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005259L: alsa-devel@alsa-project.org (subscribers-only)
5260L: linux-omap@vger.kernel.org
5261S: Maintained
5262F: sound/soc/omap/
5263
5264OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005265M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005266L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005267L: linux-omap@vger.kernel.org
5268S: Maintained
5269F: drivers/video/omap/
5270
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005271OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005272M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005273L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005274L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005275S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005276F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005277F: Documentation/arm/OMAP/DSS
5278
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005279OMAP HARDWARE SPINLOCK SUPPORT
5280M: Ohad Ben-Cohen <ohad@wizery.com>
5281L: linux-omap@vger.kernel.org
5282S: Maintained
5283F: drivers/hwspinlock/omap_hwspinlock.c
5284F: arch/arm/mach-omap2/hwspinlock.c
5285
Tony Lindgrenf5525782009-05-28 13:23:53 -07005286OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005287M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005288L: linux-omap@vger.kernel.org
5289S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005290F: drivers/mmc/host/omap.c
5291
5292OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305293M: Venkatraman S <svenkatr@ti.com>
5294L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005295L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305296S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005297F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005298
5299OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005300M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005301S: Maintained
5302F: drivers/char/hw_random/omap-rng.c
5303
Paul Walmsleyf400c822010-12-06 19:08:54 -07005304OMAP HWMOD SUPPORT
5305M: Benoît Cousson <b-cousson@ti.com>
5306M: Paul Walmsley <paul@pwsan.com>
5307L: linux-omap@vger.kernel.org
5308S: Maintained
5309F: arch/arm/mach-omap2/omap_hwmod.c
5310F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5311
5312OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5313M: Benoît Cousson <b-cousson@ti.com>
5314L: linux-omap@vger.kernel.org
5315S: Maintained
5316F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5317
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005318OMAP IMAGE SIGNAL PROCESSOR (ISP)
5319M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5320L: linux-media@vger.kernel.org
5321S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005322F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005323
Tony Lindgrenf5525782009-05-28 13:23:53 -07005324OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005325M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005326L: linux-usb@vger.kernel.org
5327L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005328T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005329S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005330F: drivers/usb/*/*omap*
5331F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005332
Kevin Hilman6d994712012-07-16 10:05:07 -07005333OMAP GPIO DRIVER
5334M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5335M: Kevin Hilman <khilman@ti.com>
5336L: linux-omap@vger.kernel.org
5337S: Maintained
5338F: drivers/gpio/gpio-omap.c
5339
Bob Copeland0ad122d2008-07-25 19:45:18 -07005340OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005341M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005342L: linux-karma-devel@lists.sourceforge.net
5343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005344F: Documentation/filesystems/omfs.txt
5345F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005346
Harald Weltec1986ee2005-11-13 16:06:29 -08005347OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005348M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005350F: drivers/char/pcmcia/cm4000_cs.c
5351F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005352
Harald Welte77c44ab2005-11-13 16:06:26 -08005353OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005354M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005356F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005357
Jonathan Corbet77d51402007-03-22 19:44:17 -03005358OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005359M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005360L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005361T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005362S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005363F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005364
Thomas Gleixner431bca72007-05-02 09:31:35 +02005365ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005366M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005367L: linux-mtd@lists.infradead.org
5368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005369F: drivers/mtd/onenand/
5370F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005371
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005373M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374L: osst-users@lists.sourceforge.net
5375L: linux-scsi@vger.kernel.org
5376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005377F: drivers/scsi/osst*
5378F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005380OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005381M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005382L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005384F: Documentation/i2c/busses/i2c-ocores
5385F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005386
Grant Likely860c44c2009-10-26 16:49:49 -07005387OPEN FIRMWARE AND FLATTENED DEVICE TREE
5388M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005389M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005390L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005391W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005392T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005393S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005394F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005395F: drivers/of
5396F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005397F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005398K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005399K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005400
Jonas Bonn19f9d392011-06-04 22:00:38 +03005401OPENRISC ARCHITECTURE
5402M: Jonas Bonn <jonas@southpole.se>
5403W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005404L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005405S: Maintained
5406T: git git://openrisc.net/~jonas/linux
5407F: arch/openrisc
5408
Jesse Grossccb13522011-10-25 19:26:31 -07005409OPENVSWITCH
5410M: Jesse Gross <jesse@nicira.com>
5411L: dev@openvswitch.org
5412W: http://openvswitch.org
5413T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5414S: Maintained
5415F: net/openvswitch/
5416
Clemens Ladischaf399172011-01-10 16:32:54 +01005417OPL4 DRIVER
5418M: Clemens Ladisch <clemens@ladisch.de>
5419L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5420T: git git://git.alsa-project.org/alsa-kernel.git
5421S: Maintained
5422F: sound/drivers/opl4/
5423
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07005425M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426L: oprofile-list@lists.sf.net
5427S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005428F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005429F: arch/*/oprofile/
5430F: drivers/oprofile/
5431F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005433ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005434M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005435M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005436L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5437W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005438T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005439S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005440F: Documentation/filesystems/ocfs2.txt
5441F: Documentation/filesystems/dlmfs.txt
5442F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005443
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005445L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005446W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005447W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005448S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005449F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005451OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005452M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005453M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005454L: osd-dev@open-osd.org
5455W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005456T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005457S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005458F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005459F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005460F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005461
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005462P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005463M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005464L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005465W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005467F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005468
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005469PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005470M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005471L: netdev@vger.kernel.org
5472S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005473F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005474
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005475PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005476M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005477L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005479F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005480
Steffen Klassert48fc2672010-08-13 10:10:46 -04005481PADATA PARALLEL EXECUTION MECHANISM
5482M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005483L: linux-crypto@vger.kernel.org
5484S: Maintained
5485F: kernel/padata.c
5486F: include/linux/padata.h
5487F: Documentation/padata.txt
5488
Harald Welte709ee532008-09-23 17:46:57 +02005489PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005490M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05005491L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005493F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005494
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005495PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005496M: David Howells <dhowells@redhat.com>
5497M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005498L: linux-am33-list@redhat.com (moderated for non-subscribers)
5499W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005501F: Documentation/mn10300/
5502F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005503
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005505L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005506S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005507F: drivers/parport/
5508F: include/linux/parport*.h
5509F: drivers/char/ppdev.c
5510F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005512PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005513M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005514M: Chris Wright <chrisw@sous-sol.org>
5515M: Alok Kataria <akataria@vmware.com>
5516M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005517L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005518S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005519F: Documentation/ia64/paravirt_ops.txt
5520F: arch/*/kernel/paravirt*
5521F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005522
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005524M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005525L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526W: http://www.torque.net/linux-pp.html
5527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005528F: Documentation/blockdev/paride.txt
5529F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530
5531PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005532M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005533M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005534L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005536Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005537T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005539F: arch/parisc/
5540F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541
Jim Cromie1662d322006-10-06 00:43:59 -07005542PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005543M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005544L: lm-sensors@lm-sensors.org
5545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005546F: Documentation/hwmon/pc87360
5547F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005548
5549PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005550M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005552F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005553
Jean Delvare1ad107f2010-08-14 21:09:00 +02005554PC87427 HARDWARE MONITORING DRIVER
5555M: Jean Delvare <khali@linux-fr.org>
5556L: lm-sensors@lm-sensors.org
5557S: Maintained
5558F: Documentation/hwmon/pc87427
5559F: drivers/hwmon/pc87427.c
5560
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005561PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005562M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005563S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005564F: drivers/leds/leds-pca9532.c
5565F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005566
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005567PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005568M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005569L: linux-i2c@vger.kernel.org
5570S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005571F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005572
Wolfram Sanga1867d32009-09-18 22:45:51 +02005573PCA9564/PCA9665 I2C BUS DRIVER
5574M: Wolfram Sang <w.sang@pengutronix.de>
5575L: linux-i2c@vger.kernel.org
5576S: Maintained
5577F: drivers/i2c/algos/i2c-algo-pca.c
5578F: drivers/i2c/busses/i2c-pca-*
5579F: include/linux/i2c-algo-pca.h
5580F: include/linux/i2c-pca-platform.h
5581
Khalid Aziz3971dae2012-04-12 12:49:13 -07005582PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005583M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005584S: Maintained
5585F: drivers/firmware/pcdp.*
5586
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005587PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005588M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005589L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005590S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005591F: Documentation/PCI/pci-error-recovery.txt
5592F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005593
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005595M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005596L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005597Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005598T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005599S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005600F: Documentation/PCI/
5601F: drivers/pci/
5602F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005605P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005606L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005607W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005608T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005610F: Documentation/pcmcia/
5611F: drivers/pcmcia/
5612F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613
5614PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005615M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005616L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005618F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619
Steffen Klassert48fc2672010-08-13 10:10:46 -04005620PCRYPT PARALLEL CRYPTO ENGINE
5621M: Steffen Klassert <steffen.klassert@secunet.com>
5622L: linux-crypto@vger.kernel.org
5623S: Maintained
5624F: crypto/pcrypt.c
5625F: include/crypto/pcrypt.h
5626
Tejun Heoe72df0b2010-12-10 17:02:49 +01005627PER-CPU MEMORY ALLOCATOR
5628M: Tejun Heo <tj@kernel.org>
5629M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005630T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5631S: Maintained
5632F: include/linux/percpu*.h
5633F: mm/percpu*.c
5634F: arch/*/include/asm/percpu.h
5635
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005636PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005637M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005639F: include/linux/delayacct.h
5640F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005641
Ingo Molnar57c0c152009-09-21 12:20:38 +02005642PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005643M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5644M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005645M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005646M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005647T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005648S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005649F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005650F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005651F: arch/*/kernel/perf_event*.c
5652F: arch/*/kernel/*/perf_event*.c
5653F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005654F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005655F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005656F: arch/*/kernel/perf_callchain.c
5657F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005658
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005659PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005660M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005661L: linux-abi-devel@lists.sourceforge.net
5662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005663F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005664
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005665PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005666M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005667S: Supported
5668F: Documentation/networking/phonet.txt
5669F: include/linux/phonet.h
5670F: include/net/phonet/
5671F: net/phonet/
5672
Linus Torvalds1da177e2005-04-16 15:20:36 -07005673PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005674M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005675L: linux-mtd@lists.infradead.org
5676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005677F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678
Bruno Prémontefdbb102012-07-30 21:39:03 +02005679PICOLCD HID DRIVER
5680M: Bruno Prémont <bonbons@linux-vserver.org>
5681L: linux-input@vger.kernel.org
5682S: Maintained
5683F: drivers/hid/hid-picolcd*
5684
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005685PICOXCELL SUPPORT
5686M: Jamie Iles <jamie@jamieiles.com>
5687L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5688T: git git://github.com/jamieiles/linux-2.6-ji.git
5689S: Supported
5690F: arch/arm/mach-picoxcell
5691F: drivers/*/picoxcell*
5692F: drivers/*/*/picoxcell*
5693
Linus Walleij2744e8a2011-05-02 20:50:54 +02005694PIN CONTROL SUBSYSTEM
5695M: Linus Walleij <linus.walleij@linaro.org>
5696S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005697F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005698F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005699
Viresh Kumardeda8282012-03-28 22:27:07 +05305700PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005701M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305702L: spear-devel@list.st.com
5703L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5704W: http://www.st.com/spear
5705S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005706F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305707
Peter Osterlund249a6772005-09-27 21:45:30 -07005708PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005709M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005711F: drivers/block/pktcdvd.c
5712F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005713
GuanXuetaob31d8272011-01-16 00:35:49 +08005714PKUNITY SOC DRIVERS
5715M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5716W: http://mprc.pku.edu.cn/~guanxuetao/linux
5717S: Maintained
5718T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5719F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005720F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005721F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005722F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005723
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005724PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005725M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005726L: lm-sensors@lm-sensors.org
5727W: http://www.lm-sensors.org/
5728W: http://www.roeck-us.net/linux/drivers/
5729T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5730S: Maintained
5731F: Documentation/hwmon/pmbus
5732F: drivers/hwmon/pmbus/
5733F: include/linux/i2c/pmbus.h
5734
Anil Ravindranath89a36812009-08-25 17:35:18 -07005735PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005736M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005737L: linux-scsi@vger.kernel.org
5738W: http://www.pmc-sierra.com/
5739S: Supported
5740F: drivers/scsi/pmcraid.*
5741
jack wangdbf9bfe2009-10-14 16:19:21 +08005742PMC SIERRA PM8001 DRIVER
5743M: jack_wang@usish.com
5744M: lindar_liu@usish.com
5745L: linux-scsi@vger.kernel.org
5746S: Supported
5747F: drivers/scsi/pm8001/
5748
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005750M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005751T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005753F: fs/timerfd.c
5754F: include/linux/timer*
5755F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756
Anton Vorontsov3be86142007-07-15 04:43:36 +04005757POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005758M: Anton Vorontsov <cbou@mail.ru>
5759M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005760T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005762F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005763F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005764
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005766M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005767M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005769F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770
Vitaly Wool999445d2007-01-04 13:07:03 +01005771PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005772M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005773L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005775F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005776
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005778M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779L: linux-ppp@vger.kernel.org
5780S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005781F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782
5783PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005784M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005786F: net/atm/pppoatm.c
5787F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005788
5789PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005790M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005792F: drivers/net/ppp/pppoe.c
5793F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794
James Chapmana6d23702007-06-27 15:53:17 -07005795PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005796M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005797S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005798F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005799F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005800
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005801PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005802M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005803W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5804L: linuxpps@ml.enneenne.com (subscribers-only)
5805S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005806F: Documentation/pps/
5807F: drivers/pps/
5808F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005809
Harry Wei71a6d0a2011-05-11 15:13:33 -07005810PPTP DRIVER
5811M: Dmitry Kozlov <xeb@mail.ru>
5812L: netdev@vger.kernel.org
5813S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005814F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005815W: http://sourceforge.net/projects/accel-pptp
5816
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005818M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819L: kpreempt-tech@lists.sourceforge.net
5820W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5821S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005822F: Documentation/preempt-locking.txt
5823F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824
5825PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005826M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005827L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005828W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005829S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005830F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005832PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005833M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005834L: linux-ide@vger.kernel.org
5835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005836F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005837
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005838PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005839M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005840L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005841L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005842S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005843F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005844
Geoff Levandf58a9d12006-11-23 00:46:51 +01005845PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005846M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005847L: linuxppc-dev@lists.ozlabs.org
5848L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005850F: arch/powerpc/boot/ps3*
5851F: arch/powerpc/include/asm/lv1call.h
5852F: arch/powerpc/include/asm/ps3*.h
5853F: arch/powerpc/platforms/ps3/
5854F: drivers/*/ps3*
5855F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005856F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005857F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005858F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005859
Jim Pariscffb4add2009-01-06 11:32:10 +00005860PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005861M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005862L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005863S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005864F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005865
Anton Vorontsov8defe592012-08-03 18:07:20 -07005866PSTORE FILESYSTEM
5867M: Anton Vorontsov <cbouatmailru@gmail.com>
5868M: Colin Cross <ccross@android.com>
5869M: Kees Cook <keescook@chromium.org>
5870M: Tony Luck <tony.luck@intel.com>
5871S: Maintained
5872T: git git://git.infradead.org/users/cbou/linux-pstore.git
5873F: fs/pstore/
5874F: include/linux/pstore*
5875F: drivers/firmware/efivars.c
5876F: drivers/acpi/apei/erst.c
5877
Richard Cochran7fbc4152012-03-10 01:55:53 +00005878PTP HARDWARE CLOCK SUPPORT
5879M: Richard Cochran <richardcochran@gmail.com>
5880S: Maintained
5881W: http://linuxptp.sourceforge.net/
5882F: Documentation/ABI/testing/sysfs-ptp
5883F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07005884F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00005885F: drivers/net/phy/dp83640*
5886F: drivers/ptp/*
5887F: include/linux/ptp_cl*
5888
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005889PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005890M: Roland McGrath <roland@redhat.com>
5891M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005892S: Maintained
5893F: include/asm-generic/syscall.h
5894F: include/linux/ptrace.h
5895F: include/linux/regset.h
5896F: include/linux/tracehook.h
5897F: kernel/ptrace.c
5898
Michael Krufky83202042006-07-03 00:24:18 -07005899PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005900M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005901L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005902L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005903W: http://www.isely.net/pvrusb2/
Joe Perches08deed12012-03-23 15:01:57 -07005904T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Michael Krufky83202042006-07-03 00:24:18 -07005905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005906F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03005907F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005908
Thierry Reding200efed2012-03-27 13:16:18 +02005909PWM SUBSYSTEM
5910M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005911L: linux-kernel@vger.kernel.org
5912S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02005913W: http://gitorious.org/linux-pwm
5914T: git git://gitorious.org/linux-pwm/linux-pwm.git
5915F: Documentation/pwm.txt
5916F: Documentation/devicetree/bindings/pwm/
5917F: include/linux/pwm.h
5918F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005919F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07005920F: drivers/video/backlight/pwm_bl.c
5921F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005922
Eric Miao30ec2612008-06-12 15:21:41 -07005923PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005924M: Eric Miao <eric.y.miao@gmail.com>
5925M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005926M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005927L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005928T: git git://github.com/hzhuang1/linux.git
5929T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005931F: arch/arm/mach-pxa/
5932F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08005933F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07005934F: drivers/usb/gadget/pxa2*
5935F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005936F: sound/arm/pxa*
5937F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005939MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005940M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005941M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005942L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005943T: git git://github.com/hzhuang1/linux.git
5944T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005945S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005946F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005947
Pierre Ossman272f1332007-05-14 21:25:26 +02005948PXA MMCI DRIVER
5949S: Orphan
5950
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005951PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005952M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005953L: rtc-linux@googlegroups.com
5954S: Maintained
5955
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005956QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005957M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005958L: linux-rdma@vger.kernel.org
5959S: Supported
5960F: drivers/infiniband/hw/qib/
5961
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005962QLOGIC QLA1280 SCSI DRIVER
5963M: Michael Reed <mdr@sgi.com>
5964L: linux-scsi@vger.kernel.org
5965S: Maintained
5966F: drivers/scsi/qla1280.[ch]
5967
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005969M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005970M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971L: linux-scsi@vger.kernel.org
5972S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005973F: Documentation/scsi/LICENSE.qla2xxx
5974F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975
Ravi Anand883c98f2010-04-28 11:45:49 +05305976QLOGIC QLA4XXX iSCSI DRIVER
5977M: Ravi Anand <ravi.anand@qlogic.com>
5978M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5979M: iscsi-driver@qlogic.com
5980L: linux-scsi@vger.kernel.org
5981S: Supported
5982F: drivers/scsi/qla4xxx/
5983
Ron Mercer5a4faa872006-07-25 00:40:21 -07005984QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00005985M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005986M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07005987M: linux-driver@qlogic.com
5988L: netdev@vger.kernel.org
5989S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005990F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005991F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07005992
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005993QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00005994M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07005995M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005996M: linux-driver@qlogic.com
5997L: netdev@vger.kernel.org
5998S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005999F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006000
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006001QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006002M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006003M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006004M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006005L: netdev@vger.kernel.org
6006S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006007F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006008
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006010M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011W: http://www.alarsen.net/linux/qnx4fs/
6012S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006013F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07006014F: include/linux/qnx4_fs.h
6015F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016
Antti Palosaari91952bc2012-10-01 12:28:46 -03006017QT1010 MEDIA DRIVER
6018M: Antti Palosaari <crope@iki.fi>
6019L: linux-media@vger.kernel.org
6020W: http://linuxtv.org/
6021W: http://palosaari.fi/linux/
6022Q: http://patchwork.linuxtv.org/project/linux-media/list/
6023T: git git://linuxtv.org/anttip/media_tree.git
6024S: Maintained
6025F: drivers/media/tuners/qt1010*
6026
Richard Kuo4f4567c2011-10-31 18:56:38 -05006027QUALCOMM HEXAGON ARCHITECTURE
6028M: Richard Kuo <rkuo@codeaurora.org>
6029L: linux-hexagon@vger.kernel.org
6030S: Supported
6031F: arch/hexagon/
6032
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006033RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006034M: Yehuda Sadeh <yehuda@inktank.com>
6035M: Sage Weil <sage@inktank.com>
6036M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006037M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006038W: http://ceph.com/
6039T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006040S: Supported
6041F: drivers/block/rbd.c
6042F: drivers/block/rbd_types.h
6043
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006045M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006046L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006048F: drivers/video/aty/radeon*
6049F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050
6051RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006052M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006053L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006055F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056
Randy Dunlape7839f22008-10-12 16:11:45 -07006057RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006058P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006059M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006060M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006061M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006062L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006063L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006064W: http://rt2x00.serialmonkey.com/
6065S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006066T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006067F: drivers/net/wireless/rt2x00/
6068
Nick Piggin9db55792008-02-08 04:19:49 -08006069RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006070M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006072F: Documentation/blockdev/ramdisk.txt
6073F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006074
Matt Mackall9e95ce22005-04-16 15:25:56 -07006075RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006076M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006078F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006079
Matt Porter394b7012005-11-07 01:00:15 -08006080RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006081M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006082M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006084F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006085
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006086RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006087L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006088S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006089F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006090
6091RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006092M: Josh Triplett <josh@freedesktop.org>
6093M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006094S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006095T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006096F: Documentation/RCU/torture.txt
6097F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006098
Florian Fainellic1f766b2008-02-06 22:39:44 +01006099RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006100M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006101S: Maintained
6102
Florian Fainellidb17f392007-12-19 11:30:30 +01006103RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006104M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006105L: netdev@vger.kernel.org
6106S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006107F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006108
Andy Grovera09ed662009-02-24 15:30:41 +00006109RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006110M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006111L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006112S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006113F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006114
Josh Triplett595182b2006-10-04 02:17:21 -07006115READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006116M: Dipankar Sarma <dipankar@in.ibm.com>
6117M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006118W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006119S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006120T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006121F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006122X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006123F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006124F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006125X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006126
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006127REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006128M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006129L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006130Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006132F: Documentation/rtc.txt
6133F: drivers/rtc/
6134F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006135
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006137L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006139F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140
Mark Brownb83a3132011-05-11 19:59:58 +02006141REGISTER MAP ABSTRACTION
6142M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6143T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6144S: Supported
6145F: drivers/base/regmap/
6146F: include/linux/regmap.h
6147
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006148REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6149M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006150T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006151S: Maintained
6152F: drivers/remoteproc/
6153F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006154F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006155
Ivo van Doorne08976452008-04-12 19:23:55 +02006156RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006157M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006158L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006159W: http://wireless.kernel.org/
6160T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6161T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006162S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006163F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006164F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006165
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006166RICOH SMARTMEDIA/XD DRIVER
6167M: Maxim Levitsky <maximlevitsky@gmail.com>
6168S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006169F: drivers/mtd/nand/r852.c
6170F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006171
Maxim Levitsky92634122011-03-25 01:56:59 -07006172RICOH R5C592 MEMORYSTICK DRIVER
6173M: Maxim Levitsky <maximlevitsky@gmail.com>
6174S: Maintained
6175F: drivers/memstick/host/r592.*
6176
Linus Torvalds1da177e2005-04-16 15:20:36 -07006177ROCKETPORT DRIVER
6178P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006179W: http://www.comtrol.com
6180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006181F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006182F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006183
6184ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006185M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006186L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006187W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006189F: include/linux/rose.h
6190F: include/net/rose.h
6191F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192
Antti Palosaari91952bc2012-10-01 12:28:46 -03006193RTL2830 MEDIA DRIVER
6194M: Antti Palosaari <crope@iki.fi>
6195L: linux-media@vger.kernel.org
6196W: http://linuxtv.org/
6197W: http://palosaari.fi/linux/
6198Q: http://patchwork.linuxtv.org/project/linux-media/list/
6199T: git git://linuxtv.org/anttip/media_tree.git
6200S: Maintained
6201F: drivers/media/dvb-frontends/rtl2830*
6202
Larry Finger59840482008-11-12 17:13:09 -06006203RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006204M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006205L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006206W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006207T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006208S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006209F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006210
Larry Finger59840482008-11-12 17:13:09 -06006211RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006212M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006213M: Hin-Tak Leung <htl10@users.sourceforge.net>
6214M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006215L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006216W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006217T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006218S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006219F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006220
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006221RTL8192CE WIRELESS DRIVER
6222M: Larry Finger <Larry.Finger@lwfinger.net>
6223M: Chaoming Li <chaoming_li@realsil.com.cn>
6224L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006225W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006226T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6227S: Maintained
6228F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006229F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006230
6231S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006232M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006233L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006235F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006236
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237S390
Joe Perches8b58be82009-07-29 15:04:30 -07006238M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6239M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006241L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006242W: http://www.ibm.com/developerworks/linux/linux390/
6243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006244F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006245F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006246F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006247F: Documentation/s390/
6248F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006249
6250S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006251M: Ursula Braun <ursula.braun@de.ibm.com>
6252M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006253M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006254L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006255W: http://www.ibm.com/developerworks/linux/linux390/
6256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006257F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006258
Felix Beckfeed9b62009-03-26 15:24:23 +01006259S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006260M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006261M: linux390@de.ibm.com
6262L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006263W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006264S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006265F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006266
Heiko Carstens5238da42006-02-11 17:56:01 -08006267S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006268M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006269M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006270L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006271W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006273F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274
Ursula Braundd96df22007-09-19 13:09:02 +02006275S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006276M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006277M: linux390@de.ibm.com
6278L: linux-s390@vger.kernel.org
6279W: http://www.ibm.com/developerworks/linux/linux390/
6280S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006281F: drivers/s390/net/*iucv*
6282F: include/net/iucv/
6283F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006284
Ben Dooks4dde7f72008-06-30 22:40:38 +01006285S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006286M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006287L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006288S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006289F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006290
Linus Torvalds1da177e2005-04-16 15:20:36 -07006291SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006292M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006293L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006294T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295W: http://www.mihu.de/linux/saa7146
6296S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006297F: drivers/media/common/saa7146/
6298F: drivers/media/pci/saa7146/
6299F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300
Corentin Chary92304a42011-12-05 12:38:35 -05006301SAMSUNG LAPTOP DRIVER
6302M: Corentin Chary <corentincj@iksaif.net>
6303L: platform-driver-x86@vger.kernel.org
6304S: Maintained
6305F: drivers/platform/x86/samsung-laptop.c
6306
Mark Brown4a109cc2010-09-24 10:50:46 +01006307SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006308M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006309L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6310S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006311F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006312
Jingoo Han0d89a282011-12-19 11:09:35 +09006313SAMSUNG FRAMEBUFFER DRIVER
6314M: Jingoo Han <jg1.han@samsung.com>
6315L: linux-fbdev@vger.kernel.org
6316S: Maintained
6317F: drivers/video/s3c-fb.c
6318
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006319SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6320M: Sangbeom Kim <sbkim73@samsung.com>
6321L: linux-kernel@vger.kernel.org
6322S: Supported
6323F: drivers/mfd/sec*.c
6324F: drivers/regulator/s2m*.c
6325F: drivers/regulator/s5m*.c
6326F: drivers/rtc/rtc-sec.c
6327F: include/linux/mfd/samsung/
6328
Alan Coxca749e22011-03-18 13:56:14 +00006329SERIAL DRIVERS
6330M: Alan Cox <alan@linux.intel.com>
6331L: linux-serial@vger.kernel.org
6332S: Maintained
6333F: drivers/tty/serial
6334
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306335SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006336M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306337S: Maintained
6338F: include/linux/dw_dmac.h
6339F: drivers/dma/dw_dmac_regs.h
6340F: drivers/dma/dw_dmac.c
6341
Thomas Gleixner88606e82010-12-14 21:37:13 +01006342TIMEKEEPING, NTP
6343M: John Stultz <johnstul@us.ibm.com>
6344M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006345T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006346S: Supported
6347F: include/linux/clocksource.h
6348F: include/linux/time.h
6349F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006350F: kernel/time/clocksource.c
6351F: kernel/time/time*.c
6352F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006353F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006354
Huang Shijie5b3f03f02010-02-02 04:07:47 -03006355TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006356M: Huang Shijie <shijie8@gmail.com>
6357M: Kang Yong <kangyong@telegent.com>
6358M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f02010-02-02 04:07:47 -03006359S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006360F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f02010-02-02 04:07:47 -03006361
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006363M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006365F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006366
6367SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006368M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006369M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006370T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006371S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006372F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006373F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006374
Chen Liqin6bcf6732009-06-13 15:24:33 +08006375SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006376M: Chen Liqin <liqin.chen@sunplusct.com>
6377M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006378W: http://www.sunplusct.com
6379S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006380F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006381
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006383M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384L: linux-scsi@vger.kernel.org
6385W: http://www.kernel.dk
6386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006387F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388
Roland Dreierfb50a832010-10-07 09:54:53 -07006389SCSI RDMA PROTOCOL (SRP) INITIATOR
6390M: David Dillow <dillowda@ornl.gov>
6391L: linux-rdma@vger.kernel.org
6392S: Supported
6393W: http://www.openfabrics.org
6394Q: http://patchwork.kernel.org/project/linux-rdma/list/
6395T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6396F: drivers/infiniband/ulp/srp/
6397F: include/scsi/srp.h
6398
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006400M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006401L: linux-scsi@vger.kernel.org
6402W: http://www.torque.net/sg
6403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006404F: drivers/scsi/sg.c
6405F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406
6407SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006408M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006410T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6411T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6412T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006414F: drivers/scsi/
6415F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416
6417SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006418M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419L: linux-scsi@vger.kernel.org
6420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006421F: Documentation/scsi/st.txt
6422F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006423
6424SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006425M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006426M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006427L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006428W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006430F: Documentation/networking/sctp.txt
6431F: include/linux/sctp.h
6432F: include/net/sctp/
6433F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434
6435SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006436M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006437S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006438F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006439F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006440F: drivers/watchdog/scx200_wdt.c
6441F: drivers/i2c/busses/scx200*
6442F: drivers/mtd/maps/scx200_docflash.c
6443F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006444
6445SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006446M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006448F: drivers/char/scx200_gpio.c
6449F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006450
6451SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006452M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006454F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455
Sascha Sommer6a369132008-07-15 14:21:29 +02006456SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006457M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006458L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006460F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006461
Randy Dunlape7839f22008-10-12 16:11:45 -07006462SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006463M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006464L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006465T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6466S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006467F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006468F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006469
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006470SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006471M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006472L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006473L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006475F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476
Ben Dooks0d1bb412009-06-14 13:52:37 +01006477SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006478M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006479L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006480S: Maintained
6481F: drivers/mmc/host/sdhci-s3c.c
6482
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006483SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006484M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006485L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006486L: linux-mmc@vger.kernel.org
6487S: Maintained
6488F: drivers/mmc/host/sdhci-spear.c
6489
James Morris8711cca2008-12-04 03:19:45 +11006490SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006491M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006492L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006493T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006494W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006495S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006496F: security/
James Morris8711cca2008-12-04 03:19:45 +11006497
Linus Torvalds1da177e2005-04-16 15:20:36 -07006498SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006499M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500S: Supported
6501
6502SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006503M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006504M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006505M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006506L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006507W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006508T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006509S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006510F: include/linux/selinux*
6511F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006512F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513
John Johansenc1c124e2010-07-29 14:48:09 -07006514APPARMOR SECURITY MODULE
6515M: John Johansen <john.johansen@canonical.com>
6516L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6517W: apparmor.wiki.kernel.org
6518T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6519S: Supported
6520F: security/apparmor/
6521
Jiri Slabycef2cf02007-05-08 00:31:45 -07006522SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006523M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006525F: drivers/misc/phantom.c
6526F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006527
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006528SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006529M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006531T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006532S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006533F: drivers/ata/
6534F: include/linux/ata.h
6535F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306537SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006538M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006539L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006540W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006541S: Supported
6542F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306543
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006544SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006545M: Sathya Perla <sathya.perla@emulex.com>
6546M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6547M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006548L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006549W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006550S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006551F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006552
Ben Hutchings8ceee662008-04-27 12:55:59 +01006553SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006554M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006555M: Ben Hutchings <bhutchings@solarflare.com>
6556L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006557S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006558F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006559
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006560SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006561M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006563F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006564
6565SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006566M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006567L: linux-ia64@vger.kernel.org
6568S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006569F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006570F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006571F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006572
Linus Torvalds1da177e2005-04-16 15:20:36 -07006573SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006574M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006575L: linux-visws-devel@lists.sf.net
6576W: http://linux-visws.sf.net
6577S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006578F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006579
Jack Steiner75312612008-08-15 00:40:42 -07006580SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006581M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006583F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006584
Len Brown6349d992009-08-14 15:07:14 -04006585SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006586M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006587L: sfi-devel@simplefirmware.org
6588W: http://simplefirmware.org/
6589T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006590S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006591F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006592F: drivers/sfi/
6593F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006594
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595SIMTEC EB110ATX (Chalice CATS)
6596P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006597P: Vincent Sanders <vince@simtec.co.uk>
6598M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006599W: http://www.simtec.co.uk/products/EB110ATX/
6600S: Supported
6601
6602SIMTEC EB2410ITX (BAST)
6603P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006604P: Vincent Sanders <vince@simtec.co.uk>
6605M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006606W: http://www.simtec.co.uk/products/EB2410ITX/
6607S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006608F: arch/arm/mach-s3c2410/mach-bast.c
6609F: arch/arm/mach-s3c2410/bast-ide.c
6610F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006611
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006612TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006613M: Sekhar Nori <nsekhar@ti.com>
6614M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306615L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306616T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006617Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006618S: Supported
6619F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006620F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006621
Francois Romieu92aab3c2005-07-30 13:11:18 +02006622SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006623M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006624L: netdev@vger.kernel.org
6625S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006626F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006627
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006629M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006631L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006633F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006635SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006636M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006637L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006639F: Documentation/i2c/busses/i2c-sis96x
6640F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006641
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006643M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006644W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006646F: Documentation/fb/sisfb.txt
6647F: drivers/video/sis/
6648F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006649
6650SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006651M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006652W: http://www.winischhofer.at/linuxsisusbvga.shtml
6653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006654F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655
Christoph Lameter415ad262007-07-26 10:40:56 -07006656SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006657M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006658M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006659M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07006660L: linux-mm@kvack.org
6661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006662F: include/linux/sl?b*.h
6663F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07006664
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006665SLEEPABLE READ-COPY UPDATE (SRCU)
6666M: Lai Jiangshan <laijs@cn.fujitsu.com>
6667M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6668W: http://www.rdrop.com/users/paulmck/RCU/
6669S: Supported
6670T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6671F: include/linux/srcu*
6672F: kernel/srcu*
6673
Casey Schaufler66372842012-05-23 18:34:52 -07006674SMACK SECURITY MODULE
6675M: Casey Schaufler <casey@schaufler-ca.com>
6676L: linux-security-module@vger.kernel.org
6677W: http://schaufler-ca.com
6678T: git git://git.gitorious.org/smack-next/kernel.git
6679S: Maintained
6680F: Documentation/security/Smack.txt
6681F: security/smack/
6682
Linus Torvalds1da177e2005-04-16 15:20:36 -07006683SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006684M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006685S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006686F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006687
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006688SMM665 HARDWARE MONITOR DRIVER
6689M: Guenter Roeck <linux@roeck-us.net>
6690L: lm-sensors@lm-sensors.org
6691S: Maintained
6692F: Documentation/hwmon/smm665
6693F: drivers/hwmon/smm665.c
6694
Steve Glendinning9df73052010-08-14 21:08:54 +02006695SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006696M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006697L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006698S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006699F: Documentation/hwmon/emc2103
6700F: drivers/hwmon/emc2103.c
6701
Hans de Goedea98d5062011-03-21 17:59:36 +01006702SMSC SCH5627 HARDWARE MONITOR DRIVER
6703M: Hans de Goede <hdegoede@redhat.com>
6704L: lm-sensors@lm-sensors.org
6705S: Supported
6706F: Documentation/hwmon/sch5627
6707F: drivers/hwmon/sch5627.c
6708
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006709SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006710M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006711L: lm-sensors@lm-sensors.org
6712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006713F: Documentation/hwmon/smsc47b397
6714F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006715
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006716SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006717M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006718L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006720F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006721F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006722
Steve Glendinning2cb37722008-12-11 20:54:30 -08006723SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006724M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006725L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006726S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006727F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006728
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006729SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006730M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006731L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006732S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006733F: drivers/video/smscufx.c
6734
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006735SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006736M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006737L: linux-altix@sgi.com
6738L: linux-ia64@vger.kernel.org
6739W: http://www.sgi.com/altix
6740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006741F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006742
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006743SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006744M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006745L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006746T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006747S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006748F: include/media/soc*
6749F: drivers/media/i2c/soc_camera/
6750F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006751
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006752SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006753M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006755F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006756
Linus Torvalds1da177e2005-04-16 15:20:36 -07006757SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006758M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006759L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006760S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006761F: drivers/md/
6762F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006765M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006766L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006768F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769
Michael Buesch61e115a2007-09-18 15:12:50 -04006770SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006771M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006772L: netdev@vger.kernel.org
6773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006774F: drivers/ssb/
6775F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006776
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006778M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05006779L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006780W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006782F: Documentation/laptops/sony-laptop.txt
6783F: drivers/char/sonypi.c
6784F: drivers/platform/x86/sony-laptop.c
6785F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006786
Alex Dubovbaf85322008-02-09 10:20:54 -08006787SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006788M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006789W: http://tifmxx.berlios.de/
6790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006791F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006792
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006794M: Jaroslav Kysela <perex@perex.cz>
6795M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006796L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006797W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006798T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006799T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006800S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006801F: Documentation/sound/
6802F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006803F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006804
Mark Brownbd903bd2008-11-19 19:16:05 +00006805SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006806M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006807M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006808T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006809L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006810W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006811S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006812F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006813F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006814
Sam Ravnborg473321f2009-01-04 15:47:49 -08006815SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006816M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006817L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006818Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006819T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6820T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006822F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006823F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006824
David S. Miller6404fcc2010-03-16 01:00:17 -07006825SPARC SERIAL DRIVERS
6826M: "David S. Miller" <davem@davemloft.net>
6827L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006828T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6829T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07006830S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05006831F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006832F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006833F: drivers/tty/serial/sunhv.c
6834F: drivers/tty/serial/sunsab.c
6835F: drivers/tty/serial/sunsab.h
6836F: drivers/tty/serial/sunsu.c
6837F: drivers/tty/serial/sunzilog.c
6838F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006839
Christopher Li389325b2012-04-05 14:25:14 -07006840SPARSE CHECKER
6841M: "Christopher Li" <sparse@chrisli.org>
6842L: linux-sparse@vger.kernel.org
6843W: https://sparse.wiki.kernel.org/
6844T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
6845T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
6846S: Maintained
6847F: include/linux/compiler.h
6848
viresh kumarfc0c1952010-04-01 12:31:21 +01006849SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006850M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306851M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006852L: spear-devel@list.st.com
6853L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006854W: http://www.st.com/spear
6855S: Maintained
6856F: arch/arm/plat-spear/
6857
Viresh Kumar71e09a92012-04-20 22:39:48 +05306858SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006859M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306860M: Shiraz Hashim <shiraz.hashim@st.com>
6861L: spear-devel@list.st.com
6862L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6863W: http://www.st.com/spear
6864S: Maintained
6865F: arch/arm/mach-spear13xx/
6866
viresh kumarfc0c1952010-04-01 12:31:21 +01006867SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006868M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306869M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006870L: spear-devel@list.st.com
6871L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006872W: http://www.st.com/spear
6873S: Maintained
6874F: arch/arm/mach-spear3xx/
6875
6876SPEAR6XX MACHINE SUPPORT
6877M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306878M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006879M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006880L: spear-devel@list.st.com
6881L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006882W: http://www.st.com/spear
6883S: Maintained
6884F: arch/arm/mach-spear6xx/
6885
6886SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006887M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006888L: spear-devel@list.st.com
6889L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006890W: http://www.st.com/spear
6891S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05306892F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01006893
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006894SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006895M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006896L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006897Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006898T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006900F: Documentation/spi/
6901F: drivers/spi/
6902F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006903
Jim Lewis2752e4012006-09-29 02:01:19 -07006904SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006905M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6906M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e4012006-09-29 02:01:19 -07006907L: netdev@vger.kernel.org
6908S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006909F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006910F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07006911
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006912SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006913M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006914L: linuxppc-dev@lists.ozlabs.org
6915L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006916W: http://www.ibm.com/developerworks/power/cell/
6917S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006918F: Documentation/filesystems/spufs.txt
6919F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006920
Phillip Lougherfc555842009-01-05 08:46:29 +00006921SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006922M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006923L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6924W: http://squashfs.org.uk
6925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006926F: Documentation/filesystems/squashfs.txt
6927F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006928
Linus Torvalds1da177e2005-04-16 15:20:36 -07006929SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006930M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006932F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006933
Linus Torvalds26e9a392008-10-17 09:50:12 -07006934STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08006935M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08006936L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08006937S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006938
Linus Torvalds26e9a392008-10-17 09:50:12 -07006939STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08006940M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006941T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006942L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08006943S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006944F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006945
Joe Perchesc8c8b102011-07-05 09:42:12 -07006946STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6947M: Henk de Groot <pe1dnn@amsat.org>
6948S: Odd Fixes
6949F: drivers/staging/wlags49_h2/
6950F: drivers/staging/wlags49_h25/
6951
Joe Perchesc9555152011-07-05 09:42:01 -07006952STAGING - ASUS OLED
6953M: Jakub Schmidtke <sjakub@gmail.com>
6954S: Odd Fixes
6955F: drivers/staging/asus_oled/
6956
Joe Perchesebd3d012011-07-05 09:42:02 -07006957STAGING - COMEDI
6958M: Ian Abbott <abbotti@mev.co.uk>
6959M: Mori Hess <fmhess@users.sourceforge.net>
6960S: Odd Fixes
6961F: drivers/staging/comedi/
6962
Joe Perches8ca572c2011-07-05 09:42:03 -07006963STAGING - CRYSTAL HD VIDEO DECODER
6964M: Naren Sankar <nsankar@broadcom.com>
6965M: Jarod Wilson <jarod@wilsonet.com>
6966M: Scott Davilla <davilla@4pi.com>
6967M: Manu Abraham <abraham.manu@gmail.com>
6968S: Odd Fixes
6969F: drivers/staging/crystalhd/
6970
Joe Perches0f16ffc2011-07-05 09:42:04 -07006971STAGING - ECHO CANCELLER
6972M: Steve Underwood <steveu@coppice.org>
6973M: David Rowe <david@rowetel.com>
6974S: Odd Fixes
6975F: drivers/staging/echo/
6976
Mark Einon8dc2bbe72011-08-29 18:42:37 +01006977STAGING - ET131X NETWORK DRIVER
6978M: Mark Einon <mark.einon@gmail.com>
6979S: Odd Fixes
6980F: drivers/staging/et131x/
6981
Joe Perchesa0138162011-07-05 15:21:34 -07006982STAGING - FLARION FT1000 DRIVERS
6983M: Marek Belisko <marek.belisko@gmail.com>
6984S: Odd Fixes
6985F: drivers/staging/ft1000/
6986
Joe Perchesec3fab92011-07-05 09:42:05 -07006987STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6988M: David Täht <d@teklibre.com>
6989S: Odd Fixes
6990F: drivers/staging/frontier/
6991
Joe Perches6c1bb422011-07-05 09:42:07 -07006992STAGING - INDUSTRIAL IO
6993M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07006994L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07006995S: Odd Fixes
6996F: drivers/staging/iio/
6997
Joe Perchesa0138162011-07-05 15:21:34 -07006998STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
6999M: Jarod Wilson <jarod@wilsonet.com>
7000W: http://www.lirc.org/
7001S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007002F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007003
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007004STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007005M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007006M: Marc Dietrich <marvin24@gmx.de>
7007L: ac100@lists.launchpad.net (moderated for non-subscribers)
7008S: Maintained
7009F: drivers/staging/nvec/
7010
Joe Perchesa0138162011-07-05 15:21:34 -07007011STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7012M: Andres Salomon <dilinger@queued.net>
7013M: Chris Ball <cjb@laptop.org>
7014M: Jon Nettleton <jon.nettleton@gmail.com>
7015W: http://wiki.laptop.org/go/DCON
7016S: Odd Fixes
7017F: drivers/staging/olpc_dcon/
7018
Chris Kelly94cfdd12012-03-14 10:55:42 +00007019STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007020M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007021M: Chris Kelly <ckelly@ozmodevices.com>
7022S: Maintained
7023F: drivers/staging/ozwpan/
7024
Joe Perchesa0138162011-07-05 15:21:34 -07007025STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007026M: Willy Tarreau <willy@meta-x.org>
7027S: Odd Fixes
7028F: drivers/staging/panel/
7029
Joe Perchesa0138162011-07-05 15:21:34 -07007030STAGING - REALTEK RTL8712U DRIVERS
7031M: Larry Finger <Larry.Finger@lwfinger.net>
7032M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7033S: Odd Fixes
7034F: drivers/staging/rtl8712/
7035
Joe Perches9629fa82011-07-05 09:42:09 -07007036STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7037M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7038S: Odd Fixes
7039F: drivers/staging/sm7xx/
7040
Joe Perchesa0138162011-07-05 15:21:34 -07007041STAGING - SOFTLOGIC 6x10 MPEG CODEC
7042M: Ben Collins <bcollins@bluecherry.net>
7043S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007044F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007045
7046STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7047M: William Hubbs <w.d.hubbs@gmail.com>
7048M: Chris Brannon <chris@the-brannons.com>
7049M: Kirk Reiser <kirk@braille.uwo.ca>
7050M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7051L: speakup@braille.uwo.ca
7052W: http://www.linux-speakup.org/
7053S: Odd Fixes
7054F: drivers/staging/speakup/
7055
7056STAGING - TI DSP BRIDGE DRIVERS
7057M: Omar Ramirez Luna <omar.ramirez@ti.com>
7058S: Odd Fixes
7059F: drivers/staging/tidspbridge/
7060
Joe Perchesa0138162011-07-05 15:21:34 -07007061STAGING - USB ENE SM/MS CARD READER DRIVER
7062M: Al Cho <acho@novell.com>
7063S: Odd Fixes
7064F: drivers/staging/keucr/
7065
Joe Perchesb3e871c2011-07-05 09:42:10 -07007066STAGING - VIA VT665X DRIVERS
7067M: Forest Bond <forest@alittletooquiet.net>
7068S: Odd Fixes
7069F: drivers/staging/vt665?/
7070
Joe Perches81a9a522011-07-05 09:42:11 -07007071STAGING - WINBOND IS89C35 WLAN USB DRIVER
7072M: Pavel Machek <pavel@ucw.cz>
7073S: Odd Fixes
7074F: drivers/staging/winbond/
7075
Joe Perches709bcb02011-07-05 09:42:13 -07007076STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007077M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007078S: Odd Fixes
7079F: drivers/staging/xgifb/
7080
Linus Torvalds1da177e2005-04-16 15:20:36 -07007081STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007082M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007083S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007084F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007085
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007086SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007087M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007088W: http://sammy.net/sun3/
7089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007090F: arch/m68k/kernel/*sun3*
7091F: arch/m68k/sun3*/
7092F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007093F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007094
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007095SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007096M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007097L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007098W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007099Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007100T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007101S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007102F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007103F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007104F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007105
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007106SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007107M: Len Brown <len.brown@intel.com>
7108M: Pavel Machek <pavel@ucw.cz>
7109M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007110L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007111S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007112F: Documentation/power/
7113F: arch/x86/kernel/acpi/
7114F: drivers/base/power/
7115F: kernel/power/
7116F: include/linux/suspend.h
7117F: include/linux/freezer.h
7118F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007119
7120SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007121M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007122L: linux-video@atrey.karlin.mff.cuni.cz
7123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007124F: Documentation/svga.txt
7125F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007126
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007127SWIOTLB SUBSYSTEM
7128M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7129L: linux-kernel@vger.kernel.org
7130S: Supported
7131F: lib/swiotlb.c
7132F: arch/*/kernel/pci-swiotlb.c
7133F: include/linux/swiotlb.h
7134
Linus Torvalds1da177e2005-04-16 15:20:36 -07007135SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007136M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007138F: Documentation/filesystems/sysv-fs.txt
7139F: fs/sysv/
7140F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007141
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007142TARGET SUBSYSTEM
7143M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7144L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007145L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007146L: http://groups.google.com/group/linux-iscsi-target-dev
7147W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007148T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007149S: Supported
7150F: drivers/target/
7151F: include/target/
7152F: Documentation/target/
7153
Alan Cox4e688522008-04-30 00:52:11 -07007154TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007155M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007157F: Documentation/accounting/taskstats*
7158F: include/linux/taskstats*
7159F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007160
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007161TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007162M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007163L: netdev@vger.kernel.org
7164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007165F: include/linux/pkt_cls.h
7166F: include/net/pkt_cls.h
7167F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007168
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007169TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007170M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7171M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007172W: http://tcp-lp-mod.sourceforge.net/
7173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007174F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007175
Antti Palosaari91952bc2012-10-01 12:28:46 -03007176TDA10071 MEDIA DRIVER
7177M: Antti Palosaari <crope@iki.fi>
7178L: linux-media@vger.kernel.org
7179W: http://linuxtv.org/
7180W: http://palosaari.fi/linux/
7181Q: http://patchwork.linuxtv.org/project/linux-media/list/
7182T: git git://linuxtv.org/anttip/media_tree.git
7183S: Maintained
7184F: drivers/media/dvb-frontends/tda10071*
7185
7186TDA18212 MEDIA DRIVER
7187M: Antti Palosaari <crope@iki.fi>
7188L: linux-media@vger.kernel.org
7189W: http://linuxtv.org/
7190W: http://palosaari.fi/linux/
7191Q: http://patchwork.linuxtv.org/project/linux-media/list/
7192T: git git://linuxtv.org/anttip/media_tree.git
7193S: Maintained
7194F: drivers/media/tuners/tda18212*
7195
7196TDA18218 MEDIA DRIVER
7197M: Antti Palosaari <crope@iki.fi>
7198L: linux-media@vger.kernel.org
7199W: http://linuxtv.org/
7200W: http://palosaari.fi/linux/
7201Q: http://patchwork.linuxtv.org/project/linux-media/list/
7202T: git git://linuxtv.org/anttip/media_tree.git
7203S: Maintained
7204F: drivers/media/tuners/tda18218*
7205
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007206TDA18271 MEDIA DRIVER
7207M: Michael Krufky <mkrufky@linuxtv.org>
7208L: linux-media@vger.kernel.org
7209W: http://linuxtv.org/
7210W: http://github.com/mkrufky
7211Q: http://patchwork.linuxtv.org/project/linux-media/list/
7212T: git git://linuxtv.org/mkrufky/tuners.git
7213S: Maintained
7214F: drivers/media/tuners/tda18271*
7215
Michael Krufkye48307a2012-10-02 00:56:33 -03007216TDA827x MEDIA DRIVER
7217M: Michael Krufky <mkrufky@linuxtv.org>
7218L: linux-media@vger.kernel.org
7219W: http://linuxtv.org/
7220W: http://github.com/mkrufky
7221Q: http://patchwork.linuxtv.org/project/linux-media/list/
7222T: git git://linuxtv.org/mkrufky/tuners.git
7223S: Maintained
7224F: drivers/media/tuners/tda8290.*
7225
Michael Krufky66cf9212012-10-02 00:56:28 -03007226TDA8290 MEDIA DRIVER
7227M: Michael Krufky <mkrufky@linuxtv.org>
7228L: linux-media@vger.kernel.org
7229W: http://linuxtv.org/
7230W: http://github.com/mkrufky
7231Q: http://patchwork.linuxtv.org/project/linux-media/list/
7232T: git git://linuxtv.org/mkrufky/tuners.git
7233S: Maintained
7234F: drivers/media/tuners/tda8290.*
7235
Jiri Pirko3d249d42011-11-11 22:16:48 +00007236TEAM DRIVER
7237M: Jiri Pirko <jpirko@redhat.com>
7238L: netdev@vger.kernel.org
7239S: Supported
7240F: drivers/net/team/
7241F: include/linux/if_team.h
7242
Erik Gilling84b94142010-06-09 15:35:53 -07007243TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007244M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007245L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007246Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7247T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007248S: Supported
7249F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007250F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007251F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007252
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007253TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007254M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007255L: netdev@vger.kernel.org
7256S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007257F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007258
Alan Cox4e688522008-04-30 00:52:11 -07007259Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007260M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007261S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007262F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007263
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007264TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007265M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007266M: Max Filippov <jcmvbkbc@gmail.com>
7267L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007269F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007270
Zhang Ruid3fb6952012-11-15 08:58:27 +08007271THERMAL
7272M: Zhang Rui <rui.zhang@intel.com>
7273L: linux-pm@vger.kernel.org
7274T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7275S: Supported
7276F: drivers/thermal/
7277F: include/linux/thermal.h
7278
Alan Cox4e688522008-04-30 00:52:11 -07007279THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007280M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007281L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05007282L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007283W: http://ibm-acpi.sourceforge.net
7284W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007285T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007287F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007288
Alex Dubov4020f2d2006-10-04 02:15:37 -07007289TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007290M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007292F: drivers/misc/tifm*
7293F: drivers/mmc/host/tifm_sd.c
7294F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007295
M R Swami Reddy152ad442012-04-02 20:02:31 +05307296TI LM49xxx FAMILY ASoC CODEC DRIVERS
7297M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307298M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307299L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7300S: Maintained
7301F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307302F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307303
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007304TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007305M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007306L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7307S: Maintained
7308F: sound/soc/codecs/twl4030*
7309
Luciano Coelho90921012011-11-20 21:40:41 +02007310TI WILINK WIRELESS DRIVERS
7311M: Luciano Coelho <coelho@ti.com>
7312L: linux-wireless@vger.kernel.org
7313W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7314W: http://wireless.kernel.org/en/users/Drivers/wl1251
7315T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7316S: Maintained
7317F: drivers/net/wireless/ti/
7318F: include/linux/wl12xx.h
7319
Per Lidene86eaa32006-01-12 16:45:18 +01007320TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007321M: Jon Maloy <jon.maloy@ericsson.com>
7322M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007323L: netdev@vger.kernel.org (core kernel code)
7324L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007325W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007327F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007328F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007329
Chris Metcalf867e3592010-05-28 23:09:12 -04007330TILE ARCHITECTURE
7331M: Chris Metcalf <cmetcalf@tilera.com>
7332W: http://www.tilera.com/scm/
7333S: Supported
7334F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007335F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007336F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007337F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007338
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007340M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007341L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342W: http://sourceforge.net/projects/tlan/
7343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007344F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007345F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007346
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007347TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007348M: Kentaro Takeda <takedakn@nttdata.co.jp>
7349M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007350L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7351L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007352L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7353L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7354W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007355T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007357F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007358
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007359TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007360M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007361L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007362S: Maintained
7363F: drivers/platform/x86/topstar-laptop.c
7364
Linus Torvalds1da177e2005-04-16 15:20:36 -07007365TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05007366L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007367S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007368F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007369
7370TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007371M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007372L: tlinux-users@tce.toshiba-dme.co.jp
7373W: http://www.buzzard.org.uk/toshiba/
7374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007375F: drivers/char/toshiba.c
7376F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377
Pierre Ossmand719f902009-03-24 21:06:09 +01007378TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007379M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007380M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007381L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007382S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007383F: drivers/mmc/host/tmio_mmc*
7384F: drivers/mmc/host/sh_mobile_sdhi.c
7385F: include/linux/mmc/tmio.h
7386F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007387
Hugh Dickins98f32602009-05-21 20:33:58 +01007388TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007389M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007390L: linux-mm@kvack.org
7391S: Maintained
7392F: include/linux/shmem_fs.h
7393F: mm/shmem.c
7394
Alan Cox4e688522008-04-30 00:52:11 -07007395TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007396M: Kent Yoder <key@linux.vnet.ibm.com>
7397M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007398W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007399M: Marcel Selhorst <tpmdd@selhorst.net>
7400M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007401W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007402L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007404F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007405
Joe Perchesd6f005a2009-10-26 16:49:40 -07007406TRACING
7407M: Steven Rostedt <rostedt@goodmis.org>
7408M: Frederic Weisbecker <fweisbec@gmail.com>
7409M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007410T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007411S: Maintained
7412F: Documentation/trace/ftrace.txt
7413F: arch/*/*/*/ftrace.h
7414F: arch/*/kernel/ftrace.c
7415F: include/*/ftrace.h
7416F: include/linux/trace*.h
7417F: include/trace/
7418F: kernel/trace/
7419
Linus Torvalds1da177e2005-04-16 15:20:36 -07007420TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007421M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007422T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007423S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007424K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007425
Alan Cox4e688522008-04-30 00:52:11 -07007426TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007427M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7428S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007429T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007430F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007431F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007432F: include/linux/serial_core.h
7433F: include/linux/serial.h
7434F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007435
Antti Palosaari91952bc2012-10-01 12:28:46 -03007436TUA9001 MEDIA DRIVER
7437M: Antti Palosaari <crope@iki.fi>
7438L: linux-media@vger.kernel.org
7439W: http://linuxtv.org/
7440W: http://palosaari.fi/linux/
7441Q: http://patchwork.linuxtv.org/project/linux-media/list/
7442T: git git://linuxtv.org/anttip/media_tree.git
7443S: Maintained
7444F: drivers/media/tuners/tua9001*
7445
Grant Grundler740db6d2008-02-17 11:53:49 -07007446TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007447M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007448L: netdev@vger.kernel.org
7449S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007450F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007451
7452TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007453M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007454L: vtun@office.satix.net
7455W: http://vtun.sourceforge.net/tun
7456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007457F: Documentation/networking/tuntap.txt
7458F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007459
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007460TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007461M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007463F: drivers/tc/
7464F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007465
Linus Torvalds1da177e2005-04-16 15:20:36 -07007466U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007467M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007468L: linux-scsi@vger.kernel.org
7469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007470F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007471
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007472UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007473M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007474M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007475L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007476T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007477W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007479F: Documentation/filesystems/ubifs.txt
7480F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007481
Alan Coxcc2020e2008-05-19 14:21:51 +01007482UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007483M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007484W: http://www.uclinux.org/
7485L: uclinux-dev@uclinux.org (subscribers-only)
7486S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007487F: arch/m68k/*/*_no.*
7488F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007489
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007490UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007491M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007492W: http://uclinux-h8.sourceforge.jp/
7493S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007494F: arch/h8300/
7495F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007496F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007497
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007499M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007501F: Documentation/filesystems/udf.txt
7502F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503
Alan Coxcc2020e2008-05-19 14:21:51 +01007504UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007505M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007507F: Documentation/filesystems/ufs.txt
7508F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007509
David Herrmann0a09d3a2012-06-10 15:16:28 +02007510UHID USERSPACE HID IO DRIVER:
7511M: David Herrmann <dh.herrmann@googlemail.com>
7512L: linux-input@vger.kernel.org
7513S: Maintained
7514F: drivers/hid/uhid.c
7515F: include/linux/uhid.h
7516
David Vrabel18332a82008-09-17 16:34:44 +01007517ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007518L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007519S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007520F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007521F: include/linux/uwb.h
7522F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007523
GuanXuetaob31d8272011-01-16 00:35:49 +08007524UNICORE32 ARCHITECTURE:
7525M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7526W: http://mprc.pku.edu.cn/~guanxuetao/linux
7527S: Maintained
7528T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7529F: arch/unicore32/
7530
Tony Finchd8379ab2009-11-27 15:50:30 +00007531UNIFDEF
7532M: Tony Finch <dot@dotat.at>
7533W: http://dotat.at/prog/unifdef
7534S: Maintained
7535F: scripts/unifdef.c
7536
Linus Torvalds1da177e2005-04-16 15:20:36 -07007537UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007538M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007539W: http://www.kernel.dk
7540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007541F: Documentation/cdrom/
7542F: drivers/cdrom/cdrom.c
7543F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007544
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307545UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7546M: Vinayak Holikatti <vinholikatti@gmail.com>
7547M: Santosh Y <santoshsy@gmail.com>
7548L: linux-scsi@vger.kernel.org
7549S: Supported
7550F: Documentation/scsi/ufs.txt
7551F: drivers/scsi/ufs/
7552
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007553UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007554M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007555W: http://www.linux-mtd.infradead.org/
7556L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007557T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007558S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007559F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007560F: include/linux/mtd/ubi.h
7561F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007562
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007563UNSORTED BLOCK IMAGES (UBI) Fastmap
7564M: Richard Weinberger <richard@nod.at>
7565L: linux-mtd@lists.infradead.org
7566S: Maintained
7567F: drivers/mtd/ubi/fastmap.c
7568
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007570M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007571L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007573F: Documentation/usb/acm.txt
7574F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007575
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007576USB ATTACHED SCSI
7577M: Matthew Wilcox <willy@linux.intel.com>
7578M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7579L: linux-usb@vger.kernel.org
7580L: linux-scsi@vger.kernel.org
7581S: Supported
7582F: drivers/usb/storage/uas.c
7583
Linus Torvalds1da177e2005-04-16 15:20:36 -07007584USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007585M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007586L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007587S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007588F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007589
Linus Torvalds1da177e2005-04-16 15:20:36 -07007590USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007591M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007592L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007594F: drivers/net/usb/cdc_*.c
7595F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007596
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007597USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007598M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007599L: linux-usb@vger.kernel.org
7600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007601F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007602
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007603USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007604M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007605L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007606W: http://www.linux-usb.org/usbnet
7607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007608F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007609
Alan Coxcc2020e2008-05-19 14:21:51 +01007610USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007611M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007612L: rio500-users@lists.sourceforge.net
7613W: http://rio500.sourceforge.net
7614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007615F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007616
Linus Torvalds1da177e2005-04-16 15:20:36 -07007617USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007618M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007619L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007621F: Documentation/usb/ehci.txt
7622F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007623
David Brownell69ae9e32006-11-14 02:03:31 -08007624USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f665a2011-06-08 19:16:28 +03007625M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007626L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007627W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f665a2011-06-08 19:16:28 +03007628T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007630F: drivers/usb/gadget/
7631F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007632
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007633USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007634M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007635L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007636T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007638F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007639F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007640
matt mooney857aab32011-06-17 15:50:46 -07007641USB/IP DRIVERS
7642M: Matt Mooney <mfm@muteddisk.com>
7643L: linux-usb@vger.kernel.org
7644S: Maintained
7645F: drivers/staging/usbip/
7646
Olav Kongas959eea22005-11-03 17:38:14 +02007647USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007648M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007649L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007651F: drivers/usb/host/isp116x*
7652F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007653
Linus Torvalds1da177e2005-04-16 15:20:36 -07007654USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007655M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007656L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007658F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007659
7660USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007661M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007662L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007663L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007664S: Maintained
7665W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007666F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007667
Clemens Ladischaf399172011-01-10 16:32:54 +01007668USB MIDI DRIVER
7669M: Clemens Ladisch <clemens@ladisch.de>
7670L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7671T: git git://git.alsa-project.org/alsa-kernel.git
7672S: Maintained
7673F: sound/usb/midi.*
7674
Linus Torvalds1da177e2005-04-16 15:20:36 -07007675USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007676M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007677L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007679F: Documentation/usb/ohci.txt
7680F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007681
Matthias Urlichsba460e42005-07-14 00:33:47 -07007682USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007683M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007684L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007686F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007687
Linus Torvalds1da177e2005-04-16 15:20:36 -07007688USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007689M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007690L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007691L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007692W: http://pegasus2.sourceforge.net/
7693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007694F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007695
Felipe Balbid3ad5582012-05-21 16:24:49 +03007696USB PHY LAYER
7697M: Felipe Balbi <balbi@ti.com>
7698L: linux-usb@vger.kernel.org
7699T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7700S: Maintained
7701F: drivers/usb/phy/
7702F: drivers/usb/otg/
7703
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007704USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007705M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007706L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007707S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007708F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007709
7710USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007711M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007712L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007713L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007714W: http://pegasus2.sourceforge.net/
7715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007716F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007717
Alan Cox4e688522008-04-30 00:52:11 -07007718USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007719M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007720L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007722F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007723
7724USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007725M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007726L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007727S: Maintained
7728W: http://geocities.com/i0xox0i
7729W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007730F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007731
Linus Torvalds1da177e2005-04-16 15:20:36 -07007732USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007733M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007734W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007736F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007737
7738USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007739M: Peter Berger <pberger@brimson.com>
7740M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007741L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007743F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007744
7745USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007746M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007747L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007748S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007749F: Documentation/usb/usb-serial.txt
7750F: drivers/usb/serial/generic.c
7751F: drivers/usb/serial/usb-serial.c
7752F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007753
Linus Torvalds1da177e2005-04-16 15:20:36 -07007754USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007755M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007756L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007758F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007759
7760USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007761M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007762L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007764F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007765
7766USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007767M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007768L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007769W: http://www.connecttech.com
7770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007771F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007772
Steve Glendinningb3f0db12012-08-15 21:53:38 +00007773USB SMSC75XX ETHERNET DRIVER
7774M: Steve Glendinning <steve.glendinning@shawell.net>
7775L: netdev@vger.kernel.org
7776S: Maintained
7777F: drivers/net/usb/smsc75xx.*
7778
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007779USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007780M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007781L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007783F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007784
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007785USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007786M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007787L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007788L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007789T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007790W: http://www.linux-projects.org
7791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007792F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007793F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007794
7795USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007796M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007797L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007798W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007799T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007800S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007801F: Documentation/usb/
7802F: drivers/net/usb/
7803F: drivers/usb/
7804F: include/linux/usb.h
7805F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007806
7807USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007808M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007809L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007811F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007812
David Brownell69ae9e32006-11-14 02:03:31 -08007813USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02007814M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007815L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007816W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07007817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007818F: drivers/net/usb/usbnet.c
7819F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007820
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007821USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007822M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03007823L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007824L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007825T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007826W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007827S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007828F: drivers/media/usb/uvc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007829
Laurent Pinchart8282da42012-10-04 02:32:42 +02007830USB WEBCAM GADGET
7831M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7832L: linux-usb@vger.kernel.org
7833S: Maintained
7834F: drivers/usb/gadget/*uvc*.c
7835F: drivers/usb/gadget/webcam.c
7836
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007837USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007838M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007839L: linux-wireless@vger.kernel.org
7840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007841F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007842
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007843USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007844M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007845L: linux-usb@vger.kernel.org
7846S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007847F: drivers/usb/host/xhci*
7848F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007849
Linus Torvalds1da177e2005-04-16 15:20:36 -07007850USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007851L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007852W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007853S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007854F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007855
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007856USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007857M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007858L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007859L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007860T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007861W: http://royale.zerezo.com/zr364xx/
7862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007863F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007864F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007865
Randy Dunlape7839f22008-10-12 16:11:45 -07007866USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007867M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007868M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007869L: user-mode-linux-devel@lists.sourceforge.net
7870L: user-mode-linux-user@lists.sourceforge.net
7871W: http://user-mode-linux.sourceforge.net
7872S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007873F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007874F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02007875F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07007876F: fs/hostfs/
7877F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007878
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007879USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007880M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08007881M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007883F: Documentation/DocBook/uio-howto.tmpl
7884F: drivers/uio/
7885F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007886
Karel Zak256cccb2012-06-01 10:13:09 +02007887UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007888M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02007889L: util-linux@vger.kernel.org
7890W: http://en.wikipedia.org/wiki/Util-linux
7891T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007892S: Maintained
7893
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007894UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007895M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007896L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007897W: http://dev.gentoo.org/~spock/projects/uvesafb/
7898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007899F: Documentation/fb/uvesafb.txt
7900F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007901
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007902VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007903M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007905F: Documentation/filesystems/vfat.txt
7906F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007907
Alex Williamsoncba33452012-07-31 08:16:22 -06007908VFIO DRIVER
7909M: Alex Williamson <alex.williamson@redhat.com>
7910L: kvm@vger.kernel.org
7911S: Maintained
7912F: Documentation/vfio.txt
7913F: drivers/vfio/
7914F: include/linux/vfio.h
7915
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007916VIDEOBUF2 FRAMEWORK
7917M: Pawel Osciak <pawel@osciak.com>
7918M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007919M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007920L: linux-media@vger.kernel.org
7921S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007922F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007923F: include/media/videobuf2-*
7924
Amit Shah9a824462010-03-23 18:23:09 +05307925VIRTIO CONSOLE DRIVER
7926M: Amit Shah <amit.shah@redhat.com>
7927L: virtualization@lists.linux-foundation.org
7928S: Maintained
7929F: drivers/char/virtio_console.c
7930F: include/linux/virtio_console.h
7931
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307932VIRTIO CORE, NET AND BLOCK DRIVERS
7933M: Rusty Russell <rusty@rustcorp.com.au>
7934M: "Michael S. Tsirkin" <mst@redhat.com>
7935L: virtualization@lists.linux-foundation.org
7936S: Maintained
7937F: drivers/virtio/
7938F: drivers/net/virtio_net.c
7939F: drivers/block/virtio_blk.c
7940F: include/linux/virtio_*.h
7941
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00007942VIRTIO HOST (VHOST)
7943M: "Michael S. Tsirkin" <mst@redhat.com>
7944L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007945L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00007946L: netdev@vger.kernel.org
7947S: Maintained
7948F: drivers/vhost/
7949F: include/linux/vhost.h
7950
Linus Torvalds1da177e2005-04-16 15:20:36 -07007951VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007952M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007953S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007954F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007955
Harald Weltef0bf7f62009-06-17 20:22:39 +02007956VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007957M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007958M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007959S: Maintained
7960F: drivers/mmc/host/via-sdmmc.c
7961
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007962VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007963M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007964L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007965S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007966F: include/linux/via-core.h
7967F: include/linux/via-gpio.h
7968F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007969F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007970
Francois Romieu01f20732007-01-26 00:57:17 -08007971VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007972M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007973L: netdev@vger.kernel.org
7974S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007975F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007976
Patrick McHardybe7f8272007-10-23 20:26:36 -07007977VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007978M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007979L: netdev@vger.kernel.org
7980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007981F: drivers/net/macvlan.c
7982F: include/linux/if_*vlan.h
7983F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07007984
Florian Fainelli55e331c2009-06-16 15:33:53 -07007985VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007986M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08007987L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07007988S: Maintained
7989F: drivers/vlynq/vlynq.c
7990F: include/linux/vlynq.h
7991
Martyn Welch390beae2012-05-03 17:52:36 +01007992VME SUBSYSTEM
7993M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02007994M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01007995M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7996L: devel@driverdev.osuosl.org
7997S: Maintained
7998T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7999F: Documentation/vme_api.txt
8000F: drivers/staging/vme/
8001F: drivers/vme/
8002F: include/linux/vme*
8003
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008004VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008005M: Shreyas Bhatewara <sbhatewara@vmware.com>
8006M: "VMware, Inc." <pv-drivers@vmware.com>
8007L: netdev@vger.kernel.org
8008S: Maintained
8009F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008010
Alok Kataria851b1642009-10-13 14:51:05 -07008011VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008012M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008013M: VMware PV-Drivers <pv-drivers@vmware.com>
8014L: linux-scsi@vger.kernel.org
8015S: Maintained
8016F: drivers/scsi/vmw_pvscsi.c
8017F: drivers/scsi/vmw_pvscsi.h
8018
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008019VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008020M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008021M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008022W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008023W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008024T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008025S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008026F: drivers/regulator/
8027F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008028
Juerg Haefligerab413192006-09-24 20:54:04 +02008029VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008030M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008031L: lm-sensors@lm-sensors.org
8032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008033F: Documentation/hwmon/vt1211
8034F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008035
Roger Lucas1de9e372005-11-26 20:20:05 +01008036VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008037M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008038L: lm-sensors@lm-sensors.org
8039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008040F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008041
Tony Olech88095e72011-05-14 16:48:13 -04008042VUB300 USB to SDIO/SD/MMC bridge chip
8043M: Tony Olech <tony.olech@elandigitalsystems.com>
8044L: linux-mmc@vger.kernel.org
8045L: linux-usb@vger.kernel.org
8046S: Supported
8047F: drivers/mmc/host/vub300.c
8048
Linus Torvalds1da177e2005-04-16 15:20:36 -07008049W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008050M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008052F: Documentation/w1/
8053F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008054
Charles Spirakis13927072006-07-05 18:05:15 +02008055W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008056M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008057L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008059F: Documentation/hwmon/w83791d
8060F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008061
Rudolf Marek61db0112006-12-12 18:18:30 +01008062W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008063M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008064L: lm-sensors@lm-sensors.org
8065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008066F: Documentation/hwmon/w83793
8067F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008068
Jean Delvaree3760b42010-10-28 20:31:49 +02008069W83795 HARDWARE MONITORING DRIVER
8070M: Jean Delvare <khali@linux-fr.org>
8071L: lm-sensors@lm-sensors.org
8072S: Maintained
8073F: drivers/hwmon/w83795.c
8074
Linus Torvalds1da177e2005-04-16 15:20:36 -07008075W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008076M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008078F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008079
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008080WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008081M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008082L: linux-watchdog@vger.kernel.org
8083W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008084T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008086F: Documentation/watchdog/
8087F: drivers/watchdog/
8088F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008089
Linus Torvalds1da177e2005-04-16 15:20:36 -07008090WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008091M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008092L: linux-scsi@vger.kernel.org
8093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008094F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008095
David Herrmannb22e00f2011-09-06 13:50:40 +02008096WIIMOTE HID DRIVER
8097M: David Herrmann <dh.herrmann@googlemail.com>
8098L: linux-input@vger.kernel.org
8099S: Maintained
8100F: drivers/hid/hid-wiimote*
8101
David Härdemane258b802009-09-21 17:04:53 -07008102WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008103M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008104S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008105F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008106
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008107WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008108M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008109M: linux-wimax@intel.com
8110L: wimax@linuxwimax.org
8111S: Supported
8112W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008113F: Documentation/wimax/README.wimax
8114F: include/linux/wimax.h
8115F: include/linux/wimax/debug.h
8116F: include/net/wimax.h
8117F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008118
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008119WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008120M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008122F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008123
Linus Torvalds1da177e2005-04-16 15:20:36 -07008124WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008125M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008126L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008127W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008129F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008130
Mark Brownfebf1df2008-04-02 00:51:09 -04008131WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008132M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8133M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008134L: linux-input@vger.kernel.org
8135T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8136W: http://opensource.wolfsonmicro.com/node/7
8137S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008138F: drivers/input/touchscreen/*wm97*
8139F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008140
Mark Brown055bcbc2010-08-13 14:18:12 +01008141WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008142M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008143L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008144T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008145T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008146W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008147S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008148F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008149F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008150F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008151F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008152F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008153F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008154F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008155F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008156F: drivers/input/misc/wm831x-on.c
8157F: drivers/input/touchscreen/wm831x-ts.c
8158F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008159F: drivers/mfd/arizona*
8160F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008161F: drivers/power/wm83*.c
8162F: drivers/rtc/rtc-wm83*.c
8163F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008164F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008165F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008166F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008167F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008168F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008169F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008170F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008171F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008172F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008173F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008174
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008175WORKQUEUE
8176M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008177T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8178S: Maintained
8179F: include/linux/workqueue.h
8180F: kernel/workqueue.c
8181F: Documentation/workqueue.txt
8182
Linus Torvalds1da177e2005-04-16 15:20:36 -07008183X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008184M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008185L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008186S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008187F: Documentation/networking/x25*
8188F: include/net/x25*
8189F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008190
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008191X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008192M: Thomas Gleixner <tglx@linutronix.de>
8193M: Ingo Molnar <mingo@redhat.com>
8194M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008195M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008196T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008198F: Documentation/x86/
8199F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008200
Matthew Garrettd09448532010-02-11 10:40:13 -05008201X86 PLATFORM DRIVERS
8202M: Matthew Garrett <mjg@redhat.com>
8203L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008204T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -05008205S: Maintained
8206F: drivers/platform/x86
8207
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008208X86 MCE INFRASTRUCTURE
8209M: Tony Luck <tony.luck@intel.com>
8210M: Borislav Petkov <bp@amd64.org>
8211L: linux-edac@vger.kernel.org
8212S: Maintained
8213F: arch/x86/kernel/cpu/mcheck/*
8214
Ian Campbellc4468082011-04-27 15:26:46 -07008215XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008216M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008217M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008218L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8219L: virtualization@lists.linux-foundation.org
8220S: Supported
8221F: arch/x86/xen/
8222F: drivers/*/xen-*front.c
8223F: drivers/xen/
8224F: arch/x86/include/asm/xen/
8225F: include/xen/
8226
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008227XEN HYPERVISOR ARM
8228M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8229L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8230S: Supported
8231F: arch/arm/xen/
8232F: arch/arm/include/asm/xen/
8233
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008234XEN NETWORK BACKEND DRIVER
8235M: Ian Campbell <ian.campbell@citrix.com>
8236L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8237L: netdev@vger.kernel.org
8238S: Supported
8239F: drivers/net/xen-netback/*
8240
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008241XEN PCI SUBSYSTEM
8242M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008243L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008244S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008245F: arch/x86/pci/*xen*
8246F: drivers/pci/*xen*
8247
8248XEN SWIOTLB SUBSYSTEM
8249M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008250L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008251S: Supported
8252F: arch/x86/xen/*swiotlb*
8253F: drivers/xen/*swiotlb*
8254
Linus Torvalds1da177e2005-04-16 15:20:36 -07008255XFS FILESYSTEM
8256P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008257M: Ben Myers <bpm@sgi.com>
8258M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008259M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008260L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008261W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008262T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008263S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008264F: Documentation/filesystems/xfs.txt
8265F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008266
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008267XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008268M: Anirudha Sarangi <anirudh@xilinx.com>
8269M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008270S: Maintained
8271F: drivers/net/ethernet/xilinx/xilinx_axienet*
8272
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008273XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008274M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008275W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008277F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008278
Peter Korsgaard238b8722006-12-06 20:35:17 -08008279XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008280M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008281L: linux-serial@vger.kernel.org
8282S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008283F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008284
Linus Torvalds1da177e2005-04-16 15:20:36 -07008285YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008286M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008287L: linux-hams@vger.kernel.org
8288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008289F: drivers/net/hamradio/yam*
8290F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008291
Henkaf64a5e2005-10-12 15:02:56 +02008292YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008293M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008294L: usbb2k-api-dev@nongnu.org
8295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008296F: Documentation/input/yealink.txt
8297F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008298
Linus Torvalds1da177e2005-04-16 15:20:36 -07008299Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008300M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008301W: http://yaina.de/jreuter/
8302W: http://www.qsl.net/dl1bke/
8303L: linux-hams@vger.kernel.org
8304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008305F: Documentation/networking/z8530drv.txt
8306F: drivers/net/hamradio/*scc.c
8307F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008308
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008309ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008310M: Daniel Drake <dsd@gentoo.org>
8311M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008312W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008313L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008314L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008316F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008317
Linus Torvalds1da177e2005-04-16 15:20:36 -07008318ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008319L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008320L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008321W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008322T: Mercurial http://linuxtv.org/hg/v4l-dvb
8323S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008324F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008325
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008326ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008327M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008328S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008329F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008330
Linus Torvalds1da177e2005-04-16 15:20:36 -07008331THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008332M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008333L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008334Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008335T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008336S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008337F: *
8338F: */