blob: cf7ff78f019bdb33f6697da88da9af64733d07ef [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500225L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700226W: http://piie.net/?section=acerhdf
227S: Maintained
228F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200229
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230ACER WMI LAPTOP EXTRAS
Carlos Corbachod9269a72011-05-02 09:57:18 +0100231M: Joey Lee <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700237M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200238M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500239L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400240W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800241Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400242T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700244F: drivers/acpi/
245F: drivers/pnp/pnpacpi/
246F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700247F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248
Len Brown8b59a452007-01-08 19:03:28 -0500249ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500251L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300252W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700254F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700262
Len Brown359acec2007-02-10 01:59:24 -0500263ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500269
Carlos Corbachobff431e2008-02-05 02:17:04 +0000270ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500271L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700273F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100275AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700276M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200277W: http://wiki.parisc-linux.org/AD1889
278L: linux-parisc@vger.kernel.org
279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700280F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
283M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100284L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700285W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000286S: Supported
287F: drivers/misc/ad525x_dpot.c
288
289AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/regulator/ad5398.c
295
296AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/input/misc/ad714x.c
302
303AD7877 TOUCHSCREEN DRIVER
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/touchscreen/ad7877.c
309
310AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7879.c
316
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700317ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
318M: Jiri Kosina <jkosina@suse.cz>
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200323L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/hwmon/adm1025
326F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330L: lm-sensors@lm-sensors.org
331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333
Michael Wucc0b88c2007-08-31 01:15:25 -0400334ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400335L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200336W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400339
Michael Hennerich527a1a82010-10-28 11:31:28 +0000340ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
341M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100342L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700343W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000344S: Supported
345F: drivers/mfd/adp5520.c
346F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700347F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800348F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000349F: drivers/input/keyboard/adp5520-keys.c
350
351ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
352M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100353L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700354W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000355S: Supported
356F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800357F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000358
359ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
360M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100361L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700362W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000363S: Supported
364F: drivers/video/backlight/adp8860_bl.c
365
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100366ADS1015 HARDWARE MONITOR DRIVER
367M: Dirk Eibach <eibach@gdsys.de>
368L: lm-sensors@lm-sensors.org
369S: Maintained
370F: Documentation/hwmon/ads1015
371F: drivers/hwmon/ads1015.c
372F: include/linux/i2c/ads1015.h
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700375M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700377F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Jean Delvareb058b852009-12-09 20:36:08 +0100379ADT7475 HARDWARE MONITOR DRIVER
380M: Jean Delvare <khali@linux-fr.org>
381L: lm-sensors@lm-sensors.org
382S: Maintained
383F: Documentation/hwmon/adt7475
384F: drivers/hwmon/adt7475.c
385
Michael Hennerich527a1a82010-10-28 11:31:28 +0000386ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
387M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100388L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700389W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000390S: Supported
391F: drivers/input/misc/adxl34x.c
392
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400393ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700394M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400395L: linux-scsi@vger.kernel.org
396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700397F: Documentation/scsi/advansys.txt
398F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700403F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Antti Palosaari91952bc2012-10-01 12:28:46 -0300405AF9013 MEDIA DRIVER
406M: Antti Palosaari <crope@iki.fi>
407L: linux-media@vger.kernel.org
408W: http://linuxtv.org/
409W: http://palosaari.fi/linux/
410Q: http://patchwork.linuxtv.org/project/linux-media/list/
411T: git git://linuxtv.org/anttip/media_tree.git
412S: Maintained
413F: drivers/media/dvb-frontends/af9013*
414
415AF9033 MEDIA DRIVER
416M: Antti Palosaari <crope@iki.fi>
417L: linux-media@vger.kernel.org
418W: http://linuxtv.org/
419W: http://palosaari.fi/linux/
420Q: http://patchwork.linuxtv.org/project/linux-media/list/
421T: git git://linuxtv.org/anttip/media_tree.git
422S: Maintained
423F: drivers/media/dvb-frontends/af9033*
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200426L: linux-fsdevel@vger.kernel.org
427S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700428F: Documentation/filesystems/affs.txt
429F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700431AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700432M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700433L: linux-afs@lists.infradead.org
434S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700435F: fs/afs/
436F: include/net/af_rxrpc.h
437F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700440M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700441T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700443F: drivers/char/agp/
444F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448L: linux-scsi@vger.kernel.org
449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/scsi/aha152x*
451F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Hannes Reinecke64624d42007-10-19 10:32:29 +0200453AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200455L: linux-scsi@vger.kernel.org
456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/scsi/aic7xxx/
458F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200459
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700460AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700461M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700462L: linux-aio@kvack.org
463S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700464F: fs/aio.c
465F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700468M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700469L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470W: http://www.linux-usb.org/SpeedTouch/
471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700472F: drivers/usb/atm/speedtch.c
473F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Pierre Ossman272f1332007-05-14 21:25:26 +0200475ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700476M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700478F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200479
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000480ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700481M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100482L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700484F: Documentation/i2c/busses/i2c-ali1563
485F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700488M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700489M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500490M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700491S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700492L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700493F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Tobias Klauseradf92512011-02-09 10:58:29 +0100495ALTERA UART/JTAG UART SERIAL DRIVERS
496M: Tobias Klauser <tklauser@distanz.ch>
497L: linux-serial@vger.kernel.org
498L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
499S: Maintained
500F: drivers/tty/serial/altera_uart.c
501F: drivers/tty/serial/altera_jtaguart.c
502F: include/linux/altera_uart.h
503F: include/linux/altera_jtaguart.h
504
Andreas Herrmann512d1022011-05-25 20:43:31 +0200505AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100506M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200507L: lm-sensors@lm-sensors.org
508S: Maintained
509F: Documentation/hwmon/fam15h_power
510F: drivers/hwmon/fam15h_power.c
511
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700512AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700513M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700514L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700516F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700517
Jordan Crousef90b8112006-01-06 00:12:14 -0800518AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800519P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700520L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800521W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/char/hw_random/geode-rng.c
524F: drivers/crypto/geode*
525F: drivers/video/geode/
526F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800527
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200528AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200529M: Joerg Roedel <joro@8bytes.org>
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 Roedele4110562012-10-23 16:16:23 +0200532S: Maintained
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
Andreas Herrmann943482d2012-10-29 18:51:38 +0100537M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700538L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700540F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200541
Stelian Pop284f42b2006-12-12 18:18:31 +0100542AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700543M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100544S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200545F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100546
Tom Tuckerf94b5332006-09-22 15:22:48 -0700547AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700548M: Tom Tucker <tom@opengridcomputing.com>
549M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700550L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700552F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700553
Michael Hennerich527a1a82010-10-28 11:31:28 +0000554ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200555M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100556L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000557L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700558W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000559S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100560F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200561F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000562F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000563F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100564F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000565
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400566ANALOG DEVICES INC ASOC DRIVERS
567L: uclinux-dist-devel@blackfin.uclinux.org
568L: alsa-devel@alsa-project.org (moderated for non-subscribers)
569W: http://blackfin.uclinux.org/
570S: Supported
571F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400572
Johannes Berg42269062006-07-25 16:15:50 +0200573AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700574M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000575L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700576L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700578F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200581M: Jiri Kosina <jkosina@suse.cz>
582S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700583F: arch/x86/kernel/apm_32.c
584F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200585F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700587APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700588M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700589L: linux-input@vger.kernel.org
590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700591F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700592
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700593APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200594M: Henrik Rydberg <rydberg@euromail.se>
595L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700597F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700600M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700602F: drivers/net/appletalk/
603F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Viresh Kumara4801672011-02-22 15:46:07 +0530605ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700606M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530607L: linux-ide@vger.kernel.org
608S: Maintained
609F: include/linux/pata_arasan_cf_data.h
610F: drivers/ata/pata_arasan_cf.c
611
Jaya Kumar1154ea72005-06-21 17:17:04 -0700612ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700613M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700615F: drivers/video/arcfb.c
616F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700619M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700621F: arch/arm/lib/floppydma.S
622F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Will Deacon6f965212011-07-01 14:38:53 +0100624ARM PMU PROFILING AND DEBUGGING
625M: Will Deacon <will.deacon@arm.com>
626S: Maintained
627F: arch/arm/kernel/perf_event*
628F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100629F: arch/arm/include/asm/pmu.h
630F: arch/arm/kernel/hw_breakpoint.c
631F: arch/arm/include/asm/hw_breakpoint.h
632
Russell Kingd4275352009-04-16 14:05:27 +0100633ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700634M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700635L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100636W: http://www.arm.linux.org.uk/
637S: Maintained
638F: arch/arm/
639
Stephen Boydd323c2432012-10-24 11:00:29 -0700640ARM SUB-ARCHITECTURES
641L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
642S: MAINTAINED
643F: arch/arm/mach-*/
644F: arch/arm/plat-*/
645T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
646
Russell Kingcefbf4e2009-11-22 17:40:28 +0000647ARM PRIMECELL AACI PL041 DRIVER
648M: Russell King <linux@arm.linux.org.uk>
649S: Maintained
650F: sound/arm/aaci.*
651
652ARM PRIMECELL CLCD PL110 DRIVER
653M: Russell King <linux@arm.linux.org.uk>
654S: Maintained
655F: drivers/video/amba-clcd.*
656
657ARM PRIMECELL KMI PL050 DRIVER
658M: Russell King <linux@arm.linux.org.uk>
659S: Maintained
660F: drivers/input/serio/ambakmi.*
661F: include/linux/amba/kmi.h
662
Russell King2761f5c2007-05-24 06:56:08 +0200663ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200664S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700665F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200666
Russell Kingcefbf4e2009-11-22 17:40:28 +0000667ARM PRIMECELL BUS SUPPORT
668M: Russell King <linux@arm.linux.org.uk>
669S: Maintained
670F: drivers/amba/
671F: include/linux/amba/bus.h
672
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800673ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700674M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700675L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800676S: Maintained
677
Sergey Lapin9c784f92008-08-03 02:29:48 +0100678ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700679M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700680L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100681S: Maintained
682
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700684M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700685L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800686S: Maintained
687
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800688ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700689M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800690M: Nicolas Ferre <nicolas.ferre@atmel.com>
691M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700692L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200693W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800694W: http://www.linux4sam.org
695S: Supported
696F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100697
Rob Herring986cf2e2011-06-22 11:28:53 -0500698ARM/CALXEDA HIGHBANK ARCHITECTURE
699M: Rob Herring <rob.herring@calxeda.com>
700L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
701S: Maintained
702F: arch/arm/mach-highbank/
703
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300704ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
705M: Anton Vorontsov <avorontsov@mvista.com>
706S: Maintained
707F: arch/arm/mach-cns3xxx/
708T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
709
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800710ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100711M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000712M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700713L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800714S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100715F: arch/arm/mach-ep93xx/
716F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800717
718ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700719M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700720L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800721S: Maintained
722
Russell Kingd4275352009-04-16 14:05:27 +0100723ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700724M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700725L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700726S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100727F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700728F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100729
Mike Rapoportd48134e2008-08-20 09:03:26 +0100730ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700731M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100733S: Maintained
734
Hubert Feurstein94150092009-10-07 08:36:07 +0100735ARM/CONTEC MICRO9 MACHINE SUPPORT
736M: Hubert Feurstein <hubert.feurstein@contec.at>
737S: Maintained
738F: arch/arm/mach-ep93xx/micro9.c
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700741M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742S: Maintained
743
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200744ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100745M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700746L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100747T: git git://git.berlios.de/gemini-board
748S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300749F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200750
Barry Songa990cbd2011-07-12 21:44:10 +0800751ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
752M: Barry Song <baohua.song@csr.com>
753L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
754S: Maintained
755F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800756F: drivers/dma/sirf-dma.c
757F: drivers/i2c/busses/i2c-sirf.c
758F: drivers/pinctrl/pinctrl-sirf.c
759F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800760
Russell Kingd4275352009-04-16 14:05:27 +0100761ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700762M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700763L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100764W: http://www.arm.linux.org.uk/
765S: Maintained
766F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700767F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100768
Russell Kinga9da4f72008-07-12 21:42:04 +0100769ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700770M: Daniel Ribeiro <drwyrm@gmail.com>
771M: Stefan Schmidt <stefan@openezx.org>
772M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200773L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100774W: http://www.openezx.org/
775S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200776T: topgit git://git.openezx.org/openezx.git
777F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100778
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200779ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100780M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700781L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100782S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700783T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300784F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200785
Russell Kingd4275352009-04-16 14:05:27 +0100786ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700787M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700788L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100789W: http://www.arm.linux.org.uk/
790S: Maintained
791F: arch/arm/include/asm/hardware/dec21285.h
792F: arch/arm/mach-footbridge/
793
Sascha Hauer86183a52008-07-24 23:50:35 +0200794ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700795M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700796L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200797S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700798T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100799F: arch/arm/mach-imx/
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100800F: arch/arm/plat-mxc/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700801F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200802
Shawn Guo8bcb9762011-10-07 22:24:18 +0800803ARM/FREESCALE IMX6
804M: Shawn Guo <shawn.guo@linaro.org>
805L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
806S: Maintained
807T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
808F: arch/arm/mach-imx/*imx6*
809
Shawn Guoa9866a092011-10-21 11:53:34 +0800810ARM/FREESCALE MXS ARM ARCHITECTURE
811M: Shawn Guo <shawn.guo@linaro.org>
812L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
813S: Maintained
814T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
815F: arch/arm/mach-mxs/
816
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800817ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700818M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700819L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800820S: Maintained
821
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100822ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700823M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700824L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100825S: Maintained
826
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200827ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700828M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100829M: Paul Parsons <lost.distance@yahoo.com>
830L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200831S: Maintained
832F: arch/arm/mach-pxa/hx4700.c
833F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100834F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200835
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100836ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700837M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200838W: www.jlime.com
839S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700840T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
841F: arch/arm/mach-sa1100/jornada720.c
842F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100843
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200844ARM/IGEP MACHINE SUPPORT
845M: Enric Balletbo i Serra <eballetbo@gmail.com>
846M: Javier Martinez Canillas <javier@dowhile0.org>
847L: linux-omap@vger.kernel.org
848L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
849S: Maintained
850F: arch/arm/mach-omap2/board-igep0020.c
851
Marek Vasut403d2972010-05-22 00:29:39 +0200852ARM/INCOME PXA270 SUPPORT
853M: Marek Vasut <marek.vasut@gmail.com>
854L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
855S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700856F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200857
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800858ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700859M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700860M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700861L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700862S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100863
864ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700865M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700866L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700867S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800868
869ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700870M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700871M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700872L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700873S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800874
875ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700876M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700877M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700878L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700879S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800880
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800881ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700882M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700883L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800884S: Maintained
885
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200886ARM/INTEL IXP4XX ARM ARCHITECTURE
887M: Imre Kaloz <kaloz@openwrt.org>
888M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100889L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200890S: Maintained
891F: arch/arm/mach-ixp4xx/
892
Joe Perches838553c2010-10-26 14:22:59 -0700893ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100894M: Jonathan Cameron <jic23@cam.ac.uk>
895L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
896S: Maintained
897F: arch/arm/mach-pxa/stargate2.c
898F: drivers/pcmcia/pxa2xx_stargate2.c
899
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800900ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700901M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700902M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700903L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700904S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800905
906ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700907M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700908L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800909S: Maintained
910
911ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700912M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700913L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800914S: Maintained
915
Philipp Zabel3b8861712008-07-09 21:27:15 +0100916ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700917M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100918S: Maintained
919
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200920ARM/Marvell Armada 370 and Armada XP SOC support
921M: Jason Cooper <jason@lakedaemon.net>
922M: Andrew Lunn <andrew@lunn.ch>
923M: Gregory Clement <gregory.clement@free-electrons.com>
924L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
925S: Maintained
926F: arch/arm/mach-mvebu/
927
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400928ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
929M: Jason Cooper <jason@lakedaemon.net>
930M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700931L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400932S: Maintained
933F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400934F: arch/arm/mach-kirkwood/
935F: arch/arm/mach-mv78xx0/
936F: arch/arm/mach-orion5x/
937F: arch/arm/plat-orion/
938
Alexander Clouterd69ac132011-04-14 15:22:02 -0700939ARM/Orion SoC/Technologic Systems TS-78xx platform support
940M: Alexander Clouter <alex@digriz.org.uk>
941L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
942W: http://www.digriz.org.uk/ts78xx/kernel
943S: Maintained
944F: arch/arm/mach-orion5x/ts78xx-*
945
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000946ARM/MICREL KS8695 ARCHITECTURE
947M: Greg Ungerer <gerg@uclinux.org>
948L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
949F: arch/arm/mach-ks8695
950S: Odd Fixes
951
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200952ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700953M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700954L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200955F: arch/arm/mach-pxa/mioa701.c
956S: Maintained
957
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100958ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700959M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100960S: Maintained
961
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100962ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700963M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200964M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700965M: STEricsson <STEricsson_nomadik_linux@list.st.com>
966L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
967S: Maintained
968F: arch/arm/mach-nomadik/
969F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100970F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200971T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100972
Andy Green9d762952009-05-19 06:41:42 -0300973ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700974M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300975L: openmoko-kernel@lists.openmoko.org (subscribers-only)
976W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
977S: Supported
978
Daniel Walker0c19d212009-12-07 16:53:51 -0800979ARM/QUALCOMM MSM MACHINE SUPPORT
980M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800981M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800982M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800983L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800984F: arch/arm/mach-msm/
985F: drivers/video/msm/
986F: drivers/mmc/host/msm_sdcc.c
987F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800988F: drivers/tty/serial/msm_serial.h
989F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -0700990F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -0700991F: drivers/*/pm8???-*
992F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -0800993T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -0800994S: Maintained
995
Dirk Opfer8459c152005-11-06 14:27:52 +0000996ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700997M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
998M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000999S: Maintained
1000
Marek Vasut5d783a22009-07-16 13:26:48 +02001001ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001002M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001003L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001004W: http://hackndev.com
1005S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001006F: arch/arm/mach-pxa/include/mach/palmtx.h
1007F: arch/arm/mach-pxa/palmtx.c
1008F: arch/arm/mach-pxa/include/mach/palmt5.h
1009F: arch/arm/mach-pxa/palmt5.c
1010F: arch/arm/mach-pxa/include/mach/palmld.h
1011F: arch/arm/mach-pxa/palmld.c
1012F: arch/arm/mach-pxa/include/mach/palmte2.h
1013F: arch/arm/mach-pxa/palmte2.c
1014F: arch/arm/mach-pxa/include/mach/palmtc.h
1015F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001016
Joe Perchesb57fe922009-12-14 18:00:52 -08001017ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001018M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001019L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001020W: http://hackndev.com
1021S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001022F: arch/arm/mach-pxa/include/mach/palmtreo.h
1023F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001024
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001025ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001026M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001027L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001028W: http://hackndev.com
1029S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001030F: arch/arm/mach-pxa/include/mach/palmz72.h
1031F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001034M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1036S: Maintained
1037
1038ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001039M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001040L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041W: http://www.arm.linux.org.uk/
1042S: Maintained
1043
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001044ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001045M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001046L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001047S: Maintained
1048
Russell Kingd4275352009-04-16 14:05:27 +01001049ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001050M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001051L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001052W: http://www.arm.linux.org.uk/
1053S: Maintained
1054F: arch/arm/common/time-acorn.c
1055F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1056F: arch/arm/include/asm/hardware/ioc.h
1057F: arch/arm/include/asm/hardware/iomd.h
1058F: arch/arm/include/asm/hardware/memc.h
1059F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001060F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001061F: drivers/net/ethernet/i825xx/ether1*
1062F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001063F: drivers/scsi/arm/
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001066M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067W: http://www.shark-linux.de/shark.html
1068S: Maintained
1069
Ben Dooksb21477f2009-06-13 10:46:34 +01001070ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001071M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001072M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001073L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001074L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001075W: http://www.fluff.org/ben/linux/
1076S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001077F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001078F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001079F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001080F: arch/arm/mach-s3c24*/
1081F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001082F: drivers/*/*s3c2410*
1083F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001084F: drivers/spi/spi-s3c*
1085F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001087ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001088M: Kukjin Kim <kgene.kim@samsung.com>
1089L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1091S: Maintained
1092F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001093F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001094
Kyungmin Park10ffa962011-03-04 17:36:26 -08001095ARM/SAMSUNG MOBILE MACHINE SUPPORT
1096M: Kyungmin Park <kyungmin.park@samsung.com>
1097L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1098S: Maintained
1099F: arch/arm/mach-s5pv210/mach-aquila.c
1100F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001101F: arch/arm/mach-exynos/mach-universal_c210.c
1102F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001103
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001104ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1105M: Kyungmin Park <kyungmin.park@samsung.com>
1106M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1107L: linux-arm-kernel@lists.infradead.org
1108L: linux-media@vger.kernel.org
1109S: Maintained
1110F: arch/arm/plat-s5p/dev-fimc*
1111F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001112F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001113
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001114ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1115M: Kyungmin Park <kyungmin.park@samsung.com>
1116M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001117M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001118L: linux-arm-kernel@lists.infradead.org
1119L: linux-media@vger.kernel.org
1120S: Maintained
1121F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001122F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001123
1124ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1125M: Kyungmin Park <kyungmin.park@samsung.com>
1126M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1127L: linux-arm-kernel@lists.infradead.org
1128L: linux-media@vger.kernel.org
1129S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001130F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001131
Paul Mundtd48d38e2010-02-08 12:50:24 +09001132ARM/SHMOBILE ARM ARCHITECTURE
1133M: Paul Mundt <lethal@linux-sh.org>
1134M: Magnus Damm <magnus.damm@gmail.com>
1135L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001136W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001137Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001138T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001139S: Supported
1140F: arch/arm/mach-shmobile/
1141F: drivers/sh/
1142
Dinh Nguyen66314222012-07-18 16:07:18 -06001143ARM/SOCFPGA ARCHITECTURE
1144M: Dinh Nguyen <dinguyen@altera.com>
1145S: Maintained
1146F: arch/arm/mach-socfpga/
1147
1148ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1149M: Dinh Nguyen <dinguyen@altera.com>
1150S: Maintained
1151F: drivers/clk/socfpga/
1152
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001153ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001154M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001155L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001156S: Maintained
1157
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001158ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001159M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001160L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1161S: Maintained
1162
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001163ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001164M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001165L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001166S: Maintained
1167
wanzongshun98ad6e32009-02-13 06:04:32 +01001168ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001169M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001170L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001171W: http://www.mcuos.com
1172S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001173F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001174F: drivers/input/keyboard/w90p910_keypad.c
1175F: drivers/input/touchscreen/w90p910_ts.c
1176F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001177F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001178F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001179F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001180F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001181F: drivers/usb/host/ehci-w90x900.c
1182F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001183
Linus Walleij54274d72010-04-04 10:58:03 +01001184ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001185M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001186L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1187S: Supported
1188F: arch/arm/mach-u300/
1189F: drivers/i2c/busses/i2c-stu300.c
1190F: drivers/rtc/rtc-coh901331.c
1191F: drivers/watchdog/coh901327_wdt.c
1192F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001193F: drivers/mfd/ab3100*
1194F: drivers/rtc/rtc-ab3100.c
1195F: drivers/rtc/rtc-coh901331.c
1196T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001197
Linus Walleij87572882010-12-22 09:18:29 +01001198ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001199M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001200M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001201L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1202S: Maintained
1203F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001204F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001205F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001206F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001207F: drivers/mfd/abx500*
1208F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001209F: drivers/mfd/dbx500*
1210F: drivers/mfd/db8500*
1211F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001212F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001213F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001214T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001215
Russell Kingd4275352009-04-16 14:05:27 +01001216ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001217M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001218L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001219W: http://www.arm.linux.org.uk/
1220S: Maintained
1221F: arch/arm/vfp/
1222
Marek Vasute66b6d82010-03-26 06:51:32 +01001223ARM/VOIPAC PXA270 SUPPORT
1224M: Marek Vasut <marek.vasut@gmail.com>
1225L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1226S: Maintained
1227F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001228F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001229
Tony Prisk04529fe2012-07-24 04:19:37 +12001230ARM/VT8500 ARM ARCHITECTURE
1231M: Tony Prisk <linux@prisktech.co.nz>
1232L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1233S: Maintained
1234F: arch/arm/mach-vt8500/
1235F: drivers/video/vt8500lcdfb.*
1236F: drivers/video/wm8505fb*
1237F: drivers/video/wmt_ge_rops.*
1238F: drivers/tty/serial/vt8500_serial.c
1239F: drivers/rtc/rtc-vt8500-c
Tony Prisk3a96dff2012-11-18 15:33:06 +13001240F: drivers/mmc/host/wmt-sdmmc.c
Tony Prisk04529fe2012-07-24 04:19:37 +12001241
Marek Vasute66b6d82010-03-26 06:51:32 +01001242ARM/ZIPIT Z2 SUPPORT
1243M: Marek Vasut <marek.vasut@gmail.com>
1244L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1245S: Maintained
1246F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001247F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001248
Catalin Marinas38074222012-03-05 11:49:34 +00001249ARM64 PORT (AARCH64 ARCHITECTURE)
1250M: Catalin Marinas <catalin.marinas@arm.com>
1251L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1252S: Maintained
1253F: arch/arm64/
1254
George Josephd58de032010-03-05 22:17:25 +01001255ASC7621 HARDWARE MONITOR DRIVER
1256M: George Joseph <george.joseph@fairview5.com>
1257L: lm-sensors@lm-sensors.org
1258S: Maintained
1259F: Documentation/hwmon/asc7621
1260F: drivers/hwmon/asc7621.c
1261
Corentin Charyb229ece2011-02-26 10:20:40 +01001262ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001263M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001265L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001266W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001268F: drivers/platform/x86/asus*.c
1269F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001271ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001272M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001273L: lm-sensors@lm-sensors.org
1274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001275F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001276
Andrew Morton953a6472008-11-06 12:53:28 -08001277ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001278M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001279W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001281F: Documentation/crypto/async-tx-api.txt
1282F: crypto/async_tx/
1283F: drivers/dma/
1284F: include/linux/dmaengine.h
1285F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001286
Wolfram Sanga1867d32009-09-18 22:45:51 +02001287AT24 EEPROM DRIVER
1288M: Wolfram Sang <w.sang@pengutronix.de>
1289L: linux-i2c@vger.kernel.org
1290S: Maintained
1291F: drivers/misc/eeprom/at24.c
1292F: include/linux/i2c/at24.h
1293
Randy Dunlape7839f22008-10-12 16:11:45 -07001294ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001295M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001296W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001298F: Documentation/aoe/
1299F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Joe Perches9a10a872010-12-01 09:37:55 -08001301ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001302M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001303L: linux-wireless@vger.kernel.org
1304S: Supported
1305F: drivers/net/wireless/ath/*
1306
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001307ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001308M: Jiri Slaby <jirislaby@gmail.com>
1309M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001310M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001311L: linux-wireless@vger.kernel.org
1312L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001313W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001314S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001315F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001316
Kalle Valo12e62d62011-09-13 10:21:25 +03001317ATHEROS ATH6KL WIRELESS DRIVER
1318M: Kalle Valo <kvalo@qca.qualcomm.com>
1319L: linux-wireless@vger.kernel.org
1320W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1321T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1322S: Supported
1323F: drivers/net/wireless/ath/ath6kl/
1324
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001325ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001326M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1327M: Jouni Malinen <jouni@qca.qualcomm.com>
1328M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1329M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001330L: linux-wireless@vger.kernel.org
1331L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001332W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001333S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001334F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001335
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001336CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1337M: Christian Lamparter <chunkeey@googlemail.com>
1338L: linux-wireless@vger.kernel.org
1339W: http://wireless.kernel.org/en/users/Drivers/carl9170
1340S: Maintained
1341F: drivers/net/wireless/ath/carl9170/
1342
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001343ATK0110 HWMON DRIVER
1344M: Luca Tettamanti <kronos.it@gmail.com>
1345L: lm-sensors@lm-sensors.org
1346S: Maintained
1347F: drivers/hwmon/asus_atk0110.c
1348
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001349ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001350M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001352F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001353
Chris Snook7ae115b2008-09-09 03:26:57 -04001354ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001355M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001356M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001357L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001358W: http://sourceforge.net/projects/atl1
1359W: http://atl1.sourceforge.net
1360S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001361F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001364M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001365L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001366L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367W: http://linux-atm.sourceforge.net
1368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001369F: drivers/atm/
1370F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001372ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001373M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001374S: Maintained
1375F: drivers/mmc/host/atmel-mci.c
1376F: drivers/mmc/host/atmel-mci-regs.h
1377
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001378ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001379M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001380S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001381F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001382
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001383ATMEL DMA DRIVER
1384M: Nicolas Ferre <nicolas.ferre@atmel.com>
1385L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1386S: Supported
1387F: drivers/dma/at_hdmac.c
1388F: drivers/dma/at_hdmac_regs.h
1389F: arch/arm/mach-at91/include/mach/at_hdmac.h
1390
Josh Wu15515542012-03-23 17:56:29 +08001391ATMEL ISI DRIVER
1392M: Josh Wu <josh.wu@atmel.com>
1393L: linux-media@vger.kernel.org
1394S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001395F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001396F: include/media/atmel-isi.h
1397
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001398ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001399M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001400L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001402F: drivers/video/atmel_lcdfb.c
1403F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001404
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001405ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001406M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001407S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001408F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001409
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001410ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001411M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001412S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001413F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001414
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001415ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1416M: Nicolas Ferre <nicolas.ferre@atmel.com>
1417L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1418S: Supported
1419F: drivers/misc/atmel_tclib.c
1420F: drivers/clocksource/tcb_clksrc.c
1421
Josh Wuff2675d2012-03-23 17:56:55 +08001422ATMEL TSADCC DRIVER
1423M: Josh Wu <josh.wu@atmel.com>
1424L: linux-input@vger.kernel.org
1425S: Supported
1426F: drivers/input/touchscreen/atmel_tsadcc.c
1427
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001428ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001429M: Nicolas Ferre <nicolas.ferre@atmel.com>
1430L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001431S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001432F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001435M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001436L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437W: http://www.thekelleys.org.uk/atmel
1438W: http://atmelwlandriver.sourceforge.net/
1439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001440F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Chris Wrighta92b7b82005-07-07 18:12:23 -07001442AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001443M: Al Viro <viro@zeniv.linux.org.uk>
1444M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001445L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001446W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001447T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001449F: include/linux/audit.h
1450F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001451
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001452AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001453M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001454W: http://miguelojeda.es/auxdisplay.htm
1455W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001457F: drivers/auxdisplay/
1458F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001459
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001460AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001461M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1462M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001463W: http://www.atmel.com/products/AVR32/
1464W: http://avr32linux.org/
1465W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001467F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001468
1469AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001470M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1471M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001473F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001476M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001478W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001480F: include/linux/ax25.h
1481F: include/net/ax25.h
1482F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001484B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001485M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001486L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001487L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001488W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001490F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001491
1492B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001493M: Larry Finger <Larry.Finger@lwfinger.net>
1494M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001495L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001496L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001497W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001499F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001500
Richard Purdie300abeb2007-02-07 22:21:07 +00001501BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001502M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001504F: drivers/video/backlight/
1505F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001506
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001507BATMAN ADVANCED
1508M: Marek Lindner <lindner_marek@yahoo.de>
1509M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001510M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001511L: b.a.t.m.a.n@lists.open-mesh.org
1512W: http://www.open-mesh.org/
1513S: Maintained
1514F: net/batman-adv/
1515
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001516BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001517M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001518L: linux-hams@vger.kernel.org
1519W: http://www.baycom.org/~tom/ham/ham.html
1520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001521F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001522
1523BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001524S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001525F: Documentation/filesystems/befs.txt
1526F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001527
1528BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001529M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001531F: Documentation/filesystems/bfs.txt
1532F: fs/bfs/
1533F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001534
Bryan Wu1394f032007-05-06 14:50:22 -07001535BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001536M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001537L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001538W: http://blackfin.uclinux.org
1539S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001540F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001541
Bryan Wue190d6b2007-07-17 14:43:44 +08001542BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001543L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001544W: http://blackfin.uclinux.org
1545S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001546F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001547
Mike Frysinger566da5b2007-06-11 15:31:30 +08001548BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001549M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001550L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001551W: http://blackfin.uclinux.org
1552S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001553F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001554
Mike Frysinger936ed492010-03-10 15:20:38 -08001555BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001556M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001557L: uclinux-dist-devel@blackfin.uclinux.org
1558W: http://blackfin.uclinux.org
1559S: Supported
1560F: drivers/mmc/host/bfin_sdh.c
1561
Bryan Wu1394f032007-05-06 14:50:22 -07001562BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001563M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001564L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001565W: http://blackfin.uclinux.org
1566S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001567F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001568
Bryan Wu1e6d3202007-07-15 02:50:02 +08001569BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001570M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001571L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001572W: http://blackfin.uclinux.org
1573S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001574F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001575
Bryan Wud24ecfc2007-05-01 23:26:32 +02001576BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001577M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001578L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001579W: http://blackfin.uclinux.org/
1580S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001581F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001582
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001583BLINKM RGB LED DRIVER
1584M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1585S: Maintained
1586F: drivers/leds/leds-blinkm.c
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001589M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001590T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001592F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Joern Engel2b54aae2008-02-06 01:38:02 -08001594BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001595M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001596L: linux-mtd@lists.infradead.org
1597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001598F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001599
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001600BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001601M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001602M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001603M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001604L: linux-bluetooth@vger.kernel.org
1605W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001606T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1607T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001609F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001612M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001613M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001614M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001615L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001616W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001617T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1618T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001620F: net/bluetooth/
1621F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001624M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001625M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001626L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001627W: http://sourceforge.net/projects/bonding/
1628S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001629F: drivers/net/bonding/
1630F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Gary Zambrano39105892006-06-22 17:26:20 -07001632BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001633M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001634L: netdev@vger.kernel.org
1635S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001636F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001637
Michael Chan948c51e2006-06-04 02:51:39 -07001638BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001639M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001640L: netdev@vger.kernel.org
1641S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001642F: drivers/net/ethernet/broadcom/bnx2.*
1643F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001644
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001645BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001646M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001647L: netdev@vger.kernel.org
1648S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001649F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001650
Stephen Warrenf680f252012-09-15 00:18:54 -06001651BROADCOM BCM2835 ARM ARCHICTURE
1652M: Stephen Warren <swarren@wwwdotorg.org>
1653L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1654T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1655S: Maintained
1656F: arch/arm/mach-bcm2835/
1657F: arch/arm/boot/dts/bcm2835*
1658F: arch/arm/configs/bcm2835_defconfig
1659F: drivers/*/*bcm2835*
1660
Michael Chan948c51e2006-06-04 02:51:39 -07001661BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001662M: Matt Carlson <mcarlson@broadcom.com>
1663M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001664L: netdev@vger.kernel.org
1665S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001666F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001667
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001668BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1669M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001670M: Roland Vossen <rvossen@broadcom.com>
1671M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001672M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1673M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001674L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001675L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001676S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001677F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001678
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001679BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1680M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1681L: linux-scsi@vger.kernel.org
1682S: Supported
1683F: drivers/scsi/bnx2fc/
1684
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001685BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1686M: Rafał Miłecki <zajec5@gmail.com>
1687L: linux-wireless@vger.kernel.org
1688S: Maintained
1689F: drivers/bcma/
1690F: include/linux/bcma/
1691
Jing Huang7725ccf2009-09-23 17:46:15 -07001692BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001693M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001694L: linux-scsi@vger.kernel.org
1695S: Supported
1696F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001697
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001698BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1699M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001700L: netdev@vger.kernel.org
1701S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001702F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001703
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001704BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001705M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001706L: linux-scsi@vger.kernel.org
1707S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001708F: block/bsg.c
1709F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001710
Clemens Ladischaf399172011-01-10 16:32:54 +01001711BT87X AUDIO DRIVER
1712M: Clemens Ladisch <clemens@ladisch.de>
1713L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1714T: git git://git.alsa-project.org/alsa-kernel.git
1715S: Maintained
1716F: Documentation/sound/alsa/Bt87x.txt
1717F: sound/pci/bt87x.c
1718
Michael Bueschff1d5c22008-07-25 01:46:10 -07001719BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001720M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001721W: http://bu3sch.de/btgpio.php
1722S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001723F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001724
Joe Percheseb1eb042009-01-21 10:49:16 -05001725BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001726M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001727L: linux-btrfs@vger.kernel.org
1728W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001729Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001730T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001732F: Documentation/filesystems/btrfs.txt
1733F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001736M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001737L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001738W: http://linuxtv.org
Joe Perches08deed12012-03-23 15:01:57 -07001739T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001741F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001742F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Clemens Ladischaf399172011-01-10 16:32:54 +01001744C-MEDIA CMI8788 DRIVER
1745M: Clemens Ladisch <clemens@ladisch.de>
1746L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1747T: git git://git.alsa-project.org/alsa-kernel.git
1748S: Maintained
1749F: sound/pci/oxygen/
1750
Mark Salter21413552011-10-04 11:21:42 -04001751C6X ARCHITECTURE
1752M: Mark Salter <msalter@redhat.com>
1753M: Aurelien Jacquiot <a-jacquiot@ti.com>
1754L: linux-c6x-dev@linux-c6x.org
1755W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1756S: Maintained
1757F: arch/c6x/
1758
David Howellsa5432f52009-04-20 15:46:45 +01001759CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001760M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001761L: linux-cachefs@redhat.com
1762S: Supported
1763F: Documentation/filesystems/caching/cachefiles.txt
1764F: fs/cachefiles/
1765
Jonathan Corbet77d51402007-03-22 19:44:17 -03001766CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001767M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001768L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07001769T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001771F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001772F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001773
Joe Perches201b6ba2010-09-07 20:33:24 +00001774CAIF NETWORK LAYER
1775M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1776L: netdev@vger.kernel.org
1777S: Supported
1778F: Documentation/networking/caif/
1779F: drivers/net/caif/
1780F: include/linux/caif/
1781F: include/net/caif/
1782F: net/caif/
1783
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001784CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001785M: Muli Ben-Yehuda <muli@il.ibm.com>
1786M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001787L: discuss@x86-64.org
1788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001789F: arch/x86/kernel/pci-calgary_64.c
1790F: arch/x86/kernel/tce_64.c
1791F: arch/x86/include/asm/calgary.h
1792F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001793
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001794CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001795M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001796L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001797W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001798T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001799S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001800F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001801F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001802F: include/linux/can/core.h
1803F: include/linux/can/bcm.h
1804F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001805F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001806
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001807CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001808M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001809M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001810L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001811W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001812T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001813S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001814F: drivers/net/can/
1815F: include/linux/can/dev.h
1816F: include/linux/can/error.h
1817F: include/linux/can/netlink.h
1818F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001819
James Morris95d16c72012-03-16 12:05:48 +11001820CAPABILITIES
1821M: Serge Hallyn <serge.hallyn@canonical.com>
1822L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001823S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001824F: include/linux/capability.h
1825F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001826F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001827F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001828
Arnd Bergmannb8154542008-05-16 11:10:59 +02001829CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001830M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001831L: linuxppc-dev@lists.ozlabs.org
1832L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001833W: http://www.ibm.com/developerworks/power/cell/
1834S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001835F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001836F: arch/powerpc/include/asm/spu*.h
1837F: arch/powerpc/oprofile/*cell*
1838F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001839
Sage Weil9030aaf2009-10-06 11:31:15 -07001840CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001841M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001842L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001843W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001844T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001845S: Supported
1846F: Documentation/filesystems/ceph.txt
1847F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001848F: net/ceph
1849F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001850F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001851
David Vrabel18332a82008-09-17 16:34:44 +01001852CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001853L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001854S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001855F: Documentation/usb/WUSB-Design-overview.txt
1856F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001857F: drivers/usb/host/hwa-hc.c
1858F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001859F: drivers/usb/wusbcore/
1860F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001861
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001862CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001863M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001864W: http://miguelojeda.es/auxdisplay.htm
1865W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001867F: drivers/auxdisplay/cfag12864b.c
1868F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001869
1870CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001871M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001872W: http://miguelojeda.es/auxdisplay.htm
1873W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001875F: drivers/auxdisplay/cfag12864bfb.c
1876F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001877
Johannes Berg704232c2007-04-23 12:20:05 -07001878CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001879M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001880L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001881W: http://wireless.kernel.org/
1882T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1883T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001885F: include/linux/nl80211.h
1886F: include/net/cfg80211.h
1887F: net/wireless/*
1888X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001889
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001890CHAR and MISC DRIVERS
1891M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001892M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001893T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001894S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001895F: drivers/char/*
1896F: drivers/misc/*
1897
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001898CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001899M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001900S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001901F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001902
Harry Weif8407f262011-02-25 14:44:15 -08001903CHINESE DOCUMENTATION
1904M: Harry Wei <harryxiyou@gmail.com>
1905L: xiyoulinuxkernelgroup@googlegroups.com
1906L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1907S: Maintained
1908F: Documentation/zh_CN/
1909
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001910CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1911M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1912L: linux-usb@vger.kernel.org
1913S: Maintained
1914F: drivers/usb/chipidea/
1915
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001916CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001917M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001918M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001919M: Neel Patel <neepatel@cisco.com>
1920M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001921S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001922F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001923
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001924CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001925M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001926L: netdev@vger.kernel.org
1927S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001928F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001929
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001930CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001931M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001932L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001934F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001935
Timur Tabid9e9d822008-04-24 08:45:26 +10001936CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001937M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001938L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001939S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001940F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001941
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001942CLEANCACHE API
1943M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1944L: linux-kernel@vger.kernel.org
1945S: Maintained
1946F: mm/cleancache.c
1947F: include/linux/cleancache.h
1948
Russell Kingd4275352009-04-16 14:05:27 +01001949CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001950M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001951S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001952F: include/linux/clk.h
1953
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001954CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001955M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001956M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1957M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001958L: linux-scsi@vger.kernel.org
1959S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001960F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001961
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001962CMPC ACPI DRIVER
1963M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1964M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001965L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001966S: Supported
1967F: drivers/platform/x86/classmate-laptop.c
1968
Nicolas Palix74425ee2010-06-06 17:15:01 +02001969COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02001970M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001971M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02001972M: Nicolas Palix <nicolas.palix@imag.fr>
1973L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02001974W: http://coccinelle.lip6.fr/
1975S: Supported
1976F: scripts/coccinelle/
1977F: scripts/coccicheck
1978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001980M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981M: coda@cs.cmu.edu
1982L: codalist@coda.cs.cmu.edu
1983W: http://www.coda.cs.cmu.edu/
1984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001985F: Documentation/filesystems/coda.txt
1986F: fs/coda/
1987F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Mike Turquette7704add2012-05-02 18:37:45 -07001989COMMON CLK FRAMEWORK
Mike Turquette7704add2012-05-02 18:37:45 -07001990M: Mike Turquette <mturquette@linaro.org>
1991L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
1992T: git git://git.linaro.org/people/mturquette/linux.git
1993S: Maintained
1994F: drivers/clk/clk.c
1995F: drivers/clk/clk-*
1996F: include/linux/clk-pr*
1997
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001998COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001999M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002000L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002001L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002002W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002003Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002004T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002005S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002006F: Documentation/filesystems/cifs.txt
2007F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002010M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002011L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002013F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
2015COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002016M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002017L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002019F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002022M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002023L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002025F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002027COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002028M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002029L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002031F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002032
Simon Arlott949be0f2007-03-06 02:47:46 -08002033CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002034M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002035L: accessrunner-general@lists.sourceforge.net
2036W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002038F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002039
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002040CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002041M: Joel Becker <jlbec@evilplan.org>
2042T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002043S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002044F: fs/configfs/
2045F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002046
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002047CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002048M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002049L: netdev@vger.kernel.org
2050S: Maintained
2051F: drivers/connector/
2052
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002053CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002054M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002055M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002056L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002057L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002058T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002060F: include/linux/cgroup*
2061F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002062F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002063
Rudolf Marekbebe4672007-05-08 17:22:02 +02002064CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002065M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002066L: lm-sensors@lm-sensors.org
2067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002068F: Documentation/hwmon/coretemp
2069F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002072M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073W: http://www.fi.muni.cz/~kas/cosa/
2074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002075F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Florian Fainelli4371ee32009-06-01 02:43:17 -07002077CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002078M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002079L: netdev@vger.kernel.org
2080S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002081F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002082
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002084M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002085L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002086L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002088F: drivers/cpufreq/
2089F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002092M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002094F: arch/x86/kernel/cpuid.c
2095F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002097CPU POWER MONITORING SUBSYSTEM
2098M: Dominik Brodowski <linux@dominikbrodowski.net>
2099M: Thomas Renninger <trenn@suse.de>
2100S: Maintained
2101F: tools/power/cpupower
2102
Paul Jacksoned90fb42005-09-27 21:45:37 -07002103CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002104M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002105W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002106W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002107S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002108F: Documentation/cgroups/cpusets.txt
2109F: include/linux/cpuset.h
2110F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002113W: http://sourceforge.net/projects/cramfs/
2114S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002115F: Documentation/filesystems/cramfs.txt
2116F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002119M: Mikael Starvik <starvik@axis.com>
2120M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002121L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122W: http://developer.axis.com
2123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002124F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002125F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002128M: Herbert Xu <herbert@gondor.apana.org.au>
2129M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002131T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002133F: Documentation/crypto/
2134F: arch/*/crypto/
2135F: crypto/
2136F: drivers/crypto/
2137F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Neil Horman5b07bd52009-02-05 16:03:04 +11002139CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002140M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002141L: linux-crypto@vger.kernel.org
2142S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002143F: crypto/ansi_cprng.c
2144F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002145
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002146CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002147M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002149F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002150
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002151CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002152M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002153L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002154L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002155T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002156W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002157W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002159F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002160F: drivers/media/pci/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002161
Antti Palosaari91952bc2012-10-01 12:28:46 -03002162CXD2820R MEDIA DRIVER
2163M: Antti Palosaari <crope@iki.fi>
2164L: linux-media@vger.kernel.org
2165W: http://linuxtv.org/
2166W: http://palosaari.fi/linux/
2167Q: http://patchwork.linuxtv.org/project/linux-media/list/
2168T: git git://linuxtv.org/anttip/media_tree.git
2169S: Maintained
2170F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002171
Steve Wisee5ec3782008-05-20 14:06:33 -07002172CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002173M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002174L: netdev@vger.kernel.org
2175W: http://www.chelsio.com
2176S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002177F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002178
2179CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002180M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002181L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002182W: http://www.openfabrics.org
2183S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002184F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002185
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002186CXGB4 ETHERNET DRIVER (CXGB4)
2187M: Dimitris Michailidis <dm@chelsio.com>
2188L: netdev@vger.kernel.org
2189W: http://www.chelsio.com
2190S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002191F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002192
2193CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2194M: Steve Wise <swise@chelsio.com>
2195L: linux-rdma@vger.kernel.org
2196W: http://www.openfabrics.org
2197S: Supported
2198F: drivers/infiniband/hw/cxgb4/
2199
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002200CXGB4VF ETHERNET DRIVER (CXGB4VF)
2201M: Casey Leedom <leedom@chelsio.com>
2202L: netdev@vger.kernel.org
2203W: http://www.chelsio.com
2204S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002205F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002206
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002207STMMAC ETHERNET DRIVER
2208M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2209L: netdev@vger.kernel.org
2210W: http://www.stlinux.com
2211S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002212F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002215M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002216L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217W: http://www.arm.linux.org.uk/
2218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002219F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002222M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002223W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002225F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
2227CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002229S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002230F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002231F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
2233CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002235S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002236F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002238CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002239M: Javier Martinez Canillas <javier@dowhile0.org>
2240L: linux-input@vger.kernel.org
2241S: Maintained
2242F: drivers/input/touchscreen/cyttsp*
2243F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002244
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002246M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247W: http://yaina.de/jreuter/
2248W: http://www.qsl.net/dl1bke/
2249L: linux-hams@vger.kernel.org
2250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002251F: net/ax25/af_ax25.c
2252F: net/ax25/ax25_dev.c
2253F: net/ax25/ax25_ds_*
2254F: net/ax25/ax25_in.c
2255F: net/ax25/ax25_out.c
2256F: net/ax25/ax25_timer.c
2257F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002259DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002260L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002261S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002262F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002263F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002264
2265DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002266M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002267W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002268M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002270F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002273M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002274M: Ali Akcaagac <aliakc@web.de>
2275M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002277L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278L: http://lists.twibble.org/mailman/listinfo/dc395x/
2279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002280F: Documentation/scsi/dc395x.txt
2281F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002283DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002284M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002285L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002286W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002288F: include/linux/dccp.h
2289F: include/linux/tfrc.h
2290F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293W: http://linux-decnet.sourceforge.net
2294L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002295S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002296F: Documentation/networking/decnet.txt
2297F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002300M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002302F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002304DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002305M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002306L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002308F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002311M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312W: http://www.debian.org/~dz/i8k/
2313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002314F: drivers/char/i8k.c
2315F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Doug Warzecha90563ec2005-09-06 15:17:15 -07002317DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002318M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002320F: Documentation/dcdbas.txt
2321F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002322
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002323DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002324M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002325S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002326F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002327
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002328DESIGNWARE USB3 DRD IP DRIVER
2329M: Felipe Balbi <balbi@ti.com>
2330L: linux-usb@vger.kernel.org
2331L: linux-omap@vger.kernel.org
2332T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2333S: Maintained
2334F: drivers/usb/dwc3/
2335
Kyungmin Park89d07762012-01-10 15:09:09 -08002336DEVICE FREQUENCY (DEVFREQ)
2337M: MyungJoo Ham <myungjoo.ham@samsung.com>
2338M: Kyungmin Park <kyungmin.park@samsung.com>
2339L: linux-kernel@vger.kernel.org
2340S: Maintained
2341F: drivers/devfreq/
2342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002344M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346S: Maintained
2347
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002348DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002349M: Alasdair Kergon <agk@redhat.com>
2350M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002351L: dm-devel@redhat.com
2352W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002353Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002354T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002356F: Documentation/device-mapper/
2357F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002358F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002359F: include/linux/device-mapper.h
2360F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002361
Guenter Roeck335d7c52011-01-26 11:45:49 -08002362DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002363M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002364L: linux-i2c@vger.kernel.org
2365S: Maintained
2366F: drivers/i2c/busses/i2c-diolan-u2c.c
2367
Randy Dunlape7839f22008-10-12 16:11:45 -07002368DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002369M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002371F: Documentation/filesystems/dnotify.txt
2372F: fs/notify/dnotify/
2373F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
2375DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002376M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2378W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2379W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2380S: Maintained
2381
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002382DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002383M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002385F: Documentation/filesystems/quota.txt
2386F: fs/quota/
2387F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Bernie Thompson702686a2012-03-01 13:52:13 -08002389DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2390M: Bernie Thompson <bernie@plugable.com>
2391L: linux-fbdev@vger.kernel.org
2392S: Maintained
2393W: http://plugable.com/category/projects/udlfb/
2394F: drivers/video/udlfb.c
2395F: include/video/udlfb.h
2396F: Documentation/fb/udlfb.txt
2397
Randy Dunlape7839f22008-10-12 16:11:45 -07002398DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002399M: Christine Caulfield <ccaulfie@redhat.com>
2400M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002401L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002402W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002403T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002404S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002405F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002406
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302407DMA BUFFER SHARING FRAMEWORK
2408M: Sumit Semwal <sumit.semwal@linaro.org>
2409S: Maintained
2410L: linux-media@vger.kernel.org
2411L: dri-devel@lists.freedesktop.org
2412L: linaro-mm-sig@lists.linaro.org
2413F: drivers/base/dma-buf*
2414F: include/linux/dma-buf*
2415F: Documentation/dma-buf-sharing.txt
2416T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2417
Dan Williamsb3e5f262007-08-07 10:26:35 -07002418DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002419M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002420M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002421S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002422F: drivers/dma/
2423F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302424T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2425T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002426
Juerg Haefligerb8250372007-06-09 10:11:16 -04002427DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002428M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002429L: lm-sensors@lm-sensors.org
2430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002431F: Documentation/hwmon/dme1737
2432F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002433
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002434DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002435M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002436L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002437S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002438F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002439
Joe Perches7d2c86b2009-04-07 20:59:01 -07002440DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002441M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002442L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002443T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002445F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002448M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449L: blinux-list@redhat.com
2450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002451F: drivers/char/dtlk.c
2452F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002454DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002455M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002456L: linux-scsi@vger.kernel.org
2457W: http://www.adaptec.com/
2458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002459F: drivers/scsi/dpt*
2460F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002461
Philipp Reisnerb411b362009-09-25 16:07:19 -07002462DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002463P: Philipp Reisner
2464P: Lars Ellenberg
2465M: drbd-dev@lists.linbit.com
2466L: drbd-user@lists.linbit.com
2467W: http://www.drbd.org
2468T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2469T: git git://git.drbd.org/drbd-8.3.git
2470S: Supported
2471F: drivers/block/drbd/
2472F: lib/lru_cache.c
2473F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002474
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002475DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002476M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002477T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002479F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002480F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002481F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002482F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002483F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002484F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002485F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
2487DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002488M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002489L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002490T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002492F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002493F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Chris Wilson8daf7472010-09-28 14:07:26 +01002495INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002496M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002497L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002498L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002499T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002500S: Supported
2501F: drivers/gpu/drm/i915
2502F: include/drm/i915*
2503
Kyungmin Park398a6d42011-11-02 11:33:16 +09002504DRM DRIVERS FOR EXYNOS
2505M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002506M: Joonyoung Shim <jy0922.shim@samsung.com>
2507M: Seung-Woo Kim <sw0312.kim@samsung.com>
2508M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002509L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002510T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002511S: Supported
2512F: drivers/gpu/drm/exynos
2513F: include/drm/exynos*
2514
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002516M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002517L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002519F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Antti Palosaari91952bc2012-10-01 12:28:46 -03002521DVB_USB_AF9015 MEDIA DRIVER
2522M: Antti Palosaari <crope@iki.fi>
2523L: linux-media@vger.kernel.org
2524W: http://linuxtv.org/
2525W: http://palosaari.fi/linux/
2526Q: http://patchwork.linuxtv.org/project/linux-media/list/
2527T: git git://linuxtv.org/anttip/media_tree.git
2528S: Maintained
2529F: drivers/media/usb/dvb-usb-v2/af9015*
2530
2531DVB_USB_AF9035 MEDIA DRIVER
2532M: Antti Palosaari <crope@iki.fi>
2533L: linux-media@vger.kernel.org
2534W: http://linuxtv.org/
2535W: http://palosaari.fi/linux/
2536Q: http://patchwork.linuxtv.org/project/linux-media/list/
2537T: git git://linuxtv.org/anttip/media_tree.git
2538S: Maintained
2539F: drivers/media/usb/dvb-usb-v2/af9035*
2540
2541DVB_USB_ANYSEE MEDIA DRIVER
2542M: Antti Palosaari <crope@iki.fi>
2543L: linux-media@vger.kernel.org
2544W: http://linuxtv.org/
2545W: http://palosaari.fi/linux/
2546Q: http://patchwork.linuxtv.org/project/linux-media/list/
2547T: git git://linuxtv.org/anttip/media_tree.git
2548S: Maintained
2549F: drivers/media/usb/dvb-usb-v2/anysee*
2550
2551DVB_USB_AU6610 MEDIA DRIVER
2552M: Antti Palosaari <crope@iki.fi>
2553L: linux-media@vger.kernel.org
2554W: http://linuxtv.org/
2555W: http://palosaari.fi/linux/
2556Q: http://patchwork.linuxtv.org/project/linux-media/list/
2557T: git git://linuxtv.org/anttip/media_tree.git
2558S: Maintained
2559F: drivers/media/usb/dvb-usb-v2/au6610*
2560
2561DVB_USB_CE6230 MEDIA DRIVER
2562M: Antti Palosaari <crope@iki.fi>
2563L: linux-media@vger.kernel.org
2564W: http://linuxtv.org/
2565W: http://palosaari.fi/linux/
2566Q: http://patchwork.linuxtv.org/project/linux-media/list/
2567T: git git://linuxtv.org/anttip/media_tree.git
2568S: Maintained
2569F: drivers/media/usb/dvb-usb-v2/ce6230*
2570
Michael Krufkyd099dea2012-10-02 00:56:20 -03002571DVB_USB_CXUSB MEDIA DRIVER
2572M: Michael Krufky <mkrufky@linuxtv.org>
2573L: linux-media@vger.kernel.org
2574W: http://linuxtv.org/
2575W: http://github.com/mkrufky
2576Q: http://patchwork.linuxtv.org/project/linux-media/list/
2577T: git git://linuxtv.org/media_tree.git
2578S: Maintained
2579F: drivers/media/usb/dvb-usb-v2/cxusb*
2580
Antti Palosaari91952bc2012-10-01 12:28:46 -03002581DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2582M: Antti Palosaari <crope@iki.fi>
2583L: linux-media@vger.kernel.org
2584W: http://linuxtv.org/
2585W: http://palosaari.fi/linux/
2586Q: http://patchwork.linuxtv.org/project/linux-media/list/
2587T: git git://linuxtv.org/anttip/media_tree.git
2588S: Maintained
2589F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2590
2591DVB_USB_EC168 MEDIA DRIVER
2592M: Antti Palosaari <crope@iki.fi>
2593L: linux-media@vger.kernel.org
2594W: http://linuxtv.org/
2595W: http://palosaari.fi/linux/
2596Q: http://patchwork.linuxtv.org/project/linux-media/list/
2597T: git git://linuxtv.org/anttip/media_tree.git
2598S: Maintained
2599F: drivers/media/usb/dvb-usb-v2/ec168*
2600
Michael Krufky8856f5f2012-10-02 00:55:50 -03002601DVB_USB_MXL111SF MEDIA DRIVER
2602M: Michael Krufky <mkrufky@linuxtv.org>
2603L: linux-media@vger.kernel.org
2604W: http://linuxtv.org/
2605W: http://github.com/mkrufky
2606Q: http://patchwork.linuxtv.org/project/linux-media/list/
2607T: git git://linuxtv.org/mkrufky/mxl111sf.git
2608S: Maintained
2609F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2610
Antti Palosaari91952bc2012-10-01 12:28:46 -03002611DVB_USB_RTL28XXU MEDIA DRIVER
2612M: Antti Palosaari <crope@iki.fi>
2613L: linux-media@vger.kernel.org
2614W: http://linuxtv.org/
2615W: http://palosaari.fi/linux/
2616Q: http://patchwork.linuxtv.org/project/linux-media/list/
2617T: git git://linuxtv.org/anttip/media_tree.git
2618S: Maintained
2619F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2620
2621DVB_USB_V2 MEDIA DRIVER
2622M: Antti Palosaari <crope@iki.fi>
2623L: linux-media@vger.kernel.org
2624W: http://linuxtv.org/
2625W: http://palosaari.fi/linux/
2626Q: http://patchwork.linuxtv.org/project/linux-media/list/
2627T: git git://linuxtv.org/anttip/media_tree.git
2628S: Maintained
2629F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2630F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2631
Jason Baronac0ac382011-08-11 14:36:43 -04002632DYNAMIC DEBUG
2633M: Jason Baron <jbaron@redhat.com>
2634S: Maintained
2635F: lib/dynamic_debug.c
2636F: include/linux/dynamic_debug.h
2637
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002638DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002639M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002640S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002641F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002642
Antti Palosaari91952bc2012-10-01 12:28:46 -03002643E4000 MEDIA DRIVER
2644M: Antti Palosaari <crope@iki.fi>
2645L: linux-media@vger.kernel.org
2646W: http://linuxtv.org/
2647W: http://palosaari.fi/linux/
2648Q: http://patchwork.linuxtv.org/project/linux-media/list/
2649T: git git://linuxtv.org/anttip/media_tree.git
2650S: Maintained
2651F: drivers/media/tuners/e4000*
2652
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002654M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002655L: linux-eata@i-connect.net
2656L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002658F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002661M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662L: linux-scsi@vger.kernel.org
2663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002664F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
2666EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002667M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002668L: linux-eata@i-connect.net
2669L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002671F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
2673EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002674M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002675L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676W: http://ebtables.sourceforge.net/
2677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002678F: include/linux/netfilter_bridge/ebt_*.h
2679F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
Antti Palosaari91952bc2012-10-01 12:28:46 -03002681EC100 MEDIA DRIVER
2682M: Antti Palosaari <crope@iki.fi>
2683L: linux-media@vger.kernel.org
2684W: http://linuxtv.org/
2685W: http://palosaari.fi/linux/
2686Q: http://patchwork.linuxtv.org/project/linux-media/list/
2687T: git git://linuxtv.org/anttip/media_tree.git
2688S: Maintained
2689F: drivers/media/dvb-frontends/ec100*
2690
Michael Halcrow237fead2006-10-04 02:16:22 -07002691ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002692M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002693M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002694L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002695W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002696S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002697F: Documentation/filesystems/ecryptfs.txt
2698F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002699
Alan Coxda9bb1d2006-01-18 17:44:13 -08002700EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002701M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002702L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002703W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002704S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002705F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002706F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002707F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002708
Borislav Petkovc476c232009-05-20 20:31:58 +02002709EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002710M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002711M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002712L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002713W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002714S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002715F: drivers/edac/amd64_edac*
2716
Dave Peterson0e438e32006-03-26 01:38:55 -08002717EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002718M: Mark Gross <mark.gross@intel.com>
2719M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002720L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002721W: bluesmoke.sourceforge.net
2722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002723F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002724
2725EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002726M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002727L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002728W: bluesmoke.sourceforge.net
2729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002730F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002731
Douglas Thompson6bc78402007-07-19 01:50:12 -07002732EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002733M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002734L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002735W: bluesmoke.sourceforge.net
2736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002737F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002738
2739EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002740M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002741L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002742W: bluesmoke.sourceforge.net
2743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002744F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002745
2746EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002747M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002748L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002749W: bluesmoke.sourceforge.net
2750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002751F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002752
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002753EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002754M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002755L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002756W: bluesmoke.sourceforge.net
2757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002758F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002759
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002760EDAC-I7300
2761M: Mauro Carvalho Chehab <mchehab@redhat.com>
2762L: linux-edac@vger.kernel.org
2763W: bluesmoke.sourceforge.net
2764S: Maintained
2765F: drivers/edac/i7300_edac.c
2766
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002767EDAC-I7CORE
2768M: Mauro Carvalho Chehab <mchehab@redhat.com>
2769L: linux-edac@vger.kernel.org
2770W: bluesmoke.sourceforge.net
2771S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002772F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002773
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002774EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002775M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302776M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002777L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002778W: bluesmoke.sourceforge.net
2779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002780F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002781
2782EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002783M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002784L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002785W: bluesmoke.sourceforge.net
2786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002787F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002788
Dave Peterson0e438e32006-03-26 01:38:55 -08002789EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002790M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002791L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002792W: bluesmoke.sourceforge.net
2793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002794F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002795
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002796EDAC-SBRIDGE
2797M: Mauro Carvalho Chehab <mchehab@redhat.com>
2798L: linux-edac@vger.kernel.org
2799W: bluesmoke.sourceforge.net
2800S: Maintained
2801F: drivers/edac/sb_edac.c
2802
Clemens Ladischaf399172011-01-10 16:32:54 +01002803EDIROL UA-101/UA-1000 DRIVER
2804M: Clemens Ladisch <clemens@ladisch.de>
2805L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2806T: git git://git.alsa-project.org/alsa-kernel.git
2807S: Maintained
2808F: sound/usb/misc/ua101.c
2809
Matt Fleming1f7df952012-10-03 10:04:02 +01002810EXTENSIBLE FIRMWARE INTERFACE (EFI)
2811M: Matt Fleming <matt.fleming@intel.com>
2812L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002813T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002814S: Maintained
2815F: Documentation/x86/efi-stub.txt
2816F: arch/ia64/kernel/efi.c
2817F: arch/x86/boot/compressed/eboot.[ch]
2818F: arch/x86/include/asm/efi.h
2819F: arch/x86/platform/efi/*
2820F: drivers/firmware/efivars.c
2821F: include/linux/efi*.h
2822
Peter Jones85a00d92010-09-22 13:05:04 -07002823EFIFB FRAMEBUFFER DRIVER
2824L: linux-fbdev@vger.kernel.org
2825M: Peter Jones <pjones@redhat.com>
2826S: Maintained
2827F: drivers/video/efifb.c
2828
Josh Triplett0bee8d22006-07-30 03:03:58 -07002829EFS FILESYSTEM
2830W: http://aeschi.ch.eu.org/efs/
2831S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002832F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002833
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002834EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002835M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2836M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002837L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002838S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002839F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002840
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002841EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002842M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002843L: netdev@vger.kernel.org
2844S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002845F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002846
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002847EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002848M: Paul Gortmaker <paul.gortmaker@windriver.com>
2849M: Matt Mackall <mpm@selenic.com>
2850M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002851L: linux-embedded@vger.kernel.org
2852S: Maintained
2853
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002854EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002855M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002856L: linux-scsi@vger.kernel.org
2857W: http://sourceforge.net/projects/lpfcxxxx
2858S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002859F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002860
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002861ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002862M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002863S: Maintained
2864F: drivers/misc/cb710/
2865F: drivers/mmc/host/cb710-mmc.*
2866F: include/linux/cb710.h
2867
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002868ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2869M: Maxim Levitsky <maximlevitsky@gmail.com>
2870S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002871F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002872
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002874M: Christopher Hoover <ch@murgatroid.com>
2875M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002877F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002879EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002880M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002881S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002882T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002883F: drivers/video/s1d13xxxfb.c
2884F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002885
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002887M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002888L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002890F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
2892ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002893M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002894L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002895L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002896W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002898F: include/linux/netfilter_bridge/
2899F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
2901ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002902M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002904F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
2906EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002907M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002908L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002910F: Documentation/filesystems/ext2.txt
2911F: fs/ext2/
2912F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
2914EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002915M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002916M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002917M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002918L: linux-ext4@vger.kernel.org
2919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002920F: Documentation/filesystems/ext3.txt
2921F: fs/ext3/
2922F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002923
2924EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002925M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002926M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002927L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002928W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002929Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002931F: Documentation/filesystems/ext4.txt
2932F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
Mimi Zoharc5532b02011-08-17 18:52:24 -04002934Extended Verification Module (EVM)
2935M: Mimi Zohar <zohar@us.ibm.com>
2936S: Supported
2937F: security/integrity/evm/
2938
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002939EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2940M: MyungJoo Ham <myungjoo.ham@samsung.com>
2941M: Chanwoo Choi <cw00.choi@samsung.com>
2942L: linux-kernel@vger.kernel.org
2943S: Maintained
2944F: drivers/extcon/
2945F: Documentation/extcon/
2946
Jingoo Han0a799512012-02-06 11:30:39 +09002947EXYNOS DP DRIVER
2948M: Jingoo Han <jg1.han@samsung.com>
2949L: linux-fbdev@vger.kernel.org
2950S: Maintained
2951F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07002952F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09002953
Donghwa Lee33ad3912012-03-06 11:44:58 +09002954EXYNOS MIPI DISPLAY DRIVERS
2955M: Inki Dae <inki.dae@samsung.com>
2956M: Donghwa Lee <dh09.lee@samsung.com>
2957M: Kyungmin Park <kyungmin.park@samsung.com>
2958L: linux-fbdev@vger.kernel.org
2959S: Maintained
2960F: drivers/video/exynos/exynos_mipi*
2961F: include/video/exynos_mipi*
2962
Jean Delvaree53004e2006-01-09 23:26:14 +01002963F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002964M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002965L: lm-sensors@lm-sensors.org
2966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002967F: Documentation/hwmon/f71805f
2968F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002969
Michael Büscheea977e2012-04-02 12:14:32 -03002970FC0011 TUNER DRIVER
2971M: Michael Buesch <m@bues.ch>
2972L: linux-media@vger.kernel.org
2973S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03002974F: drivers/media/tuners/fc0011.h
2975F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03002976
Antti Palosaari91952bc2012-10-01 12:28:46 -03002977FC2580 MEDIA DRIVER
2978M: Antti Palosaari <crope@iki.fi>
2979L: linux-media@vger.kernel.org
2980W: http://linuxtv.org/
2981W: http://palosaari.fi/linux/
2982Q: http://patchwork.linuxtv.org/project/linux-media/list/
2983T: git git://linuxtv.org/anttip/media_tree.git
2984S: Maintained
2985F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
Eric Paris88b2dbd2010-08-18 12:25:50 -04002987FANOTIFY
2988M: Eric Paris <eparis@redhat.com>
2989S: Maintained
2990F: fs/notify/fanotify/
2991F: include/linux/fanotify.h
2992
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002994M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995W: http://www.farsite.co.uk/
2996S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002997F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
Akinobu Mitac5408b82007-04-23 14:41:20 -07002999FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003000M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003001S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003002F: Documentation/fault-injection/
3003F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003004
Robert Lovecae727d2010-02-16 12:16:00 -08003005FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3006M: Robert Love <robert.w.love@intel.com>
3007L: devel@open-fcoe.org
3008W: www.Open-FCoE.org
3009S: Supported
3010F: drivers/scsi/libfc/
3011F: drivers/scsi/fcoe/
3012F: include/scsi/fc/
3013F: include/scsi/libfc.h
3014F: include/scsi/libfcoe.h
3015
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003016FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003017M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003018L: linux-fsdevel@vger.kernel.org
3019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003020F: include/linux/fcntl.h
3021F: include/linux/fs.h
3022F: fs/fcntl.c
3023F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003024
3025FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003026M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003027L: linux-fsdevel@vger.kernel.org
3028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003029F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003030
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003031FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003032M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003033L: lm-sensors@lm-sensors.org
3034S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003035F: drivers/hwmon/f75375s.c
3036F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003037
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003038FIREWIRE AUDIO DRIVERS
3039M: Clemens Ladisch <clemens@ladisch.de>
3040L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3041T: git git://git.alsa-project.org/alsa-kernel.git
3042S: Maintained
3043F: sound/firewire/
3044
Chris Boota511ce32012-04-14 17:50:35 -07003045FIREWIRE SBP-2 TARGET
3046M: Chris Boot <bootc@bootc.net>
3047L: linux-scsi@vger.kernel.org
3048L: target-devel@vger.kernel.org
3049L: linux1394-devel@lists.sourceforge.net
3050T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3051S: Maintained
3052F: drivers/target/sbp/
3053
Joe Perches7d2c86b2009-04-07 20:59:01 -07003054FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003055M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003056L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003057W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003058T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003060F: drivers/firewire/
3061F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003062F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003063
3064FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003065M: Ming Lei <ming.lei@canonical.com>
3066L: linux-kernel@vger.kernel.org
3067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003068F: Documentation/firmware_class/
3069F: drivers/base/firmware*.c
3070F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003071
Jiri Kosina8206f662012-05-18 13:52:29 +02003072FLOPPY DRIVER
3073M: Jiri Kosina <jkosina@suse.cz>
3074T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3075S: Odd fixes
3076F: drivers/block/floppy.c
3077
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003078FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003079M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003080W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003082F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003083
3084FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003085L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003086S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003087F: drivers/net/wan/dlci.c
3088F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003089
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003091M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003092L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003094Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003095T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003097F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003098F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003099F: drivers/video/
3100F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003101F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
Zhang Wei173acc72008-03-01 07:42:48 -07003103FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003104M: Li Yang <leoli@freescale.com>
3105M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003106L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003108F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003109
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003110FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003111M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003112L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003113L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003115F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003116
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003117FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003118M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003119L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003120L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003122F: arch/arm/plat-mxc/include/mach/imxfb.h
3123F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003124
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003125FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003126M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3127M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003128L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003129L: netdev@vger.kernel.org
3130S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003131F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003132F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003133
Timur Tabid9e9d822008-04-24 08:45:26 +10003134FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003135M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003136L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003137S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003138F: arch/powerpc/sysdev/qe_lib/
3139F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003140
Joe Perchesb55ef9292009-10-26 16:49:46 -07003141FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003142M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003143L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003144L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003145S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003146F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003147
Li Yangbeaf53b2007-05-25 13:54:02 +08003148FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003149M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003150L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003151L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003152S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003153F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003154
Timur Tabid9e9d822008-04-24 08:45:26 +10003155FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003156M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003157L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003158S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003159F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003160
3161FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003162M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003163L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003164L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003165S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003166F: sound/soc/fsl/fsl*
3167F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003168
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003170M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003173F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
Pavel Machek71038f52009-01-15 13:51:02 -08003175FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003176M: Pavel Machek <pavel@ucw.cz>
3177M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003178L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003179S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003180F: Documentation/power/freezing-of-tasks.txt
3181F: include/linux/freezer.h
3182F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003183
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003184FRONTSWAP API
3185M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3186L: linux-kernel@vger.kernel.org
3187S: Maintained
3188F: mm/frontswap.c
3189F: include/linux/frontswap.h
3190
David Howellsa5432f52009-04-20 15:46:45 +01003191FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003192M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003193L: linux-cachefs@redhat.com
3194S: Supported
3195F: Documentation/filesystems/caching/
3196F: fs/fscache/
3197F: include/linux/fscache*.h
3198
David Howells5ab7ffe2007-04-10 15:10:45 +01003199FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003200M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003202F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Jonathan Woithe20b93732008-06-11 10:14:56 +09303204FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303205M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003206L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003208F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303209
Heungjun Kim4da621b2011-11-11 08:05:33 -03003210FUJITSU M-5MO LS CAMERA ISP DRIVER
3211M: Kyungmin Park <kyungmin.park@samsung.com>
3212M: Heungjun Kim <riverful.kim@samsung.com>
3213L: linux-media@vger.kernel.org
3214S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003215F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003216F: include/media/m5mols.h
3217
Robert Gerlach2d24c492012-01-18 14:26:22 +01003218FUJITSU TABLET EXTRAS
3219M: Robert Gerlach <khnz@gmx.de>
3220L: platform-driver-x86@vger.kernel.org
3221S: Maintained
3222F: drivers/platform/x86/fujitsu-tablet.c
3223
Miklos Szeredi04578f12005-09-09 13:10:22 -07003224FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003225M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003226L: fuse-devel@lists.sourceforge.net
3227W: http://fuse.sourceforge.net/
3228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003229F: fs/fuse/
3230F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003231
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003233M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003235S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003236F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
3238GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003239M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240L: linux-scsi@vger.kernel.org
3241W: http://www.icp-vortex.com/
3242S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003243F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003245GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003246M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003247S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003248F: drivers/i2c/busses/i2c-gpio.c
3249F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003250
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003251GENERIC GPIO I2C MULTIPLEXER DRIVER
3252M: Peter Korsgaard <peter.korsgaard@barco.com>
3253L: linux-i2c@vger.kernel.org
3254S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003255F: drivers/i2c/muxes/i2c-mux-gpio.c
3256F: include/linux/i2c-mux-gpio.h
3257F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003258
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003259GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003260M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003263F: drivers/net/wan/c101.c
3264F: drivers/net/wan/hd6457*
3265F: drivers/net/wan/hdlc*
3266F: drivers/net/wan/n2.c
3267F: drivers/net/wan/pc300too.c
3268F: drivers/net/wan/pci200syn.c
3269F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003271GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003272M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003273L: linux-arch@vger.kernel.org
3274T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3275S: Maintained
3276F: include/asm-generic
3277
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003278GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003279M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003280L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003281S: Supported
3282F: drivers/uio/uio_pci_generic.c
3283
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003284GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003285M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003286L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003287W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003288T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3289T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003290S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003291F: Documentation/filesystems/gfs2*.txt
3292F: fs/gfs2/
3293F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003294
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003295GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003296M: Hansjoerg Lipp <hjlipp@web.de>
3297M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003298L: gigaset307x-common@lists.sourceforge.net
3299W: http://gigaset307x.sourceforge.net/
3300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003301F: Documentation/isdn/README.gigaset
3302F: drivers/isdn/gigaset/
3303F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003304
Grant Likelya0dc00b2011-02-12 01:48:14 -07003305GPIO SUBSYSTEM
3306M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003307M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003308S: Maintained
3309T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003310F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003311F: drivers/gpio/
3312F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003313F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003314
Harry Wei71a6d0a2011-05-11 15:13:33 -07003315GRE DEMULTIPLEXER DRIVER
3316M: Dmitry Kozlov <xeb@mail.ru>
3317L: netdev@vger.kernel.org
3318S: Maintained
3319F: net/ipv4/gre.c
3320F: include/net/gre.h
3321
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003322GRETH 10/100/1G Ethernet MAC device driver
3323M: Kristoffer Glembo <kristoffer@gaisler.com>
3324L: netdev@vger.kernel.org
3325S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003326F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003327
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003328GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003329M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003330L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003331T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003332S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003333F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003334
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003335GSPCA GL860 SUBDRIVER
3336M: Olivier Lorin <o.lorin@laposte.net>
3337L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003338T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003339S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003340F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003341
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003342GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003343M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003344L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003345T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003346S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003347F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003348
3349GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003350M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003351L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003352T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003353S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003354F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003355
Brian Johnson261982f2009-07-19 15:58:56 -03003356GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003357M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003358L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003359T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Brian Johnson261982f2009-07-19 15:58:56 -03003360S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003361F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003362
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003363GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003364M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003365L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003366T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003367S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003368F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003369
3370GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003371M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003372L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003373T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003374S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003375F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003376
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003377STK1160 USB VIDEO CAPTURE DRIVER
3378M: Ezequiel Garcia <elezegarcia@gmail.com>
3379L: linux-media@vger.kernel.org
3380T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3381S: Maintained
3382F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003383
Harry Wei71a6d0a2011-05-11 15:13:33 -07003384HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3385M: Frank Seidel <frank@f-seidel.de>
3386L: platform-driver-x86@vger.kernel.org
3387W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3388S: Maintained
3389F: drivers/platform/x86/hdaps.c
3390
3391HWPOISON MEMORY FAILURE HANDLING
3392M: Andi Kleen <andi@firstfloor.org>
3393L: linux-mm@kvack.org
3394T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3395S: Maintained
3396F: mm/memory-failure.c
3397F: mm/hwpoison-inject.c
3398
3399HYPERVISOR VIRTUAL CONSOLE DRIVER
3400L: linuxppc-dev@lists.ozlabs.org
3401S: Odd Fixes
3402F: drivers/tty/hvc/
3403
Michael Buesch844dd052006-06-26 00:24:59 -07003404HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003405M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003406M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003407L: lm-sensors@lm-sensors.org
3408W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003409T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003410T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003411S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003412F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003413F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003414F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003415
3416HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003417M: Matt Mackall <mpm@selenic.com>
3418M: Herbert Xu <herbert@gondor.apana.org.au>
3419S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003420F: Documentation/hw_random.txt
3421F: drivers/char/hw_random/
3422F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003423
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003424HARDWARE SPINLOCK CORE
3425M: Ohad Ben-Cohen <ohad@wizery.com>
3426S: Maintained
3427F: Documentation/hwspinlock.txt
3428F: drivers/hwspinlock/hwspinlock_*
3429F: include/linux/hwspinlock.h
3430
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003432L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003434F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
Antti Palosaari91952bc2012-10-01 12:28:46 -03003436HD29L2 MEDIA DRIVER
3437M: Antti Palosaari <crope@iki.fi>
3438L: linux-media@vger.kernel.org
3439W: http://linuxtv.org/
3440W: http://palosaari.fi/linux/
3441Q: http://patchwork.linuxtv.org/project/linux-media/list/
3442T: git git://linuxtv.org/anttip/media_tree.git
3443S: Maintained
3444F: drivers/media/dvb-frontends/hd29l2*
3445
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003446HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003447M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003448L: iss_storagedev@hp.com
3449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003450F: Documentation/blockdev/cpqarray.txt
3451F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003452
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003453HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003454M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003455L: iss_storagedev@hp.com
3456S: Supported
3457F: Documentation/scsi/hpsa.txt
3458F: drivers/scsi/hpsa*.[ch]
3459F: include/linux/cciss*.h
3460
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003461HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003462M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003463L: iss_storagedev@hp.com
3464S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003465F: Documentation/blockdev/cciss.txt
3466F: drivers/block/cciss*
3467F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003468
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003470L: linux-fsdevel@vger.kernel.org
3471S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003472F: Documentation/filesystems/hfs.txt
3473F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
3475HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003476M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477L: linux-nvidia@lists.surfsouth.com
3478W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003480F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003482HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003483M: Pavel Machek <pavel@ucw.cz>
3484M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003485L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003486S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003487F: arch/x86/power/
3488F: drivers/base/power/
3489F: kernel/power/
3490F: include/linux/suspend.h
3491F: include/linux/freezer.h
3492F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003493F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003494
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003495HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003496M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003497L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003498T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003500F: drivers/hid/
3501F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003502
Ingo Molnar38bed542007-02-22 09:09:34 +01003503HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003504M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003505T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003507F: Documentation/timers/
3508F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003509F: kernel/time/clockevents.c
3510F: kernel/time/tick*.*
3511F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003512F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003513F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003514
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003517S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003518F: drivers/net/hamradio/dmascc.c
3519F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003521HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003522M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003523W: http://www.highpoint-tech.com
3524S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003525F: Documentation/scsi/hptiop.txt
3526F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003527
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003529M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530L: linux-hippi@sunsite.dk
3531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003532F: include/linux/hippidevice.h
3533F: include/linux/if_hippi.h
3534F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003535F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536
Jouni Malinenff1d2762005-05-12 22:54:16 -04003537HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003538M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003539L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003540L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003541W: http://hostap.epitest.fi/
3542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003543F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003544
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003545HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003546L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003547S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003548F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003549
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003550HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003551M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003552S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003553F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003554
Joe Perches7d2c86b2009-04-07 20:59:01 -07003555HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003556M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003558F: Documentation/timers/hpet.txt
3559F: drivers/char/hpet.c
3560F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003561
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003562HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003563M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003565F: arch/x86/kernel/hpet.c
3566F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003567
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003569M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003572F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573
Joe Perches7d2c86b2009-04-07 20:59:01 -07003574HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003575M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003576W: http://www.pharscape.org
3577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003578F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003579
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003580HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003581M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003582L: linux-input@vger.kernel.org
3583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003584F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003585
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003587M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003589F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003591Hyper-V CORE AND DRIVERS
3592M: K. Y. Srinivasan <kys@microsoft.com>
3593M: Haiyang Zhang <haiyangz@microsoft.com>
3594L: devel@linuxdriverproject.org
3595S: Maintained
3596F: drivers/hv/
3597F: drivers/hid/hid-hyperv.c
3598F: drivers/net/hyperv/
3599F: drivers/staging/hv/
3600
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
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003756M: Borislav Petkov <bp@alien8.de>
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
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003792INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003793M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003794S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003795F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003796
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003798L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003799S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003800F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801
3802INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003803M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003804M: Sean Hefty <sean.hefty@intel.com>
3805M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003806L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003807W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003808Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003809T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003811F: Documentation/infiniband/
3812F: drivers/infiniband/
3813F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
Robert Lovec9f04f52005-07-15 12:21:07 -04003815INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003816M: John McCutchan <john@johnmccutchan.com>
3817M: Robert Love <rlove@rlove.org>
3818M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003820F: Documentation/filesystems/inotify.txt
3821F: fs/notify/inotify/
3822F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003823
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003824INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003825M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3826M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003827L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003828Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003829T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003831F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003832F: include/linux/input.h
3833F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003834
Henrik Rydberg3267a872010-06-24 19:10:40 -07003835INPUT MULTITOUCH (MT) PROTOCOL
3836M: Henrik Rydberg <rydberg@euromail.se>
3837L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003838T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003839S: Maintained
3840F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003841F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003842K: \b(ABS|SYN)_MT_
3843
Dave Jiang4ac13e12011-07-29 17:16:55 -07003844INTEL C600 SERIES SAS CONTROLLER DRIVER
3845M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003846M: Lukasz Dorau <lukasz.dorau@intel.com>
3847M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003848M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003849L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003850T: git git://git.code.sf.net/p/intel-sas/isci
3851S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003852F: drivers/scsi/isci/
3853F: firmware/isci/
3854
Len Brown26717172010-03-08 14:07:30 -05003855INTEL IDLE DRIVER
3856M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003857L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003858T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003859S: Supported
3860F: drivers/idle/intel_idle.c
3861
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003862INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003863M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003864L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003866F: Documentation/fb/intelfb.txt
3867F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003868
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003870M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003871L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003873F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303875INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003876M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003877L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303878W: http://www.lesswatts.org/projects/acpi/
3879S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003880F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303881
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003883M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003885F: arch/x86/kernel/microcode_core.c
3886F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003888INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003889M: Dan Williams <djbw@fb.com>
3890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003891F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003892
David Woodhouse6c8909b2008-10-18 16:12:17 +01003893INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003894M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003895L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003896T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003897S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003898F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003899F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003900
Dan Williamsb3e5f262007-08-07 10:26:35 -07003901INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003902M: Dan Williams <djbw@fb.com>
3903S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003904F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003905
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003906INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003907M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003909F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3910F: arch/arm/mach-ixp4xx/include/mach/npe.h
3911F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3912F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003913F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003914F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003915
Michael Buesch844dd052006-06-26 00:24:59 -07003916INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003917M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003919F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003920
Jeff Kirsher0d164402010-10-05 01:15:17 +00003921INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003922M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3923M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3924M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003925M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3926M: Don Skidmore <donald.c.skidmore@intel.com>
3927M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003928M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003929M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003930M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003931L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003932W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003933T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3934T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003936F: Documentation/networking/e100.txt
3937F: Documentation/networking/e1000.txt
3938F: Documentation/networking/e1000e.txt
3939F: Documentation/networking/igb.txt
3940F: Documentation/networking/igbvf.txt
3941F: Documentation/networking/ixgb.txt
3942F: Documentation/networking/ixgbe.txt
3943F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003944F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945
Len Brown6dccf9c2011-07-12 22:29:32 -04003946INTEL MRST PMU DRIVER
3947M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003948L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003949S: Supported
3950F: arch/x86/platform/mrst/pmu.*
3951
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003952INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
3953M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07003954L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003956F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07003957F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003958F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06003959
Shane Wang4bd96a72010-03-10 14:36:10 +08003960INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07003961M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
3962M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08003963M: Shane Wang <shane.wang@intel.com>
3964L: tboot-devel@lists.sourceforge.net
3965W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07003966T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08003967S: Supported
3968F: Documentation/intel_txt.txt
3969F: include/linux/tboot.h
3970F: arch/x86/kernel/tboot.c
3971
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003972INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003973M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003974M: linux-wimax@intel.com
3975L: wimax@linuxwimax.org
3976S: Supported
3977W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003978F: Documentation/wimax/README.i2400m
3979F: drivers/net/wimax/i2400m/
3980F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003981
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003982INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3983M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003984L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003985S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003986F: drivers/net/wireless/iwlegacy/
3987
Zhu Yib481de92007-09-25 17:54:57 -07003988INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07003989M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003990M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003991M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003992L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003993W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07003994T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07003995S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003996F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003997
Tomas Winklerde8fe022012-05-09 16:39:02 +03003998INTEL MANAGEMENT ENGINE (mei)
3999M: Tomas Winkler <tomas.winkler@intel.com>
4000L: linux-kernel@vger.kernel.org
4001S: Supported
4002F: include/linux/mei.h
4003F: drivers/misc/mei/*
4004F: Documentation/mei/*
4005
Ralf Baechlecb109a02007-08-30 23:56:30 -07004006IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004007M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008L: linux-mips@linux-mips.org
4009S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004010F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011
Ralf Baechlecb109a02007-08-30 23:56:30 -07004012IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004013M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004014L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004015S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004016F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004017
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004018IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004019M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004021F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022
Francois Romieu1202d6f2007-09-17 17:13:55 -07004023IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004024M: Francois Romieu <romieu@fr.zoreil.com>
4025M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004026L: netdev@vger.kernel.org
4027S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004028F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004029
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004030IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004031M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004032L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004034F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004035
Corey Minyard4409ebe2006-04-20 02:43:12 -07004036IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004037M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004038L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004039W: http://openipmi.sourceforge.net/
4040S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004041F: Documentation/IPMI.txt
4042F: drivers/char/ipmi/
4043F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004044
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004045IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004046M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004047L: linux-scsi@vger.kernel.org
4048W: http://www.adaptec.com/
4049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004050F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004051
4052IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004053M: Wensong Zhang <wensong@linux-vs.org>
4054M: Simon Horman <horms@verge.net.au>
4055M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004056L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004057L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004059F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004060F: include/net/ip_vs.h
4061F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004062F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063
Randy Dunlape7839f22008-10-12 16:11:45 -07004064IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004065M: Jiri Kosina <jkosina@suse.cz>
4066M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004067S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004068F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004069
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004070IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004071M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004072L: netdev@vger.kernel.org
4073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004074F: include/linux/ipx.h
4075F: include/net/ipx.h
4076F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004077
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004079M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004080L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004081L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004083S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004084T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004085F: Documentation/networking/irda.txt
4086F: drivers/net/irda/
4087F: include/net/irda/
4088F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004090IRQ SUBSYSTEM
4091M: Thomas Gleixner <tglx@linutronix.de>
4092S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004093T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004094F: kernel/irq/
4095
Grant Likely7ab3a832012-02-14 14:06:47 -07004096IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4097M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4098M: Grant Likely <grant.likely@secretlab.ca>
4099T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4100S: Maintained
4101F: Documentation/IRQ-domain.txt
4102F: include/linux/irqdomain.h
4103F: kernel/irq/irqdomain.c
4104
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004105ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004106M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004108F: Documentation/isapnp.txt
4109F: drivers/pnp/isapnp/
4110F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004111
Harry Wei71a6d0a2011-05-11 15:13:33 -07004112iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4113M: Peter Jones <pjones@redhat.com>
4114M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4115S: Maintained
4116F: drivers/firmware/iscsi_ibft*
4117
Mike Christie14816b1e2007-11-28 16:22:06 -08004118ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004119M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004120L: open-iscsi@googlegroups.com
4121W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004122T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004124F: drivers/scsi/*iscsi*
4125F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004126
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004128M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004129L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004130L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004132T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004134F: Documentation/isdn/
4135F: drivers/isdn/
4136F: include/linux/isdn.h
4137F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138
4139ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004140M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004141L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142W: http://www.melware.de
4143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004144F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145
Jean Delvared6248702010-03-05 22:17:20 +01004146IT87 HARDWARE MONITORING DRIVER
4147M: Jean Delvare <khali@linux-fr.org>
4148L: lm-sensors@lm-sensors.org
4149S: Maintained
4150F: Documentation/hwmon/it87
4151F: drivers/hwmon/it87.c
4152
Hans Verkuil91821ff2007-12-02 09:35:33 -03004153IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004154M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004155L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004156L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004157T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004158W: http://www.ivtvdriver.org
4159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004160F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004161F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004162F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004163
Guenter Roeck4453d732010-08-09 17:21:08 -07004164JC42.4 TEMPERATURE SENSOR DRIVER
4165M: Guenter Roeck <linux@roeck-us.net>
4166L: lm-sensors@lm-sensors.org
4167S: Maintained
4168F: drivers/hwmon/jc42.c
4169F: Documentation/hwmon/jc42
4170
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004171JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004172M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004173L: jfs-discussion@lists.sourceforge.net
4174W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004175T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004177F: Documentation/filesystems/jfs.txt
4178F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004179
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004180JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004181M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004182L: netdev@vger.kernel.org
4183S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004184F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004185
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004187M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004188L: linux-mtd@lists.infradead.org
4189W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004191F: fs/jffs2/
4192F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193
Josh Triplettde456d32006-07-30 03:04:00 -07004194JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004195M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004196M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004197L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004198S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004199F: fs/jbd/
4200F: include/linux/ext3_jbd.h
4201F: include/linux/jbd.h
4202
4203JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4204M: "Theodore Ts'o" <tytso@mit.edu>
4205L: linux-ext4@vger.kernel.org
4206S: Maintained
4207F: fs/jbd2/
4208F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004209
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004210JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004211M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004212L: linux-serial@vger.kernel.org
4213S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004214F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004215
Clemens Ladischaf399172011-01-10 16:32:54 +01004216K10TEMP HARDWARE MONITORING DRIVER
4217M: Clemens Ladisch <clemens@ladisch.de>
4218L: lm-sensors@lm-sensors.org
4219S: Maintained
4220F: Documentation/hwmon/k10temp
4221F: drivers/hwmon/k10temp.c
4222
Rudolf Marek4660cb32006-10-08 22:01:26 +02004223K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004224M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004225L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004227F: Documentation/hwmon/k8temp
4228F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229
4230KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004231M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004232L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004233S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004234F: Documentation/kbuild/kconfig-language.txt
4235F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236
Vivek Goyalea6c2082006-05-20 14:59:55 -07004237KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004238M: Vivek Goyal <vgoyal@redhat.com>
4239M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004240L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004241W: http://lse.sourceforge.net/kdump/
4242S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004243F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004244
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004246M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004247L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004249F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250
Michal Marek70fb7ba2010-01-29 14:22:43 +01004251KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004252M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004253T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4254T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004255L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004256S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004257F: Documentation/kbuild/
4258F: Makefile
4259F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004260F: scripts/basic/
4261F: scripts/mk*
4262F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263
4264KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004265L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004266W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004267S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004269KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004270M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004271L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004273S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004274F: fs/nfsd/
4275F: include/linux/nfsd/
4276F: fs/lockd/
4277F: fs/nfs_common/
4278F: net/sunrpc/
4279F: include/linux/lockd/
4280F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281
Avi Kivity426d62e2006-12-13 00:34:03 -08004282KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004283M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004284M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004285L: kvm@vger.kernel.org
4286W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004287S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004288F: Documentation/*/kvm.txt
4289F: arch/*/kvm/
4290F: arch/*/include/asm/kvm*
4291F: include/linux/kvm*
4292F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004293
Joerg Roedelad8003d2008-09-10 20:01:07 +02004294KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004295M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004296L: kvm@vger.kernel.org
4297W: http://kvm.qumranet.com
4298S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004299F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004300F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004301
Hollis Blanchard513014b2008-04-16 23:28:08 -05004302KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004303M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004304L: kvm-ppc@vger.kernel.org
4305W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004306S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004307F: arch/powerpc/include/asm/kvm*
4308F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004309
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004310KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004311M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004312L: kvm-ia64@vger.kernel.org
4313W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004314S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004315F: Documentation/ia64/kvm.txt
4316F: arch/ia64/include/asm/kvm*
4317F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004318
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004319KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004320M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004321M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004322M: linux390@de.ibm.com
4323L: linux-s390@vger.kernel.org
4324W: http://www.ibm.com/developerworks/linux/linux390/
4325S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004326F: Documentation/s390/kvm.txt
4327F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004328F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004329F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004330
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004331KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004332M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004333W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004334L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004336F: include/linux/kexec.h
4337F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004338
David Howellse9714612010-03-29 23:42:09 +01004339KEYS/KEYRINGS:
4340M: David Howells <dhowells@redhat.com>
4341L: keyrings@linux-nfs.org
4342S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004343F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004344F: include/linux/key.h
4345F: include/linux/key-type.h
4346F: include/keys/
4347F: security/keys/
4348
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004349KEYS-TRUSTED
4350M: David Safford <safford@watson.ibm.com>
4351M: Mimi Zohar <zohar@us.ibm.com>
4352L: linux-security-module@vger.kernel.org
4353L: keyrings@linux-nfs.org
4354S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004355F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004356F: include/keys/trusted-type.h
4357F: security/keys/trusted.c
4358F: security/keys/trusted.h
4359
4360KEYS-ENCRYPTED
4361M: Mimi Zohar <zohar@us.ibm.com>
4362M: David Safford <safford@watson.ibm.com>
4363L: linux-security-module@vger.kernel.org
4364L: keyrings@linux-nfs.org
4365S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004366F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004367F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004368F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004369
Jason Wessel5b778da2010-05-20 21:04:28 -05004370KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004371M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004372W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004373L: kgdb-bugreport@lists.sourceforge.net
4374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004375F: Documentation/DocBook/kgdb.tmpl
4376F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004377F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004378F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004379F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004380F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004381
Pekka Enberg456db8c2008-04-28 22:47:29 +03004382KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004383M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004384M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004385S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004386F: Documentation/kmemcheck.txt
4387F: arch/x86/include/asm/kmemcheck.h
4388F: arch/x86/mm/kmemcheck/
4389F: include/linux/kmemcheck.h
4390F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004391
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004392KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004393M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004394S: Maintained
4395F: Documentation/kmemleak.txt
4396F: include/linux/kmemleak.h
4397F: mm/kmemleak.c
4398F: mm/kmemleak-test.c
4399
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004400KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004401M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4402M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4403M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004404M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004406F: Documentation/kprobes.txt
4407F: include/linux/kprobes.h
4408F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004409
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004410KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004411M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004412W: http://miguelojeda.es/auxdisplay.htm
4413W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004415F: Documentation/auxdisplay/ks0108
4416F: drivers/auxdisplay/ks0108.c
4417F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004418
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004421S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004422F: Documentation/networking/lapb-module.txt
4423F: include/*/lapb.h
4424F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425
4426LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004427M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428L: linux-scsi@vger.kernel.org
4429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004430F: Documentation/scsi/53c700.txt
4431F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432
Richard Purdie263de9b2006-05-15 09:44:16 -07004433LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004434M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004435M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004436L: linux-leds@vger.kernel.org
4437T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004439F: drivers/leds/
4440F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004441
Jean Delvareb0461a42011-06-15 15:08:46 -07004442LEGACY EEPROM DRIVER
4443M: Jean Delvare <khali@linux-fr.org>
4444S: Maintained
4445F: Documentation/misc-devices/eeprom
4446F: drivers/misc/eeprom/eeprom.c
4447
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004449M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450L: legousb-devel@lists.sourceforge.net
4451W: http://legousb.sourceforge.net/
4452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004453F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454
Michael Krufky055616a2012-10-02 00:56:06 -03004455LG2160 MEDIA DRIVER
4456M: Michael Krufky <mkrufky@linuxtv.org>
4457L: linux-media@vger.kernel.org
4458W: http://linuxtv.org/
4459W: http://github.com/mkrufky
4460Q: http://patchwork.linuxtv.org/project/linux-media/list/
4461T: git git://linuxtv.org/mkrufky/tuners.git
4462S: Maintained
4463F: drivers/media/dvb-frontends/lg2160.*
4464
Michael Krufky6f0e7722012-10-02 00:56:00 -03004465LGDT3305 MEDIA DRIVER
4466M: Michael Krufky <mkrufky@linuxtv.org>
4467L: linux-media@vger.kernel.org
4468W: http://linuxtv.org/
4469W: http://github.com/mkrufky
4470Q: http://patchwork.linuxtv.org/project/linux-media/list/
4471T: git git://linuxtv.org/mkrufky/tuners.git
4472S: Maintained
4473F: drivers/media/dvb-frontends/lgdt3305.*
4474
Rusty Russell568a17f2007-10-25 14:12:24 +10004475LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004476M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004477L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004478W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004479S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004480F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004481F: arch/x86/lguest/
4482F: drivers/lguest/
4483F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004484F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004485
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004487M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488W: http://www.ibm.com/linux/ltc/projects/ppc
4489S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004490F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004492LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004493M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4494M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004496L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004497Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004498T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004500F: Documentation/powerpc/
4501F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
4503LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004504M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004506L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004508F: arch/powerpc/platforms/powermac/
4509F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510
Grant Likely77a76362008-07-12 12:11:43 -06004511LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004512M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004513L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004514T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004516F: arch/powerpc/platforms/512x/
4517F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518
4519LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004520M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004521M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004523L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004524T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004526F: arch/powerpc/platforms/40x/
4527F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528
Grant Likely260c02a2007-10-02 12:15:34 +10004529LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004530M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004531W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004532L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004533T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004535F: arch/powerpc/*/*virtex*
4536F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537
Tom Rinie93adf12005-07-26 12:49:53 -07004538LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004539M: Vitaly Bordug <vitb@kernel.crashing.org>
4540M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004541W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004542L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004543S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004544F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004545
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004547M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004548W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004549L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004550S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004551F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004552F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553
Olof Johanssonab06ff32006-09-06 14:44:54 -05004554LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004555M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004556L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004557S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004558F: arch/powerpc/platforms/pasemi/
4559F: drivers/*/*pasemi*
4560F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004561
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004563M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004564L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565S: Supported
4566
Harry Weia23ce6d2011-02-11 16:52:20 +01004567LIS3LV02D ACCELEROMETER DRIVER
4568M: Eric Piel <eric.piel@tremplin-utc.net>
4569S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004570F: Documentation/misc-devices/lis3lv02d
4571F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004572F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004573
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004574LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004575M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004577F: include/linux/llc.h
4578F: include/net/llc*
4579F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004580
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004581LM73 HARDWARE MONITOR DRIVER
4582M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4583L: lm-sensors@lm-sensors.org
4584S: Maintained
4585F: drivers/hwmon/lm73.c
4586
Jean Delvare156e2d12011-07-25 21:46:11 +02004587LM78 HARDWARE MONITOR DRIVER
4588M: Jean Delvare <khali@linux-fr.org>
4589L: lm-sensors@lm-sensors.org
4590S: Maintained
4591F: Documentation/hwmon/lm78
4592F: drivers/hwmon/lm78.c
4593
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004595M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004596L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004598F: Documentation/hwmon/lm83
4599F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600
4601LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004602M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004603L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004605F: Documentation/hwmon/lm90
4606F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004608LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004609M: Peter Zijlstra <peterz@infradead.org>
4610M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004611T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004613F: Documentation/lockdep*.txt
4614F: Documentation/lockstat.txt
4615F: include/linux/lockdep.h
4616F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004617
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004618LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004619M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004620L: linux-ntfs-dev@lists.sourceforge.net
4621W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004623F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004624F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625
Joern Engelef6ada32009-11-20 22:17:12 +01004626LogFS
4627M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304628M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004629L: logfs@logfs.org
4630W: logfs.org
4631S: Maintained
4632F: fs/logfs/
4633
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004634LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004635M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004636M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004637L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004638L: linux-scsi@vger.kernel.org
4639W: http://www.lsilogic.com/support
4640S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004641F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004642
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004644M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645L: linux-scsi@vger.kernel.org
4646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004647F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648
Guenter Roecke5f5c992010-06-25 11:59:54 -07004649LTC4261 HARDWARE MONITOR DRIVER
4650M: Guenter Roeck <linux@roeck-us.net>
4651L: lm-sensors@lm-sensors.org
4652S: Maintained
4653F: Documentation/hwmon/ltc4261
4654F: drivers/hwmon/ltc4261.c
4655
Mike Frysinger81365c32008-10-29 14:01:12 -07004656LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004657M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004658M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004659M: Cyril Hrubis <chrubis@suse.cz>
4660M: Caspar Zhang <caspar@casparzhang.com>
4661M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004662L: ltp-list@lists.sourceforge.net (subscribers-only)
4663W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004664T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004665T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004666S: Maintained
4667
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004668M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004669M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004670L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004671L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4672W: http://www.linux-m32r.org/
4673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004674F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004675
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004677M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678L: linux-m68k@lists.linux-m68k.org
4679W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004680T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004682F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004683F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684
4685M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004686M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004688L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004690F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691
4692M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004693M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694W: http://www.tazenda.demon.co.uk/phil/linux-hp
4695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004696F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697
Jiri Benc64a327a2007-05-05 11:47:08 -07004698MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004699M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004700L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004701W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004702T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4703T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004705F: Documentation/networking/mac80211-injection.txt
4706F: include/net/mac80211.h
4707F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004708
Stefano Brivio1036d862007-12-23 04:46:27 +01004709MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004710M: Stefano Brivio <stefano.brivio@polimi.it>
4711M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004712L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004713W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004714T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4715T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004717F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004718
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004719MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004720M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004721L: netdev@vger.kernel.org
4722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004723F: drivers/net/macvlan.c
4724F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004725
Michael Kerriskfaf16682005-07-31 22:34:47 -07004726MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004727M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004728W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004729L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004730S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004731
stephen hemminger44c14c12012-04-02 12:59:47 +00004732MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4733M: Mirko Lindner <mlindner@marvell.com>
4734M: Stephen Hemminger <shemminger@vyatta.com>
4735L: netdev@vger.kernel.org
4736S: Maintained
4737F: drivers/net/ethernet/marvell/sk*
4738
Stefano Brivio74cda162007-11-19 20:27:46 +01004739MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004740M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004741L: libertas-dev@lists.infradead.org
4742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004743F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004744
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004745MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004746M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004747L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004748S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004749F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004750F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751
Bing Zhaofcad5842011-07-13 13:11:58 -07004752MARVELL MWIFIEX WIRELESS DRIVER
4753M: Bing Zhao <bzhao@marvell.com>
4754L: linux-wireless@vger.kernel.org
4755S: Maintained
4756F: drivers/net/wireless/mwifiex/
4757
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004758MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004759M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004760L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004761S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004762F: drivers/net/wireless/mwl8k.c
4763
Pierre Ossman2a695672009-03-16 19:52:26 +01004764MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004765M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004766S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004767F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004768
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004770L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004771S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004772F: drivers/video/matrox/matroxfb_*
4773F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774
Guenter Roeckca462082012-06-01 23:28:23 -07004775MAX16065 HARDWARE MONITOR DRIVER
4776M: Guenter Roeck <linux@roeck-us.net>
4777L: lm-sensors@lm-sensors.org
4778S: Maintained
4779F: Documentation/hwmon/max16065
4780F: drivers/hwmon/max16065.c
4781
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004782MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004783M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004784L: lm-sensors@lm-sensors.org
4785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004786F: Documentation/hwmon/max6650
4787F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004788
Joe Perches127c49a2009-04-08 08:34:04 -07004789MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004790M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004791P: LinuxTV.org Project
4792L: linux-media@vger.kernel.org
4793W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004794Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches08deed12012-03-23 15:01:57 -07004795T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Joe Perches127c49a2009-04-08 08:34:04 -07004796S: Maintained
4797F: Documentation/dvb/
4798F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004799F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004800F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004801F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004802F: include/media/
4803F: include/linux/dvb/
4804F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004805
4806MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004807M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004808L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004809W: http://megaraid.lsilogic.com
4810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004811F: Documentation/scsi/megaraid.txt
4812F: drivers/scsi/megaraid.*
4813F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004814
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004815MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817W: http://www.linux-mm.org
4818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004819F: include/linux/mm.h
4820F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004821
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004822MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004823M: Johannes Weiner <hannes@cmpxchg.org>
4824M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004825M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004826M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004827L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004828L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004830F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004831F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004832
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004834M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004836W: http://www.linux-mtd.infradead.org/
4837Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004838T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004840F: drivers/mtd/
4841F: include/linux/mtd/
4842F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843
Michal Simekc6375b02009-03-27 14:25:52 +01004844MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004845M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004846L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004847W: http://www.monstr.eu/fdt/
4848T: git git://git.monstr.eu/linux-2.6-microblaze.git
4849S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004850F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851
4852MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004853M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004855F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856
4857MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004858M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004860W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004861T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004862Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004863S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004864F: Documentation/mips/
4865F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004868M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004870F: include/linux/module.h
4871F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872
4873MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004875S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004876F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004877F: drivers/media/pci/meye/
Joe Perches679655d2009-04-07 20:44:32 -07004878F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879
Pavel Pisac58ff042007-05-16 01:10:41 +02004880MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004881M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004882L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004884F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004885
Jiri Slabyb9705b62008-04-30 00:53:48 -07004886MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004887M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004889F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004890F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004891
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004892MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004893M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004894L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004896F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004897
Anisse Astier0f1006b2009-12-17 11:28:49 +01004898MSI WMI SUPPORT
4899M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05004900L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004901S: Supported
4902F: drivers/platform/x86/msi-wmi.c
4903
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004904MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004905M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004906T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004907S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004908F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004909
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004910MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004911M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004912L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004913T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4914S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004915F: drivers/mmc/
4916F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004917
David Brownell15a05802007-08-08 09:12:54 -07004918MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004919S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004920F: drivers/mmc/host/mmc_spi.c
4921F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004922
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004924M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004926F: Documentation/sound/oss/MultiSound
4927F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928
Jiri Slabyd7354102006-12-08 02:38:35 -08004929MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004930S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004931F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004932F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004933
Felipe Balbi550a7372008-07-24 12:27:36 +03004934MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004935M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004936L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004937T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004939F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004940
Michael Krufkyea0af5f2012-10-02 00:55:41 -03004941MXL5007T MEDIA DRIVER
4942M: Michael Krufky <mkrufky@linuxtv.org>
4943L: linux-media@vger.kernel.org
4944W: http://linuxtv.org/
4945W: http://github.com/mkrufky
4946Q: http://patchwork.linuxtv.org/project/linux-media/list/
4947T: git git://linuxtv.org/mkrufky/tuners.git
4948S: Maintained
4949F: drivers/media/tuners/mxl5007t.*
4950
Brice Goglin2d3cf582008-05-17 12:45:36 +02004951MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004952M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004953L: netdev@vger.kernel.org
4954W: http://www.myri.com/scs/download-Myri10GE.html
4955S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004956F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004957
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04004959S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004960F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961
Daniel Mack23dc05a2011-05-18 11:28:38 +02004962NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4963M: Daniel Mack <zonque@gmail.com>
4964S: Maintained
4965L: alsa-devel@alsa-project.org
4966W: http://www.native-instruments.com
4967F: sound/usb/caiaq/
4968
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004970M: Petr Vandrovec <petr@vandrovec.name>
4971S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004972F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973
4974NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004975M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976L: linux-scsi@vger.kernel.org
4977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004978F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004980NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004981M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004982L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004983W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004984S: Supported
4985F: drivers/infiniband/hw/nes/
4986
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004987NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05004988M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07004989L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004991F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004992
Jon Masonb2f5a052010-07-15 08:47:27 +00004993NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00004994M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07004995L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07004996S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004997F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00004998F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07004999F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005000
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002P: Harald Welte
5003P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005004M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005005M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005006L: netfilter-devel@vger.kernel.org
5007L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005008L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009W: http://www.netfilter.org/
5010W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005011T: git git://1984.lsi.us.es/nf
5012T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005014F: include/linux/netfilter*
5015F: include/linux/netfilter/
5016F: include/net/netfilter/
5017F: net/*/netfilter.c
5018F: net/*/netfilter/
5019F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020
Paul Moore4cc67732006-09-25 15:57:13 -07005021NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005022M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005023W: http://netlabel.sf.net
5024L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005025S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005026F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005027F: include/net/netlabel.h
5028F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005029
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005031M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005033W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005035F: include/linux/netrom.h
5036F: include/net/netrom.h
5037F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005039NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005040M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005042F: Documentation/blockdev/nbd.txt
5043F: drivers/block/nbd.c
5044F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045
Neil Horman6e436502009-10-05 03:56:55 +00005046NETWORK DROP MONITOR
5047M: Neil Horman <nhorman@tuxdriver.com>
5048L: netdev@vger.kernel.org
5049S: Maintained
5050W: https://fedorahosted.org/dropwatch/
5051F: net/core/drop_monitor.c
5052
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005054M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005055L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005056W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00005057W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005058T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5059T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005061F: net/
5062F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005063F: include/linux/in.h
5064F: include/linux/net.h
5065F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066
5067NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005068M: "David S. Miller" <davem@davemloft.net>
5069M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005070M: James Morris <jmorris@namei.org>
5071M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5072M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005073L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005074T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005076F: net/ipv4/
5077F: net/ipv6/
5078F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005079F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080
David S. Miller73b76562012-10-16 14:08:40 -04005081NETWORKING [IPSEC]
5082M: Steffen Klassert <steffen.klassert@secunet.com>
5083M: Herbert Xu <herbert@gondor.apana.org.au>
5084M: "David S. Miller" <davem@davemloft.net>
5085L: netdev@vger.kernel.org
5086T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5087S: Maintained
5088F: net/xfrm/
5089F: net/key/
5090F: net/ipv4/xfrm*
5091F: net/ipv6/xfrm*
5092F: include/uapi/linux/xfrm.h
5093F: include/net/xfrm.h
5094
James Morris10e2ff12007-08-25 14:41:28 -07005095NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005096M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005097L: netdev@vger.kernel.org
5098S: Maintained
5099
John W. Linville29f8f632006-01-18 14:52:48 -08005100NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005101M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005102L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005103Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005104T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005105S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005106F: net/mac80211/
5107F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005108F: net/wireless/
5109F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005110F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005111F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005112F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005113
Joe Perches788873a2009-04-16 09:38:45 +00005114NETWORKING DRIVERS
5115L: netdev@vger.kernel.org
5116W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005117T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5118T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005119S: Odd Fixes
5120F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005121F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005122F: include/linux/netdevice.h
5123F: include/linux/arcdevice.h
5124F: include/linux/etherdevice.h
5125F: include/linux/fcdevice.h
5126F: include/linux/fddidevice.h
5127F: include/linux/hippidevice.h
5128F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005129
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005130NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005131M: Sony Chacko <sony.chacko@qlogic.com>
5132M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005133L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005134W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005135S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005136F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005137
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005138NFC SUBSYSTEM
5139M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5140M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5141M: Samuel Ortiz <sameo@linux.intel.com>
5142L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005143L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005144S: Maintained
5145F: net/nfc/
5146F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005147F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005148F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005150NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005151M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005152L: linux-nfs@vger.kernel.org
5153W: http://client.linux-nfs.org
5154T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005156F: fs/lockd/
5157F: fs/nfs/
5158F: fs/nfs_common/
5159F: net/sunrpc/
5160F: include/linux/lockd/
5161F: include/linux/nfs*
5162F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163
5164NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005165M: Jan-Pascal van Best <janpascal@vanbest.org>
5166M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005167L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005169F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005171NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005172M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005173L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005174W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005175T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005176S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005177F: Documentation/filesystems/nilfs2.txt
5178F: fs/nilfs2/
5179F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005180
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005182M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005185F: Documentation/scsi/NinjaSCSI.txt
5186F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187
5188NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005189M: GOTO Masanori <gotom@debian.or.jp>
5190M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005193F: Documentation/scsi/NinjaSCSI.txt
5194F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005197M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005199W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005200T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005202F: Documentation/filesystems/ntfs.txt
5203F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005205NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005206M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005207L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005209F: drivers/video/riva/
5210F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211
Tony Lindgrenf5525782009-05-28 13:23:53 -07005212OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005213M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005214L: linux-omap@vger.kernel.org
5215W: http://www.muru.com/linux/omap/
5216W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005217Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005218T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005219S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005220F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005221F: drivers/i2c/busses/i2c-omap.c
5222F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005223
5224OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005225M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005226L: linux-omap@vger.kernel.org
5227S: Maintained
5228F: arch/arm/*omap*/*clock*
5229
5230OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005231M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005232L: linux-omap@vger.kernel.org
5233S: Maintained
5234F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005235F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005236
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005237OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5238M: Rajendra Nayak <rnayak@ti.com>
5239M: Paul Walmsley <paul@pwsan.com>
5240L: linux-omap@vger.kernel.org
5241S: Maintained
5242F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5243F: arch/arm/mach-omap2/powerdomain44xx.c
5244F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5245F: arch/arm/mach-omap2/clockdomain44xx.c
5246
Tony Lindgrenf5525782009-05-28 13:23:53 -07005247OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005248M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005249M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005250L: alsa-devel@alsa-project.org (subscribers-only)
5251L: linux-omap@vger.kernel.org
5252S: Maintained
5253F: sound/soc/omap/
5254
5255OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005256M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005257L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005258L: linux-omap@vger.kernel.org
5259S: Maintained
5260F: drivers/video/omap/
5261
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005262OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005263M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005264L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005265L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005266S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005267F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005268F: Documentation/arm/OMAP/DSS
5269
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005270OMAP HARDWARE SPINLOCK SUPPORT
5271M: Ohad Ben-Cohen <ohad@wizery.com>
5272L: linux-omap@vger.kernel.org
5273S: Maintained
5274F: drivers/hwspinlock/omap_hwspinlock.c
5275F: arch/arm/mach-omap2/hwspinlock.c
5276
Tony Lindgrenf5525782009-05-28 13:23:53 -07005277OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005278M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005279L: linux-omap@vger.kernel.org
5280S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005281F: drivers/mmc/host/omap.c
5282
5283OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305284M: Venkatraman S <svenkatr@ti.com>
5285L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005286L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305287S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005288F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005289
5290OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005291M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005292S: Maintained
5293F: drivers/char/hw_random/omap-rng.c
5294
Paul Walmsleyf400c822010-12-06 19:08:54 -07005295OMAP HWMOD SUPPORT
5296M: Benoît Cousson <b-cousson@ti.com>
5297M: Paul Walmsley <paul@pwsan.com>
5298L: linux-omap@vger.kernel.org
5299S: Maintained
5300F: arch/arm/mach-omap2/omap_hwmod.c
5301F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5302
5303OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5304M: Benoît Cousson <b-cousson@ti.com>
5305L: linux-omap@vger.kernel.org
5306S: Maintained
5307F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5308
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005309OMAP IMAGE SIGNAL PROCESSOR (ISP)
5310M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5311L: linux-media@vger.kernel.org
5312S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005313F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005314
Tony Lindgrenf5525782009-05-28 13:23:53 -07005315OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005316M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005317L: linux-usb@vger.kernel.org
5318L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005319T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005320S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005321F: drivers/usb/*/*omap*
5322F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005323
Kevin Hilman6d994712012-07-16 10:05:07 -07005324OMAP GPIO DRIVER
5325M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5326M: Kevin Hilman <khilman@ti.com>
5327L: linux-omap@vger.kernel.org
5328S: Maintained
5329F: drivers/gpio/gpio-omap.c
5330
Bob Copeland0ad122d2008-07-25 19:45:18 -07005331OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005332M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005333L: linux-karma-devel@lists.sourceforge.net
5334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005335F: Documentation/filesystems/omfs.txt
5336F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005337
Harald Weltec1986ee2005-11-13 16:06:29 -08005338OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005339M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005341F: drivers/char/pcmcia/cm4000_cs.c
5342F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005343
Harald Welte77c44ab2005-11-13 16:06:26 -08005344OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005345M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005347F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005348
Jonathan Corbet77d51402007-03-22 19:44:17 -03005349OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005350M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005351L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005352T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005353S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005354F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005355
Thomas Gleixner431bca72007-05-02 09:31:35 +02005356ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005357M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005358L: linux-mtd@lists.infradead.org
5359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005360F: drivers/mtd/onenand/
5361F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005362
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005364M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365L: osst-users@lists.sourceforge.net
5366L: linux-scsi@vger.kernel.org
5367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005368F: drivers/scsi/osst*
5369F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005371OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005372M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005373L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005375F: Documentation/i2c/busses/i2c-ocores
5376F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005377
Grant Likely860c44c2009-10-26 16:49:49 -07005378OPEN FIRMWARE AND FLATTENED DEVICE TREE
5379M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005380M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005381L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005382W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005383T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005384S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005385F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005386F: drivers/of
5387F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005388F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005389K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005390K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005391
Jonas Bonn19f9d392011-06-04 22:00:38 +03005392OPENRISC ARCHITECTURE
5393M: Jonas Bonn <jonas@southpole.se>
5394W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005395L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005396S: Maintained
5397T: git git://openrisc.net/~jonas/linux
5398F: arch/openrisc
5399
Jesse Grossccb13522011-10-25 19:26:31 -07005400OPENVSWITCH
5401M: Jesse Gross <jesse@nicira.com>
5402L: dev@openvswitch.org
5403W: http://openvswitch.org
5404T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5405S: Maintained
5406F: net/openvswitch/
5407
Clemens Ladischaf399172011-01-10 16:32:54 +01005408OPL4 DRIVER
5409M: Clemens Ladisch <clemens@ladisch.de>
5410L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5411T: git git://git.alsa-project.org/alsa-kernel.git
5412S: Maintained
5413F: sound/drivers/opl4/
5414
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005416M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417L: oprofile-list@lists.sf.net
5418S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005419F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005420F: arch/*/oprofile/
5421F: drivers/oprofile/
5422F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005424ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005425M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005426M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005427L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5428W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005429T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005430S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005431F: Documentation/filesystems/ocfs2.txt
5432F: Documentation/filesystems/dlmfs.txt
5433F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005434
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005436L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005437W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005438W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005439S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005440F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005442OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005443M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005444M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005445L: osd-dev@open-osd.org
5446W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005447T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005448S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005449F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005450F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005451F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005452
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005453P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005454M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005455L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005456W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005458F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005459
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005460PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005461M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005462L: netdev@vger.kernel.org
5463S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005464F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005465
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005466PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005467M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005468L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005470F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005471
Steffen Klassert48fc2672010-08-13 10:10:46 -04005472PADATA PARALLEL EXECUTION MECHANISM
5473M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005474L: linux-crypto@vger.kernel.org
5475S: Maintained
5476F: kernel/padata.c
5477F: include/linux/padata.h
5478F: Documentation/padata.txt
5479
Harald Welte709ee532008-09-23 17:46:57 +02005480PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005481M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005482L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005484F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005485
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005486PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005487M: David Howells <dhowells@redhat.com>
5488M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005489L: linux-am33-list@redhat.com (moderated for non-subscribers)
5490W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005492F: Documentation/mn10300/
5493F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005494
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005496L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005497S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005498F: drivers/parport/
5499F: include/linux/parport*.h
5500F: drivers/char/ppdev.c
5501F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005502
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005503PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005504M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005505M: Chris Wright <chrisw@sous-sol.org>
5506M: Alok Kataria <akataria@vmware.com>
5507M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005508L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005509S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005510F: Documentation/ia64/paravirt_ops.txt
5511F: arch/*/kernel/paravirt*
5512F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005513
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005515M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005516L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517W: http://www.torque.net/linux-pp.html
5518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005519F: Documentation/blockdev/paride.txt
5520F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521
5522PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005523M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005524M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005525L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005527Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005528T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005530F: arch/parisc/
5531F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532
Jim Cromie1662d322006-10-06 00:43:59 -07005533PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005534M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005535L: lm-sensors@lm-sensors.org
5536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005537F: Documentation/hwmon/pc87360
5538F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005539
5540PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005541M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005543F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005544
Jean Delvare1ad107f2010-08-14 21:09:00 +02005545PC87427 HARDWARE MONITORING DRIVER
5546M: Jean Delvare <khali@linux-fr.org>
5547L: lm-sensors@lm-sensors.org
5548S: Maintained
5549F: Documentation/hwmon/pc87427
5550F: drivers/hwmon/pc87427.c
5551
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005552PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005553M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005554S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005555F: drivers/leds/leds-pca9532.c
5556F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005557
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005558PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005559M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005560L: linux-i2c@vger.kernel.org
5561S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005562F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005563
Wolfram Sanga1867d32009-09-18 22:45:51 +02005564PCA9564/PCA9665 I2C BUS DRIVER
5565M: Wolfram Sang <w.sang@pengutronix.de>
5566L: linux-i2c@vger.kernel.org
5567S: Maintained
5568F: drivers/i2c/algos/i2c-algo-pca.c
5569F: drivers/i2c/busses/i2c-pca-*
5570F: include/linux/i2c-algo-pca.h
5571F: include/linux/i2c-pca-platform.h
5572
Khalid Aziz3971dae2012-04-12 12:49:13 -07005573PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005574M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005575S: Maintained
5576F: drivers/firmware/pcdp.*
5577
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005578PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005579M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005580L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005581S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005582F: Documentation/PCI/pci-error-recovery.txt
5583F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005584
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005586M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005587L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005588Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005589T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005591F: Documentation/PCI/
5592F: drivers/pci/
5593F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005596P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005597L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005598W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005599T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005601F: Documentation/pcmcia/
5602F: drivers/pcmcia/
5603F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604
5605PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005606M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005607L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005609F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610
Steffen Klassert48fc2672010-08-13 10:10:46 -04005611PCRYPT PARALLEL CRYPTO ENGINE
5612M: Steffen Klassert <steffen.klassert@secunet.com>
5613L: linux-crypto@vger.kernel.org
5614S: Maintained
5615F: crypto/pcrypt.c
5616F: include/crypto/pcrypt.h
5617
Tejun Heoe72df0b2010-12-10 17:02:49 +01005618PER-CPU MEMORY ALLOCATOR
5619M: Tejun Heo <tj@kernel.org>
5620M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005621T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5622S: Maintained
5623F: include/linux/percpu*.h
5624F: mm/percpu*.c
5625F: arch/*/include/asm/percpu.h
5626
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005627PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005628M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005630F: include/linux/delayacct.h
5631F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005632
Ingo Molnar57c0c152009-09-21 12:20:38 +02005633PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005634M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5635M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005636M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005637M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005638T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005639S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005640F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005641F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005642F: arch/*/kernel/perf_event*.c
5643F: arch/*/kernel/*/perf_event*.c
5644F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005645F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005646F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005647F: arch/*/kernel/perf_callchain.c
5648F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005649
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005650PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005651M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005652L: linux-abi-devel@lists.sourceforge.net
5653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005654F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005655
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005656PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005657M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005658S: Supported
5659F: Documentation/networking/phonet.txt
5660F: include/linux/phonet.h
5661F: include/net/phonet/
5662F: net/phonet/
5663
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005665M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666L: linux-mtd@lists.infradead.org
5667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005668F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669
Bruno Prémontefdbb102012-07-30 21:39:03 +02005670PICOLCD HID DRIVER
5671M: Bruno Prémont <bonbons@linux-vserver.org>
5672L: linux-input@vger.kernel.org
5673S: Maintained
5674F: drivers/hid/hid-picolcd*
5675
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005676PICOXCELL SUPPORT
5677M: Jamie Iles <jamie@jamieiles.com>
5678L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5679T: git git://github.com/jamieiles/linux-2.6-ji.git
5680S: Supported
5681F: arch/arm/mach-picoxcell
5682F: drivers/*/picoxcell*
5683F: drivers/*/*/picoxcell*
5684
Linus Walleij2744e8a2011-05-02 20:50:54 +02005685PIN CONTROL SUBSYSTEM
5686M: Linus Walleij <linus.walleij@linaro.org>
5687S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005688F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005689F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005690
Jean-Christophe PLAGNIOL-VILLARD2201bbb2012-10-27 19:53:12 +02005691PIN CONTROLLER - ATMEL AT91
5692M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
5693L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5694S: Maintained
5695F: drivers/pinctrl/pinctrl-at91.c
5696
Viresh Kumardeda8282012-03-28 22:27:07 +05305697PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005698M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305699L: spear-devel@list.st.com
5700L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5701W: http://www.st.com/spear
5702S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005703F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305704
Peter Osterlund249a6772005-09-27 21:45:30 -07005705PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005706M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005708F: drivers/block/pktcdvd.c
5709F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005710
GuanXuetaob31d8272011-01-16 00:35:49 +08005711PKUNITY SOC DRIVERS
5712M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5713W: http://mprc.pku.edu.cn/~guanxuetao/linux
5714S: Maintained
5715T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5716F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005717F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005718F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005719F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005720
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005721PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005722M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005723L: lm-sensors@lm-sensors.org
5724W: http://www.lm-sensors.org/
5725W: http://www.roeck-us.net/linux/drivers/
5726T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5727S: Maintained
5728F: Documentation/hwmon/pmbus
5729F: drivers/hwmon/pmbus/
5730F: include/linux/i2c/pmbus.h
5731
Anil Ravindranath89a36812009-08-25 17:35:18 -07005732PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005733M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005734L: linux-scsi@vger.kernel.org
5735W: http://www.pmc-sierra.com/
5736S: Supported
5737F: drivers/scsi/pmcraid.*
5738
jack wangdbf9bfe2009-10-14 16:19:21 +08005739PMC SIERRA PM8001 DRIVER
5740M: jack_wang@usish.com
5741M: lindar_liu@usish.com
5742L: linux-scsi@vger.kernel.org
5743S: Supported
5744F: drivers/scsi/pm8001/
5745
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005747M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005748T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005750F: fs/timerfd.c
5751F: include/linux/timer*
5752F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753
Anton Vorontsov3be86142007-07-15 04:43:36 +04005754POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005755M: Anton Vorontsov <cbou@mail.ru>
5756M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005757T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005759F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005760F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005761
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005763M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005764M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005766F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767
Vitaly Wool999445d2007-01-04 13:07:03 +01005768PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005769M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005770L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005772F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005773
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005775M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776L: linux-ppp@vger.kernel.org
5777S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005778F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779
5780PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005781M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005783F: net/atm/pppoatm.c
5784F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785
5786PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005787M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005788S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005789F: drivers/net/ppp/pppoe.c
5790F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791
James Chapmana6d23702007-06-27 15:53:17 -07005792PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005793M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005794S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005795F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005796F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005797
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005798PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005799M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005800W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5801L: linuxpps@ml.enneenne.com (subscribers-only)
5802S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005803F: Documentation/pps/
5804F: drivers/pps/
5805F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005806
Harry Wei71a6d0a2011-05-11 15:13:33 -07005807PPTP DRIVER
5808M: Dmitry Kozlov <xeb@mail.ru>
5809L: netdev@vger.kernel.org
5810S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005811F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005812W: http://sourceforge.net/projects/accel-pptp
5813
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005815M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816L: kpreempt-tech@lists.sourceforge.net
5817W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5818S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005819F: Documentation/preempt-locking.txt
5820F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821
5822PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005823M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005824L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005825W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005826S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005827F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005828
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005829PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005830M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005831L: linux-ide@vger.kernel.org
5832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005833F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005834
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005835PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005836M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005837L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005838L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005839S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005840F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005841
Geoff Levandf58a9d12006-11-23 00:46:51 +01005842PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005843M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005844L: linuxppc-dev@lists.ozlabs.org
5845L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005847F: arch/powerpc/boot/ps3*
5848F: arch/powerpc/include/asm/lv1call.h
5849F: arch/powerpc/include/asm/ps3*.h
5850F: arch/powerpc/platforms/ps3/
5851F: drivers/*/ps3*
5852F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005853F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005854F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005855F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005856
Jim Pariscffb4add2009-01-06 11:32:10 +00005857PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005858M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005859L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005860S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005861F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005862
Anton Vorontsov8defe592012-08-03 18:07:20 -07005863PSTORE FILESYSTEM
5864M: Anton Vorontsov <cbouatmailru@gmail.com>
5865M: Colin Cross <ccross@android.com>
5866M: Kees Cook <keescook@chromium.org>
5867M: Tony Luck <tony.luck@intel.com>
5868S: Maintained
5869T: git git://git.infradead.org/users/cbou/linux-pstore.git
5870F: fs/pstore/
5871F: include/linux/pstore*
5872F: drivers/firmware/efivars.c
5873F: drivers/acpi/apei/erst.c
5874
Richard Cochran7fbc4152012-03-10 01:55:53 +00005875PTP HARDWARE CLOCK SUPPORT
5876M: Richard Cochran <richardcochran@gmail.com>
5877S: Maintained
5878W: http://linuxptp.sourceforge.net/
5879F: Documentation/ABI/testing/sysfs-ptp
5880F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07005881F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00005882F: drivers/net/phy/dp83640*
5883F: drivers/ptp/*
5884F: include/linux/ptp_cl*
5885
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005886PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005887M: Roland McGrath <roland@redhat.com>
5888M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005889S: Maintained
5890F: include/asm-generic/syscall.h
5891F: include/linux/ptrace.h
5892F: include/linux/regset.h
5893F: include/linux/tracehook.h
5894F: kernel/ptrace.c
5895
Michael Krufky83202042006-07-03 00:24:18 -07005896PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005897M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005898L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005899L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005900W: http://www.isely.net/pvrusb2/
Joe Perches08deed12012-03-23 15:01:57 -07005901T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Michael Krufky83202042006-07-03 00:24:18 -07005902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005903F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03005904F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005905
Thierry Reding200efed2012-03-27 13:16:18 +02005906PWM SUBSYSTEM
5907M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005908L: linux-kernel@vger.kernel.org
5909S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02005910W: http://gitorious.org/linux-pwm
5911T: git git://gitorious.org/linux-pwm/linux-pwm.git
5912F: Documentation/pwm.txt
5913F: Documentation/devicetree/bindings/pwm/
5914F: include/linux/pwm.h
5915F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005916F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07005917F: drivers/video/backlight/pwm_bl.c
5918F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005919
Eric Miao30ec2612008-06-12 15:21:41 -07005920PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005921M: Eric Miao <eric.y.miao@gmail.com>
5922M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005923M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005924L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005925T: git git://github.com/hzhuang1/linux.git
5926T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005928F: arch/arm/mach-pxa/
5929F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08005930F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07005931F: drivers/usb/gadget/pxa2*
5932F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005933F: sound/arm/pxa*
5934F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005936MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005937M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005938M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005939L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005940T: git git://github.com/hzhuang1/linux.git
5941T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005942S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005943F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005944
Pierre Ossman272f1332007-05-14 21:25:26 +02005945PXA MMCI DRIVER
5946S: Orphan
5947
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005948PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005949M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005950L: rtc-linux@googlegroups.com
5951S: Maintained
5952
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005953QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005954M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005955L: linux-rdma@vger.kernel.org
5956S: Supported
5957F: drivers/infiniband/hw/qib/
5958
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005959QLOGIC QLA1280 SCSI DRIVER
5960M: Michael Reed <mdr@sgi.com>
5961L: linux-scsi@vger.kernel.org
5962S: Maintained
5963F: drivers/scsi/qla1280.[ch]
5964
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005966M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005967M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968L: linux-scsi@vger.kernel.org
5969S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005970F: Documentation/scsi/LICENSE.qla2xxx
5971F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972
Ravi Anand883c98f2010-04-28 11:45:49 +05305973QLOGIC QLA4XXX iSCSI DRIVER
5974M: Ravi Anand <ravi.anand@qlogic.com>
5975M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5976M: iscsi-driver@qlogic.com
5977L: linux-scsi@vger.kernel.org
5978S: Supported
5979F: drivers/scsi/qla4xxx/
5980
Ron Mercer5a4faa872006-07-25 00:40:21 -07005981QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00005982M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005983M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07005984M: linux-driver@qlogic.com
5985L: netdev@vger.kernel.org
5986S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005987F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005988F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07005989
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005990QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00005991M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07005992M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005993M: linux-driver@qlogic.com
5994L: netdev@vger.kernel.org
5995S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005996F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005997
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005998QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00005999M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006000M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006001M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006002L: netdev@vger.kernel.org
6003S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006004F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006007M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008W: http://www.alarsen.net/linux/qnx4fs/
6009S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006010F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07006011F: include/linux/qnx4_fs.h
6012F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006013
Antti Palosaari91952bc2012-10-01 12:28:46 -03006014QT1010 MEDIA DRIVER
6015M: Antti Palosaari <crope@iki.fi>
6016L: linux-media@vger.kernel.org
6017W: http://linuxtv.org/
6018W: http://palosaari.fi/linux/
6019Q: http://patchwork.linuxtv.org/project/linux-media/list/
6020T: git git://linuxtv.org/anttip/media_tree.git
6021S: Maintained
6022F: drivers/media/tuners/qt1010*
6023
Richard Kuo4f4567c2011-10-31 18:56:38 -05006024QUALCOMM HEXAGON ARCHITECTURE
6025M: Richard Kuo <rkuo@codeaurora.org>
6026L: linux-hexagon@vger.kernel.org
6027S: Supported
6028F: arch/hexagon/
6029
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006030RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006031M: Yehuda Sadeh <yehuda@inktank.com>
6032M: Sage Weil <sage@inktank.com>
6033M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006034M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006035W: http://ceph.com/
6036T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006037S: Supported
6038F: drivers/block/rbd.c
6039F: drivers/block/rbd_types.h
6040
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006042M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006043L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006045F: drivers/video/aty/radeon*
6046F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047
6048RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006049M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006050L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006052F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053
Randy Dunlape7839f22008-10-12 16:11:45 -07006054RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006055P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006056M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006057M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006058M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006059L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006060L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006061W: http://rt2x00.serialmonkey.com/
6062S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006063T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006064F: drivers/net/wireless/rt2x00/
6065
Nick Piggin9db55792008-02-08 04:19:49 -08006066RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006067M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006069F: Documentation/blockdev/ramdisk.txt
6070F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006071
Matt Mackall9e95ce22005-04-16 15:25:56 -07006072RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006073M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006075F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006076
Matt Porter394b7012005-11-07 01:00:15 -08006077RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006078M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006079M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006081F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006082
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006083RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006084L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006085S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006086F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006087
6088RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006089M: Josh Triplett <josh@freedesktop.org>
6090M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006091S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006092T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006093F: Documentation/RCU/torture.txt
6094F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006095
Florian Fainellic1f766b2008-02-06 22:39:44 +01006096RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006097M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006098S: Maintained
6099
Florian Fainellidb17f392007-12-19 11:30:30 +01006100RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006101M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006102L: netdev@vger.kernel.org
6103S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006104F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006105
Andy Grovera09ed662009-02-24 15:30:41 +00006106RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006107M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006108L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006109S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006110F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006111
Josh Triplett595182b2006-10-04 02:17:21 -07006112READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006113M: Dipankar Sarma <dipankar@in.ibm.com>
6114M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006115W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006116S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006117T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006118F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006119X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006120F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006121F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006122X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006123
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006124REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006125M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006126L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006127Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006129F: Documentation/rtc.txt
6130F: drivers/rtc/
6131F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006132
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006134L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006136F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137
Mark Brownb83a3132011-05-11 19:59:58 +02006138REGISTER MAP ABSTRACTION
6139M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6140T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6141S: Supported
6142F: drivers/base/regmap/
6143F: include/linux/regmap.h
6144
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006145REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6146M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006147T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006148S: Maintained
6149F: drivers/remoteproc/
6150F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006151F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006152
Ivo van Doorne08976452008-04-12 19:23:55 +02006153RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006154M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006155L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006156W: http://wireless.kernel.org/
6157T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6158T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006159S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006160F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006161F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006162
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006163RICOH SMARTMEDIA/XD DRIVER
6164M: Maxim Levitsky <maximlevitsky@gmail.com>
6165S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006166F: drivers/mtd/nand/r852.c
6167F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006168
Maxim Levitsky92634122011-03-25 01:56:59 -07006169RICOH R5C592 MEMORYSTICK DRIVER
6170M: Maxim Levitsky <maximlevitsky@gmail.com>
6171S: Maintained
6172F: drivers/memstick/host/r592.*
6173
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174ROCKETPORT DRIVER
6175P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006176W: http://www.comtrol.com
6177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006178F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006179F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006180
6181ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006182M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006183L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006184W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006186F: include/linux/rose.h
6187F: include/net/rose.h
6188F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189
Antti Palosaari91952bc2012-10-01 12:28:46 -03006190RTL2830 MEDIA DRIVER
6191M: Antti Palosaari <crope@iki.fi>
6192L: linux-media@vger.kernel.org
6193W: http://linuxtv.org/
6194W: http://palosaari.fi/linux/
6195Q: http://patchwork.linuxtv.org/project/linux-media/list/
6196T: git git://linuxtv.org/anttip/media_tree.git
6197S: Maintained
6198F: drivers/media/dvb-frontends/rtl2830*
6199
Larry Finger59840482008-11-12 17:13:09 -06006200RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006201M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006202L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006203W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006204T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006205S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006206F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006207
Larry Finger59840482008-11-12 17:13:09 -06006208RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006209M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006210M: Hin-Tak Leung <htl10@users.sourceforge.net>
6211M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006212L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006213W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006214T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006215S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006216F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006217
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006218RTL8192CE WIRELESS DRIVER
6219M: Larry Finger <Larry.Finger@lwfinger.net>
6220M: Chaoming Li <chaoming_li@realsil.com.cn>
6221L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006222W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006223T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6224S: Maintained
6225F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006226F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006227
6228S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006229M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006230L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006232F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006233
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234S390
Joe Perches8b58be82009-07-29 15:04:30 -07006235M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6236M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006238L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006239W: http://www.ibm.com/developerworks/linux/linux390/
6240S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006241F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006242F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006243F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006244F: Documentation/s390/
6245F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006246
6247S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006248M: Ursula Braun <ursula.braun@de.ibm.com>
6249M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006250M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006251L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006252W: http://www.ibm.com/developerworks/linux/linux390/
6253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006254F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006255
Felix Beckfeed9b62009-03-26 15:24:23 +01006256S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006257M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006258M: linux390@de.ibm.com
6259L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006260W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006261S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006262F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006263
Heiko Carstens5238da42006-02-11 17:56:01 -08006264S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006265M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006266M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006267L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006268W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006270F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006271
Ursula Braundd96df22007-09-19 13:09:02 +02006272S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006273M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006274M: linux390@de.ibm.com
6275L: linux-s390@vger.kernel.org
6276W: http://www.ibm.com/developerworks/linux/linux390/
6277S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006278F: drivers/s390/net/*iucv*
6279F: include/net/iucv/
6280F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006281
Ben Dooks4dde7f72008-06-30 22:40:38 +01006282S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006283M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006284L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006285S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006286F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006287
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006289M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006290L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006291T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292W: http://www.mihu.de/linux/saa7146
6293S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006294F: drivers/media/common/saa7146/
6295F: drivers/media/pci/saa7146/
6296F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297
Corentin Chary92304a42011-12-05 12:38:35 -05006298SAMSUNG LAPTOP DRIVER
6299M: Corentin Chary <corentincj@iksaif.net>
6300L: platform-driver-x86@vger.kernel.org
6301S: Maintained
6302F: drivers/platform/x86/samsung-laptop.c
6303
Mark Brown4a109cc2010-09-24 10:50:46 +01006304SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006305M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006306L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6307S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006308F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006309
Jingoo Han0d89a282011-12-19 11:09:35 +09006310SAMSUNG FRAMEBUFFER DRIVER
6311M: Jingoo Han <jg1.han@samsung.com>
6312L: linux-fbdev@vger.kernel.org
6313S: Maintained
6314F: drivers/video/s3c-fb.c
6315
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006316SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6317M: Sangbeom Kim <sbkim73@samsung.com>
6318L: linux-kernel@vger.kernel.org
6319S: Supported
6320F: drivers/mfd/sec*.c
6321F: drivers/regulator/s2m*.c
6322F: drivers/regulator/s5m*.c
6323F: drivers/rtc/rtc-sec.c
6324F: include/linux/mfd/samsung/
6325
Alan Coxca749e22011-03-18 13:56:14 +00006326SERIAL DRIVERS
6327M: Alan Cox <alan@linux.intel.com>
6328L: linux-serial@vger.kernel.org
6329S: Maintained
6330F: drivers/tty/serial
6331
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306332SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006333M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306334S: Maintained
6335F: include/linux/dw_dmac.h
6336F: drivers/dma/dw_dmac_regs.h
6337F: drivers/dma/dw_dmac.c
6338
Thomas Gleixner88606e82010-12-14 21:37:13 +01006339TIMEKEEPING, NTP
6340M: John Stultz <johnstul@us.ibm.com>
6341M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006342T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006343S: Supported
6344F: include/linux/clocksource.h
6345F: include/linux/time.h
6346F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006347F: kernel/time/clocksource.c
6348F: kernel/time/time*.c
6349F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006350F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006351
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006352TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006353M: Huang Shijie <shijie8@gmail.com>
6354M: Kang Yong <kangyong@telegent.com>
6355M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006356S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006357F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006358
Linus Torvalds1da177e2005-04-16 15:20:36 -07006359SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006360M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006362F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363
6364SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006365M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006366M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006367T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006369F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006370F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006371
Chen Liqin6bcf6732009-06-13 15:24:33 +08006372SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006373M: Chen Liqin <liqin.chen@sunplusct.com>
6374M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006375W: http://www.sunplusct.com
6376S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006377F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006378
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006380M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381L: linux-scsi@vger.kernel.org
6382W: http://www.kernel.dk
6383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006384F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385
Roland Dreierfb50a832010-10-07 09:54:53 -07006386SCSI RDMA PROTOCOL (SRP) INITIATOR
6387M: David Dillow <dillowda@ornl.gov>
6388L: linux-rdma@vger.kernel.org
6389S: Supported
6390W: http://www.openfabrics.org
6391Q: http://patchwork.kernel.org/project/linux-rdma/list/
6392T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6393F: drivers/infiniband/ulp/srp/
6394F: include/scsi/srp.h
6395
Linus Torvalds1da177e2005-04-16 15:20:36 -07006396SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006397M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006398L: linux-scsi@vger.kernel.org
6399W: http://www.torque.net/sg
6400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006401F: drivers/scsi/sg.c
6402F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006403
6404SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006405M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006407T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6408T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6409T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006411F: drivers/scsi/
6412F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006413
6414SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006415M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416L: linux-scsi@vger.kernel.org
6417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006418F: Documentation/scsi/st.txt
6419F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420
6421SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006422M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006423M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006424L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006425W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006427F: Documentation/networking/sctp.txt
6428F: include/linux/sctp.h
6429F: include/net/sctp/
6430F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431
6432SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006433M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006434S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006435F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006436F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006437F: drivers/watchdog/scx200_wdt.c
6438F: drivers/i2c/busses/scx200*
6439F: drivers/mtd/maps/scx200_docflash.c
6440F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006441
6442SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006443M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006445F: drivers/char/scx200_gpio.c
6446F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006447
6448SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006449M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006451F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006452
Sascha Sommer6a369132008-07-15 14:21:29 +02006453SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006454M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006455L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006457F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006458
Randy Dunlape7839f22008-10-12 16:11:45 -07006459SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006460M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006461L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006462T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6463S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006464F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006465F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006466
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006467SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006468M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006469L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006470L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006472F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473
Ben Dooks0d1bb412009-06-14 13:52:37 +01006474SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006475M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006476L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006477S: Maintained
6478F: drivers/mmc/host/sdhci-s3c.c
6479
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006480SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006481M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006482L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006483L: linux-mmc@vger.kernel.org
6484S: Maintained
6485F: drivers/mmc/host/sdhci-spear.c
6486
James Morris8711cca2008-12-04 03:19:45 +11006487SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006488M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006489L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006490T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006491W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006492S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006493F: security/
James Morris8711cca2008-12-04 03:19:45 +11006494
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006496M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497S: Supported
6498
6499SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006500M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006501M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006502M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006503L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006504W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006505T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006507F: include/linux/selinux*
6508F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006509F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006510
John Johansenc1c124e2010-07-29 14:48:09 -07006511APPARMOR SECURITY MODULE
6512M: John Johansen <john.johansen@canonical.com>
6513L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6514W: apparmor.wiki.kernel.org
6515T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6516S: Supported
6517F: security/apparmor/
6518
Jiri Slabycef2cf02007-05-08 00:31:45 -07006519SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006520M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006522F: drivers/misc/phantom.c
6523F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006524
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006525SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006526M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006527L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006528T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006530F: drivers/ata/
6531F: include/linux/ata.h
6532F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306534SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006535M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006536L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006537W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006538S: Supported
6539F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306540
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006541SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006542M: Sathya Perla <sathya.perla@emulex.com>
6543M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6544M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006545L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006546W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006547S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006548F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006549
Ben Hutchings8ceee662008-04-27 12:55:59 +01006550SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006551M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006552M: Ben Hutchings <bhutchings@solarflare.com>
6553L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006554S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006555F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006556
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006557SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006558M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006560F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006561
6562SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006563M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006564L: linux-ia64@vger.kernel.org
6565S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006566F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006567F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006568F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006569
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006571M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572L: linux-visws-devel@lists.sf.net
6573W: http://linux-visws.sf.net
6574S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006575F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576
Jack Steiner75312612008-08-15 00:40:42 -07006577SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006578M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006580F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006581
Len Brown6349d992009-08-14 15:07:14 -04006582SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006583M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006584L: sfi-devel@simplefirmware.org
6585W: http://simplefirmware.org/
6586T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006587S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006588F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006589F: drivers/sfi/
6590F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006591
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592SIMTEC EB110ATX (Chalice CATS)
6593P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006594P: Vincent Sanders <vince@simtec.co.uk>
6595M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006596W: http://www.simtec.co.uk/products/EB110ATX/
6597S: Supported
6598
6599SIMTEC EB2410ITX (BAST)
6600P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006601P: Vincent Sanders <vince@simtec.co.uk>
6602M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603W: http://www.simtec.co.uk/products/EB2410ITX/
6604S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006605F: arch/arm/mach-s3c2410/mach-bast.c
6606F: arch/arm/mach-s3c2410/bast-ide.c
6607F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006609TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006610M: Sekhar Nori <nsekhar@ti.com>
6611M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306612L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306613T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006614Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006615S: Supported
6616F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006617F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006618
Francois Romieu92aab3c2005-07-30 13:11:18 +02006619SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006620M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006621L: netdev@vger.kernel.org
6622S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006623F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006624
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006626M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006628L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006630F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006631
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006632SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006633M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006634L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006636F: Documentation/i2c/busses/i2c-sis96x
6637F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006638
Linus Torvalds1da177e2005-04-16 15:20:36 -07006639SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006640M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006643F: Documentation/fb/sisfb.txt
6644F: drivers/video/sis/
6645F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006646
6647SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006648M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006649W: http://www.winischhofer.at/linuxsisusbvga.shtml
6650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006651F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006652
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006653SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006654M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006655M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006656M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006657L: linux-mm@kvack.org
6658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006659F: include/linux/sl?b*.h
6660F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006661
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006662SLEEPABLE READ-COPY UPDATE (SRCU)
6663M: Lai Jiangshan <laijs@cn.fujitsu.com>
6664M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6665W: http://www.rdrop.com/users/paulmck/RCU/
6666S: Supported
6667T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6668F: include/linux/srcu*
6669F: kernel/srcu*
6670
Casey Schaufler66372842012-05-23 18:34:52 -07006671SMACK SECURITY MODULE
6672M: Casey Schaufler <casey@schaufler-ca.com>
6673L: linux-security-module@vger.kernel.org
6674W: http://schaufler-ca.com
6675T: git git://git.gitorious.org/smack-next/kernel.git
6676S: Maintained
6677F: Documentation/security/Smack.txt
6678F: security/smack/
6679
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006681M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006682S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006683F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006684
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006685SMM665 HARDWARE MONITOR DRIVER
6686M: Guenter Roeck <linux@roeck-us.net>
6687L: lm-sensors@lm-sensors.org
6688S: Maintained
6689F: Documentation/hwmon/smm665
6690F: drivers/hwmon/smm665.c
6691
Steve Glendinning9df73052010-08-14 21:08:54 +02006692SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006693M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006694L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006695S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006696F: Documentation/hwmon/emc2103
6697F: drivers/hwmon/emc2103.c
6698
Hans de Goedea98d5062011-03-21 17:59:36 +01006699SMSC SCH5627 HARDWARE MONITOR DRIVER
6700M: Hans de Goede <hdegoede@redhat.com>
6701L: lm-sensors@lm-sensors.org
6702S: Supported
6703F: Documentation/hwmon/sch5627
6704F: drivers/hwmon/sch5627.c
6705
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006706SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006707M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006708L: lm-sensors@lm-sensors.org
6709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006710F: Documentation/hwmon/smsc47b397
6711F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006712
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006713SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006714M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006715L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006717F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006718F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006719
Steve Glendinning2cb37722008-12-11 20:54:30 -08006720SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006721M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006722L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006723S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006724F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006725
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006726SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006727M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006728L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006729S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006730F: drivers/video/smscufx.c
6731
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006732SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006733M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006734L: linux-altix@sgi.com
6735L: linux-ia64@vger.kernel.org
6736W: http://www.sgi.com/altix
6737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006738F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006739
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006740SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006741M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006742L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006743T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006744S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006745F: include/media/soc*
6746F: drivers/media/i2c/soc_camera/
6747F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006748
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006749SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006750M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006752F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006753
Linus Torvalds1da177e2005-04-16 15:20:36 -07006754SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006755M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006756L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006757S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006758F: drivers/md/
6759F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760
Linus Torvalds1da177e2005-04-16 15:20:36 -07006761SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006762M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006763L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006765F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006766
Michael Buesch61e115a2007-09-18 15:12:50 -04006767SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006768M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006769L: netdev@vger.kernel.org
6770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006771F: drivers/ssb/
6772F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006773
Linus Torvalds1da177e2005-04-16 15:20:36 -07006774SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006775M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05006776L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006777W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006779F: Documentation/laptops/sony-laptop.txt
6780F: drivers/char/sonypi.c
6781F: drivers/platform/x86/sony-laptop.c
6782F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006783
Alex Dubovbaf85322008-02-09 10:20:54 -08006784SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006785M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006786W: http://tifmxx.berlios.de/
6787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006788F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006789
Linus Torvalds1da177e2005-04-16 15:20:36 -07006790SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006791M: Jaroslav Kysela <perex@perex.cz>
6792M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006793L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006794W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006795T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006796T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006798F: Documentation/sound/
6799F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006800F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006801
Mark Brownbd903bd2008-11-19 19:16:05 +00006802SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006803M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006804M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006805T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006806L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006807W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006808S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006809F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006810F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006811
Sam Ravnborg473321f2009-01-04 15:47:49 -08006812SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006813M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006814L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006815Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006816T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6817T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006819F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006820F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006821
David S. Miller6404fcc2010-03-16 01:00:17 -07006822SPARC SERIAL DRIVERS
6823M: "David S. Miller" <davem@davemloft.net>
6824L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006825T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6826T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07006827S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05006828F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006829F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006830F: drivers/tty/serial/sunhv.c
6831F: drivers/tty/serial/sunsab.c
6832F: drivers/tty/serial/sunsab.h
6833F: drivers/tty/serial/sunsu.c
6834F: drivers/tty/serial/sunzilog.c
6835F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006836
Christopher Li389325b2012-04-05 14:25:14 -07006837SPARSE CHECKER
6838M: "Christopher Li" <sparse@chrisli.org>
6839L: linux-sparse@vger.kernel.org
6840W: https://sparse.wiki.kernel.org/
6841T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
6842T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
6843S: Maintained
6844F: include/linux/compiler.h
6845
viresh kumarfc0c1952010-04-01 12:31:21 +01006846SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006847M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306848M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006849L: spear-devel@list.st.com
6850L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006851W: http://www.st.com/spear
6852S: Maintained
6853F: arch/arm/plat-spear/
6854
Viresh Kumar71e09a92012-04-20 22:39:48 +05306855SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006856M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306857M: Shiraz Hashim <shiraz.hashim@st.com>
6858L: spear-devel@list.st.com
6859L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6860W: http://www.st.com/spear
6861S: Maintained
6862F: arch/arm/mach-spear13xx/
6863
viresh kumarfc0c1952010-04-01 12:31:21 +01006864SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006865M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306866M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006867L: spear-devel@list.st.com
6868L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006869W: http://www.st.com/spear
6870S: Maintained
6871F: arch/arm/mach-spear3xx/
6872
6873SPEAR6XX MACHINE SUPPORT
6874M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306875M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006876M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006877L: spear-devel@list.st.com
6878L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006879W: http://www.st.com/spear
6880S: Maintained
6881F: arch/arm/mach-spear6xx/
6882
6883SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006884M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006885L: spear-devel@list.st.com
6886L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006887W: http://www.st.com/spear
6888S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05306889F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01006890
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006891SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006892M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006893L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006894Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006895T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006897F: Documentation/spi/
6898F: drivers/spi/
6899F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006900
Jim Lewis2752e402006-09-29 02:01:19 -07006901SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006902M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6903M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07006904L: netdev@vger.kernel.org
6905S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006906F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006907F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07006908
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006909SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006910M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006911L: linuxppc-dev@lists.ozlabs.org
6912L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006913W: http://www.ibm.com/developerworks/power/cell/
6914S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006915F: Documentation/filesystems/spufs.txt
6916F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006917
Phillip Lougherfc555842009-01-05 08:46:29 +00006918SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006919M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006920L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6921W: http://squashfs.org.uk
6922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006923F: Documentation/filesystems/squashfs.txt
6924F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006925
Linus Torvalds1da177e2005-04-16 15:20:36 -07006926SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006927M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006929F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930
Linus Torvalds26e9a392008-10-17 09:50:12 -07006931STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08006932M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08006933L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08006934S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006935
Linus Torvalds26e9a392008-10-17 09:50:12 -07006936STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08006937M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006938T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006939L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08006940S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006941F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006942
Joe Perchesc8c8b102011-07-05 09:42:12 -07006943STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6944M: Henk de Groot <pe1dnn@amsat.org>
6945S: Odd Fixes
6946F: drivers/staging/wlags49_h2/
6947F: drivers/staging/wlags49_h25/
6948
Joe Perchesc9555152011-07-05 09:42:01 -07006949STAGING - ASUS OLED
6950M: Jakub Schmidtke <sjakub@gmail.com>
6951S: Odd Fixes
6952F: drivers/staging/asus_oled/
6953
Joe Perchesebd3d012011-07-05 09:42:02 -07006954STAGING - COMEDI
6955M: Ian Abbott <abbotti@mev.co.uk>
6956M: Mori Hess <fmhess@users.sourceforge.net>
6957S: Odd Fixes
6958F: drivers/staging/comedi/
6959
Joe Perches8ca572c2011-07-05 09:42:03 -07006960STAGING - CRYSTAL HD VIDEO DECODER
6961M: Naren Sankar <nsankar@broadcom.com>
6962M: Jarod Wilson <jarod@wilsonet.com>
6963M: Scott Davilla <davilla@4pi.com>
6964M: Manu Abraham <abraham.manu@gmail.com>
6965S: Odd Fixes
6966F: drivers/staging/crystalhd/
6967
Joe Perches0f16ffc2011-07-05 09:42:04 -07006968STAGING - ECHO CANCELLER
6969M: Steve Underwood <steveu@coppice.org>
6970M: David Rowe <david@rowetel.com>
6971S: Odd Fixes
6972F: drivers/staging/echo/
6973
Mark Einon8dc2bbe72011-08-29 18:42:37 +01006974STAGING - ET131X NETWORK DRIVER
6975M: Mark Einon <mark.einon@gmail.com>
6976S: Odd Fixes
6977F: drivers/staging/et131x/
6978
Joe Perchesa0138162011-07-05 15:21:34 -07006979STAGING - FLARION FT1000 DRIVERS
6980M: Marek Belisko <marek.belisko@gmail.com>
6981S: Odd Fixes
6982F: drivers/staging/ft1000/
6983
Joe Perchesec3fab92011-07-05 09:42:05 -07006984STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6985M: David Täht <d@teklibre.com>
6986S: Odd Fixes
6987F: drivers/staging/frontier/
6988
Joe Perches6c1bb422011-07-05 09:42:07 -07006989STAGING - INDUSTRIAL IO
6990M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07006991L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07006992S: Odd Fixes
6993F: drivers/staging/iio/
6994
Joe Perchesa0138162011-07-05 15:21:34 -07006995STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
6996M: Jarod Wilson <jarod@wilsonet.com>
6997W: http://www.lirc.org/
6998S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006999F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007000
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007001STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007002M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007003M: Marc Dietrich <marvin24@gmx.de>
7004L: ac100@lists.launchpad.net (moderated for non-subscribers)
7005S: Maintained
7006F: drivers/staging/nvec/
7007
Joe Perchesa0138162011-07-05 15:21:34 -07007008STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7009M: Andres Salomon <dilinger@queued.net>
7010M: Chris Ball <cjb@laptop.org>
7011M: Jon Nettleton <jon.nettleton@gmail.com>
7012W: http://wiki.laptop.org/go/DCON
7013S: Odd Fixes
7014F: drivers/staging/olpc_dcon/
7015
Chris Kelly94cfdd12012-03-14 10:55:42 +00007016STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007017M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007018M: Chris Kelly <ckelly@ozmodevices.com>
7019S: Maintained
7020F: drivers/staging/ozwpan/
7021
Joe Perchesa0138162011-07-05 15:21:34 -07007022STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007023M: Willy Tarreau <willy@meta-x.org>
7024S: Odd Fixes
7025F: drivers/staging/panel/
7026
Joe Perchesa0138162011-07-05 15:21:34 -07007027STAGING - REALTEK RTL8712U DRIVERS
7028M: Larry Finger <Larry.Finger@lwfinger.net>
7029M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7030S: Odd Fixes
7031F: drivers/staging/rtl8712/
7032
Joe Perches9629fa82011-07-05 09:42:09 -07007033STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7034M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7035S: Odd Fixes
7036F: drivers/staging/sm7xx/
7037
Joe Perchesa0138162011-07-05 15:21:34 -07007038STAGING - SOFTLOGIC 6x10 MPEG CODEC
7039M: Ben Collins <bcollins@bluecherry.net>
7040S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007041F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007042
7043STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7044M: William Hubbs <w.d.hubbs@gmail.com>
7045M: Chris Brannon <chris@the-brannons.com>
7046M: Kirk Reiser <kirk@braille.uwo.ca>
7047M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7048L: speakup@braille.uwo.ca
7049W: http://www.linux-speakup.org/
7050S: Odd Fixes
7051F: drivers/staging/speakup/
7052
7053STAGING - TI DSP BRIDGE DRIVERS
7054M: Omar Ramirez Luna <omar.ramirez@ti.com>
7055S: Odd Fixes
7056F: drivers/staging/tidspbridge/
7057
Joe Perchesa0138162011-07-05 15:21:34 -07007058STAGING - USB ENE SM/MS CARD READER DRIVER
7059M: Al Cho <acho@novell.com>
7060S: Odd Fixes
7061F: drivers/staging/keucr/
7062
Joe Perchesb3e871c2011-07-05 09:42:10 -07007063STAGING - VIA VT665X DRIVERS
7064M: Forest Bond <forest@alittletooquiet.net>
7065S: Odd Fixes
7066F: drivers/staging/vt665?/
7067
Joe Perches81a9a522011-07-05 09:42:11 -07007068STAGING - WINBOND IS89C35 WLAN USB DRIVER
7069M: Pavel Machek <pavel@ucw.cz>
7070S: Odd Fixes
7071F: drivers/staging/winbond/
7072
Joe Perches709bcb02011-07-05 09:42:13 -07007073STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007074M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007075S: Odd Fixes
7076F: drivers/staging/xgifb/
7077
Linus Torvalds1da177e2005-04-16 15:20:36 -07007078STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007079M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007080S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007081F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007082
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007083SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007084M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007085W: http://sammy.net/sun3/
7086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007087F: arch/m68k/kernel/*sun3*
7088F: arch/m68k/sun3*/
7089F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007090F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007091
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007092SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007093M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007094L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007095W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007096Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007097T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007098S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007099F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007100F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007101F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007102
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007103SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007104M: Len Brown <len.brown@intel.com>
7105M: Pavel Machek <pavel@ucw.cz>
7106M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007107L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007108S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007109F: Documentation/power/
7110F: arch/x86/kernel/acpi/
7111F: drivers/base/power/
7112F: kernel/power/
7113F: include/linux/suspend.h
7114F: include/linux/freezer.h
7115F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007116
7117SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007118M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007119L: linux-video@atrey.karlin.mff.cuni.cz
7120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007121F: Documentation/svga.txt
7122F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007123
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007124SWIOTLB SUBSYSTEM
7125M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7126L: linux-kernel@vger.kernel.org
7127S: Supported
7128F: lib/swiotlb.c
7129F: arch/*/kernel/pci-swiotlb.c
7130F: include/linux/swiotlb.h
7131
Linus Torvalds1da177e2005-04-16 15:20:36 -07007132SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007133M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007135F: Documentation/filesystems/sysv-fs.txt
7136F: fs/sysv/
7137F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007138
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007139TARGET SUBSYSTEM
7140M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7141L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007142L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007143L: http://groups.google.com/group/linux-iscsi-target-dev
7144W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007145T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007146S: Supported
7147F: drivers/target/
7148F: include/target/
7149F: Documentation/target/
7150
Alan Cox4e688522008-04-30 00:52:11 -07007151TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007152M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007154F: Documentation/accounting/taskstats*
7155F: include/linux/taskstats*
7156F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007157
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007158TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007159M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007160L: netdev@vger.kernel.org
7161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007162F: include/linux/pkt_cls.h
7163F: include/net/pkt_cls.h
7164F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007165
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007166TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007167M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7168M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007169W: http://tcp-lp-mod.sourceforge.net/
7170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007171F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007172
Antti Palosaari91952bc2012-10-01 12:28:46 -03007173TDA10071 MEDIA DRIVER
7174M: Antti Palosaari <crope@iki.fi>
7175L: linux-media@vger.kernel.org
7176W: http://linuxtv.org/
7177W: http://palosaari.fi/linux/
7178Q: http://patchwork.linuxtv.org/project/linux-media/list/
7179T: git git://linuxtv.org/anttip/media_tree.git
7180S: Maintained
7181F: drivers/media/dvb-frontends/tda10071*
7182
7183TDA18212 MEDIA DRIVER
7184M: Antti Palosaari <crope@iki.fi>
7185L: linux-media@vger.kernel.org
7186W: http://linuxtv.org/
7187W: http://palosaari.fi/linux/
7188Q: http://patchwork.linuxtv.org/project/linux-media/list/
7189T: git git://linuxtv.org/anttip/media_tree.git
7190S: Maintained
7191F: drivers/media/tuners/tda18212*
7192
7193TDA18218 MEDIA DRIVER
7194M: Antti Palosaari <crope@iki.fi>
7195L: linux-media@vger.kernel.org
7196W: http://linuxtv.org/
7197W: http://palosaari.fi/linux/
7198Q: http://patchwork.linuxtv.org/project/linux-media/list/
7199T: git git://linuxtv.org/anttip/media_tree.git
7200S: Maintained
7201F: drivers/media/tuners/tda18218*
7202
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007203TDA18271 MEDIA DRIVER
7204M: Michael Krufky <mkrufky@linuxtv.org>
7205L: linux-media@vger.kernel.org
7206W: http://linuxtv.org/
7207W: http://github.com/mkrufky
7208Q: http://patchwork.linuxtv.org/project/linux-media/list/
7209T: git git://linuxtv.org/mkrufky/tuners.git
7210S: Maintained
7211F: drivers/media/tuners/tda18271*
7212
Michael Krufkye48307a2012-10-02 00:56:33 -03007213TDA827x MEDIA DRIVER
7214M: Michael Krufky <mkrufky@linuxtv.org>
7215L: linux-media@vger.kernel.org
7216W: http://linuxtv.org/
7217W: http://github.com/mkrufky
7218Q: http://patchwork.linuxtv.org/project/linux-media/list/
7219T: git git://linuxtv.org/mkrufky/tuners.git
7220S: Maintained
7221F: drivers/media/tuners/tda8290.*
7222
Michael Krufky66cf9212012-10-02 00:56:28 -03007223TDA8290 MEDIA DRIVER
7224M: Michael Krufky <mkrufky@linuxtv.org>
7225L: linux-media@vger.kernel.org
7226W: http://linuxtv.org/
7227W: http://github.com/mkrufky
7228Q: http://patchwork.linuxtv.org/project/linux-media/list/
7229T: git git://linuxtv.org/mkrufky/tuners.git
7230S: Maintained
7231F: drivers/media/tuners/tda8290.*
7232
Jiri Pirko3d249d42011-11-11 22:16:48 +00007233TEAM DRIVER
7234M: Jiri Pirko <jpirko@redhat.com>
7235L: netdev@vger.kernel.org
7236S: Supported
7237F: drivers/net/team/
7238F: include/linux/if_team.h
7239
Erik Gilling84b94142010-06-09 15:35:53 -07007240TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007241M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007242L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007243Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7244T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007245S: Supported
7246F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007247F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007248F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007249
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007250TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007251M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007252L: netdev@vger.kernel.org
7253S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007254F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007255
Alan Cox4e688522008-04-30 00:52:11 -07007256Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007257M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007258S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007259F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007260
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007261TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007262M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007263M: Max Filippov <jcmvbkbc@gmail.com>
7264L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007266F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007267
Zhang Ruid3fb6952012-11-15 08:58:27 +08007268THERMAL
7269M: Zhang Rui <rui.zhang@intel.com>
7270L: linux-pm@vger.kernel.org
7271T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7272S: Supported
7273F: drivers/thermal/
7274F: include/linux/thermal.h
7275
Alan Cox4e688522008-04-30 00:52:11 -07007276THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007277M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007278L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007279L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007280W: http://ibm-acpi.sourceforge.net
7281W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007282T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007284F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007285
Alex Dubov4020f2d2006-10-04 02:15:37 -07007286TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007287M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007289F: drivers/misc/tifm*
7290F: drivers/mmc/host/tifm_sd.c
7291F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007292
M R Swami Reddy152ad442012-04-02 20:02:31 +05307293TI LM49xxx FAMILY ASoC CODEC DRIVERS
7294M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307295M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307296L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7297S: Maintained
7298F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307299F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307300
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007301TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007302M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007303L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7304S: Maintained
7305F: sound/soc/codecs/twl4030*
7306
Luciano Coelho90921012011-11-20 21:40:41 +02007307TI WILINK WIRELESS DRIVERS
7308M: Luciano Coelho <coelho@ti.com>
7309L: linux-wireless@vger.kernel.org
7310W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7311W: http://wireless.kernel.org/en/users/Drivers/wl1251
7312T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7313S: Maintained
7314F: drivers/net/wireless/ti/
7315F: include/linux/wl12xx.h
7316
Per Lidene86eaa32006-01-12 16:45:18 +01007317TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007318M: Jon Maloy <jon.maloy@ericsson.com>
7319M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007320L: netdev@vger.kernel.org (core kernel code)
7321L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007322W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007324F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007325F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007326
Chris Metcalf867e3592010-05-28 23:09:12 -04007327TILE ARCHITECTURE
7328M: Chris Metcalf <cmetcalf@tilera.com>
7329W: http://www.tilera.com/scm/
7330S: Supported
7331F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007332F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007333F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007334F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007335
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007337M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007338L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007339W: http://sourceforge.net/projects/tlan/
7340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007341F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007342F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007343
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007344TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007345M: Kentaro Takeda <takedakn@nttdata.co.jp>
7346M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007347L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7348L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007349L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7350L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7351W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007352T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007354F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007355
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007356TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007357M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007358L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007359S: Maintained
7360F: drivers/platform/x86/topstar-laptop.c
7361
Linus Torvalds1da177e2005-04-16 15:20:36 -07007362TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007363L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007364S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007365F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007366
7367TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007368M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007369L: tlinux-users@tce.toshiba-dme.co.jp
7370W: http://www.buzzard.org.uk/toshiba/
7371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007372F: drivers/char/toshiba.c
7373F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007374
Pierre Ossmand719f902009-03-24 21:06:09 +01007375TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007376M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007377M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007378L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007379S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007380F: drivers/mmc/host/tmio_mmc*
7381F: drivers/mmc/host/sh_mobile_sdhi.c
7382F: include/linux/mmc/tmio.h
7383F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007384
Hugh Dickins98f32602009-05-21 20:33:58 +01007385TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007386M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007387L: linux-mm@kvack.org
7388S: Maintained
7389F: include/linux/shmem_fs.h
7390F: mm/shmem.c
7391
Alan Cox4e688522008-04-30 00:52:11 -07007392TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007393M: Kent Yoder <key@linux.vnet.ibm.com>
7394M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007395W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007396M: Marcel Selhorst <tpmdd@selhorst.net>
7397M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007398W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007399L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007401F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007402
Joe Perchesd6f005a2009-10-26 16:49:40 -07007403TRACING
7404M: Steven Rostedt <rostedt@goodmis.org>
7405M: Frederic Weisbecker <fweisbec@gmail.com>
7406M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007407T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007408S: Maintained
7409F: Documentation/trace/ftrace.txt
7410F: arch/*/*/*/ftrace.h
7411F: arch/*/kernel/ftrace.c
7412F: include/*/ftrace.h
7413F: include/linux/trace*.h
7414F: include/trace/
7415F: kernel/trace/
7416
Linus Torvalds1da177e2005-04-16 15:20:36 -07007417TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007418M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007419T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007420S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007421K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007422
Alan Cox4e688522008-04-30 00:52:11 -07007423TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007424M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7425S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007426T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007427F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007428F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007429F: include/linux/serial_core.h
7430F: include/linux/serial.h
7431F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007432
Antti Palosaari91952bc2012-10-01 12:28:46 -03007433TUA9001 MEDIA DRIVER
7434M: Antti Palosaari <crope@iki.fi>
7435L: linux-media@vger.kernel.org
7436W: http://linuxtv.org/
7437W: http://palosaari.fi/linux/
7438Q: http://patchwork.linuxtv.org/project/linux-media/list/
7439T: git git://linuxtv.org/anttip/media_tree.git
7440S: Maintained
7441F: drivers/media/tuners/tua9001*
7442
Grant Grundler740db6d2008-02-17 11:53:49 -07007443TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007444M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007445L: netdev@vger.kernel.org
7446S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007447F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007448
7449TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007450M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007451L: vtun@office.satix.net
7452W: http://vtun.sourceforge.net/tun
7453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007454F: Documentation/networking/tuntap.txt
7455F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007456
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007457TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007458M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007460F: drivers/tc/
7461F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007462
Linus Torvalds1da177e2005-04-16 15:20:36 -07007463U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007464M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007465L: linux-scsi@vger.kernel.org
7466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007467F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007468
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007469UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007470M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007471M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007472L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007473T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007474W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007476F: Documentation/filesystems/ubifs.txt
7477F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007478
Alan Coxcc2020e2008-05-19 14:21:51 +01007479UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007480M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007481W: http://www.uclinux.org/
7482L: uclinux-dev@uclinux.org (subscribers-only)
7483S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007484F: arch/m68k/*/*_no.*
7485F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007486
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007487UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007488M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007489W: http://uclinux-h8.sourceforge.jp/
7490S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007491F: arch/h8300/
7492F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007493F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007494
Linus Torvalds1da177e2005-04-16 15:20:36 -07007495UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007496M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007498F: Documentation/filesystems/udf.txt
7499F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007500
Alan Coxcc2020e2008-05-19 14:21:51 +01007501UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007502M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007504F: Documentation/filesystems/ufs.txt
7505F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007506
David Herrmann0a09d3a2012-06-10 15:16:28 +02007507UHID USERSPACE HID IO DRIVER:
7508M: David Herrmann <dh.herrmann@googlemail.com>
7509L: linux-input@vger.kernel.org
7510S: Maintained
7511F: drivers/hid/uhid.c
7512F: include/linux/uhid.h
7513
David Vrabel18332a82008-09-17 16:34:44 +01007514ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007515L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007516S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007517F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007518F: include/linux/uwb.h
7519F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007520
GuanXuetaob31d8272011-01-16 00:35:49 +08007521UNICORE32 ARCHITECTURE:
7522M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7523W: http://mprc.pku.edu.cn/~guanxuetao/linux
7524S: Maintained
7525T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7526F: arch/unicore32/
7527
Tony Finchd8379ab2009-11-27 15:50:30 +00007528UNIFDEF
7529M: Tony Finch <dot@dotat.at>
7530W: http://dotat.at/prog/unifdef
7531S: Maintained
7532F: scripts/unifdef.c
7533
Linus Torvalds1da177e2005-04-16 15:20:36 -07007534UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007535M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007536W: http://www.kernel.dk
7537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007538F: Documentation/cdrom/
7539F: drivers/cdrom/cdrom.c
7540F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007541
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307542UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7543M: Vinayak Holikatti <vinholikatti@gmail.com>
7544M: Santosh Y <santoshsy@gmail.com>
7545L: linux-scsi@vger.kernel.org
7546S: Supported
7547F: Documentation/scsi/ufs.txt
7548F: drivers/scsi/ufs/
7549
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007550UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007551M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007552W: http://www.linux-mtd.infradead.org/
7553L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007554T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007555S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007556F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007557F: include/linux/mtd/ubi.h
7558F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007559
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007560UNSORTED BLOCK IMAGES (UBI) Fastmap
7561M: Richard Weinberger <richard@nod.at>
7562L: linux-mtd@lists.infradead.org
7563S: Maintained
7564F: drivers/mtd/ubi/fastmap.c
7565
Linus Torvalds1da177e2005-04-16 15:20:36 -07007566USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007567M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007568L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007570F: Documentation/usb/acm.txt
7571F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007572
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007573USB ATTACHED SCSI
7574M: Matthew Wilcox <willy@linux.intel.com>
7575M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7576L: linux-usb@vger.kernel.org
7577L: linux-scsi@vger.kernel.org
7578S: Supported
7579F: drivers/usb/storage/uas.c
7580
Linus Torvalds1da177e2005-04-16 15:20:36 -07007581USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007582M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007583L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007584S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007585F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007586
Linus Torvalds1da177e2005-04-16 15:20:36 -07007587USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007588M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007589L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007591F: drivers/net/usb/cdc_*.c
7592F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007594USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007595M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007596L: linux-usb@vger.kernel.org
7597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007598F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007599
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007600USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007601M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007602L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007603W: http://www.linux-usb.org/usbnet
7604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007605F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007606
Alan Coxcc2020e2008-05-19 14:21:51 +01007607USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007608M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007609L: rio500-users@lists.sourceforge.net
7610W: http://rio500.sourceforge.net
7611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007612F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007613
Linus Torvalds1da177e2005-04-16 15:20:36 -07007614USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007615M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007616L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007618F: Documentation/usb/ehci.txt
7619F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007620
David Brownell69ae9e32006-11-14 02:03:31 -08007621USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007622M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007623L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007624W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007625T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007627F: drivers/usb/gadget/
7628F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007629
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007630USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007631M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007632L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007633T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007634S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007635F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007636F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007637
matt mooney857aab32011-06-17 15:50:46 -07007638USB/IP DRIVERS
7639M: Matt Mooney <mfm@muteddisk.com>
7640L: linux-usb@vger.kernel.org
7641S: Maintained
7642F: drivers/staging/usbip/
7643
Olav Kongas959eea22005-11-03 17:38:14 +02007644USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007645M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007646L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007648F: drivers/usb/host/isp116x*
7649F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007650
Linus Torvalds1da177e2005-04-16 15:20:36 -07007651USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007652M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007653L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007655F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007656
7657USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007658M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007659L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007660L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007661S: Maintained
7662W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007663F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007664
Clemens Ladischaf399172011-01-10 16:32:54 +01007665USB MIDI DRIVER
7666M: Clemens Ladisch <clemens@ladisch.de>
7667L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7668T: git git://git.alsa-project.org/alsa-kernel.git
7669S: Maintained
7670F: sound/usb/midi.*
7671
Linus Torvalds1da177e2005-04-16 15:20:36 -07007672USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007673M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007674L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007676F: Documentation/usb/ohci.txt
7677F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007678
Matthias Urlichsba460e42005-07-14 00:33:47 -07007679USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007680M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007681L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007683F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007684
Linus Torvalds1da177e2005-04-16 15:20:36 -07007685USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007686M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007687L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007688L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689W: http://pegasus2.sourceforge.net/
7690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007691F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007692
Felipe Balbid3ad5582012-05-21 16:24:49 +03007693USB PHY LAYER
7694M: Felipe Balbi <balbi@ti.com>
7695L: linux-usb@vger.kernel.org
7696T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7697S: Maintained
7698F: drivers/usb/phy/
7699F: drivers/usb/otg/
7700
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007701USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007702M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007703L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007704S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007705F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007706
7707USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007708M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007709L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007710L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007711W: http://pegasus2.sourceforge.net/
7712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007713F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007714
Alan Cox4e688522008-04-30 00:52:11 -07007715USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007716M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007717L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007719F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007720
7721USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007722M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007723L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007724S: Maintained
7725W: http://geocities.com/i0xox0i
7726W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007727F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007728
Linus Torvalds1da177e2005-04-16 15:20:36 -07007729USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007730M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007731W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007733F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007734
7735USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007736M: Peter Berger <pberger@brimson.com>
7737M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007738L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007740F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007741
7742USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007743M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007744L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007745S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007746F: Documentation/usb/usb-serial.txt
7747F: drivers/usb/serial/generic.c
7748F: drivers/usb/serial/usb-serial.c
7749F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007750
Linus Torvalds1da177e2005-04-16 15:20:36 -07007751USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007752M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007753L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007755F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007756
7757USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007758M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007759L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007761F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007762
7763USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007764M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007765L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007766W: http://www.connecttech.com
7767S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007768F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007769
Steve Glendinningb3f0db12012-08-15 21:53:38 +00007770USB SMSC75XX ETHERNET DRIVER
7771M: Steve Glendinning <steve.glendinning@shawell.net>
7772L: netdev@vger.kernel.org
7773S: Maintained
7774F: drivers/net/usb/smsc75xx.*
7775
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007776USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007777M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007778L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007780F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007781
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007782USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007783M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007784L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007785L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007786T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007787W: http://www.linux-projects.org
7788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007789F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007790F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007791
7792USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007793M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007794L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007795W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007796T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007797S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007798F: Documentation/usb/
7799F: drivers/net/usb/
7800F: drivers/usb/
7801F: include/linux/usb.h
7802F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007803
7804USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007805M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007806L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007808F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007809
David Brownell69ae9e32006-11-14 02:03:31 -08007810USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02007811M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007812L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007813W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007815F: drivers/net/usb/usbnet.c
7816F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007817
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007818USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007819M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03007820L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007821L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007822T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007823W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007824S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007825F: drivers/media/usb/uvc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007826
Laurent Pinchart8282da42012-10-04 02:32:42 +02007827USB WEBCAM GADGET
7828M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7829L: linux-usb@vger.kernel.org
7830S: Maintained
7831F: drivers/usb/gadget/*uvc*.c
7832F: drivers/usb/gadget/webcam.c
7833
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007834USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007835M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007836L: linux-wireless@vger.kernel.org
7837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007838F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007839
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007840USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007841M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007842L: linux-usb@vger.kernel.org
7843S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007844F: drivers/usb/host/xhci*
7845F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007846
Linus Torvalds1da177e2005-04-16 15:20:36 -07007847USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007848L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007849W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007850S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007851F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007852
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007853USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007854M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007855L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007856L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007857T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007858W: http://royale.zerezo.com/zr364xx/
7859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007860F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007861F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007862
Randy Dunlape7839f22008-10-12 16:11:45 -07007863USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007864M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007865M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007866L: user-mode-linux-devel@lists.sourceforge.net
7867L: user-mode-linux-user@lists.sourceforge.net
7868W: http://user-mode-linux.sourceforge.net
7869S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007870F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007871F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02007872F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07007873F: fs/hostfs/
7874F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007875
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007876USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007877M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08007878M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007880F: Documentation/DocBook/uio-howto.tmpl
7881F: drivers/uio/
7882F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007883
Karel Zak256cccb2012-06-01 10:13:09 +02007884UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007885M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02007886L: util-linux@vger.kernel.org
7887W: http://en.wikipedia.org/wiki/Util-linux
7888T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007889S: Maintained
7890
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007891UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007892M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007893L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007894W: http://dev.gentoo.org/~spock/projects/uvesafb/
7895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007896F: Documentation/fb/uvesafb.txt
7897F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007898
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007899VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007900M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007902F: Documentation/filesystems/vfat.txt
7903F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007904
Alex Williamsoncba33452012-07-31 08:16:22 -06007905VFIO DRIVER
7906M: Alex Williamson <alex.williamson@redhat.com>
7907L: kvm@vger.kernel.org
7908S: Maintained
7909F: Documentation/vfio.txt
7910F: drivers/vfio/
7911F: include/linux/vfio.h
7912
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007913VIDEOBUF2 FRAMEWORK
7914M: Pawel Osciak <pawel@osciak.com>
7915M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007916M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007917L: linux-media@vger.kernel.org
7918S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007919F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007920F: include/media/videobuf2-*
7921
Amit Shah9a824462010-03-23 18:23:09 +05307922VIRTIO CONSOLE DRIVER
7923M: Amit Shah <amit.shah@redhat.com>
7924L: virtualization@lists.linux-foundation.org
7925S: Maintained
7926F: drivers/char/virtio_console.c
7927F: include/linux/virtio_console.h
7928
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307929VIRTIO CORE, NET AND BLOCK DRIVERS
7930M: Rusty Russell <rusty@rustcorp.com.au>
7931M: "Michael S. Tsirkin" <mst@redhat.com>
7932L: virtualization@lists.linux-foundation.org
7933S: Maintained
7934F: drivers/virtio/
7935F: drivers/net/virtio_net.c
7936F: drivers/block/virtio_blk.c
7937F: include/linux/virtio_*.h
7938
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007939VIRTIO HOST (VHOST)
7940M: "Michael S. Tsirkin" <mst@redhat.com>
7941L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007942L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007943L: netdev@vger.kernel.org
7944S: Maintained
7945F: drivers/vhost/
7946F: include/linux/vhost.h
7947
Linus Torvalds1da177e2005-04-16 15:20:36 -07007948VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007949M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007950S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007951F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007952
Harald Weltef0bf7f62009-06-17 20:22:39 +02007953VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007954M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007955M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007956S: Maintained
7957F: drivers/mmc/host/via-sdmmc.c
7958
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007959VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007960M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007961L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007962S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007963F: include/linux/via-core.h
7964F: include/linux/via-gpio.h
7965F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007966F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007967
Francois Romieu01f20732007-01-26 00:57:17 -08007968VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007969M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007970L: netdev@vger.kernel.org
7971S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007972F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007973
Patrick McHardybe7f8272007-10-23 20:26:36 -07007974VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007975M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007976L: netdev@vger.kernel.org
7977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007978F: drivers/net/macvlan.c
7979F: include/linux/if_*vlan.h
7980F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07007981
Florian Fainelli55e331c2009-06-16 15:33:53 -07007982VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007983M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08007984L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07007985S: Maintained
7986F: drivers/vlynq/vlynq.c
7987F: include/linux/vlynq.h
7988
Martyn Welch390beae2012-05-03 17:52:36 +01007989VME SUBSYSTEM
7990M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02007991M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01007992M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7993L: devel@driverdev.osuosl.org
7994S: Maintained
7995T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7996F: Documentation/vme_api.txt
7997F: drivers/staging/vme/
7998F: drivers/vme/
7999F: include/linux/vme*
8000
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008001VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008002M: Shreyas Bhatewara <sbhatewara@vmware.com>
8003M: "VMware, Inc." <pv-drivers@vmware.com>
8004L: netdev@vger.kernel.org
8005S: Maintained
8006F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008007
Alok Kataria851b1642009-10-13 14:51:05 -07008008VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008009M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008010M: VMware PV-Drivers <pv-drivers@vmware.com>
8011L: linux-scsi@vger.kernel.org
8012S: Maintained
8013F: drivers/scsi/vmw_pvscsi.c
8014F: drivers/scsi/vmw_pvscsi.h
8015
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008016VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008017M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008018M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008019W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008020W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008021T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008022S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008023F: drivers/regulator/
8024F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008025
Juerg Haefligerab413192006-09-24 20:54:04 +02008026VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008027M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008028L: lm-sensors@lm-sensors.org
8029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008030F: Documentation/hwmon/vt1211
8031F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008032
Roger Lucas1de9e372005-11-26 20:20:05 +01008033VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008034M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008035L: lm-sensors@lm-sensors.org
8036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008037F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008038
Tony Olech88095e72011-05-14 16:48:13 -04008039VUB300 USB to SDIO/SD/MMC bridge chip
8040M: Tony Olech <tony.olech@elandigitalsystems.com>
8041L: linux-mmc@vger.kernel.org
8042L: linux-usb@vger.kernel.org
8043S: Supported
8044F: drivers/mmc/host/vub300.c
8045
Linus Torvalds1da177e2005-04-16 15:20:36 -07008046W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008047M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008049F: Documentation/w1/
8050F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008051
Charles Spirakis13927072006-07-05 18:05:15 +02008052W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008053M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008054L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008056F: Documentation/hwmon/w83791d
8057F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008058
Rudolf Marek61db0112006-12-12 18:18:30 +01008059W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008060M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008061L: lm-sensors@lm-sensors.org
8062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008063F: Documentation/hwmon/w83793
8064F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008065
Jean Delvaree3760b42010-10-28 20:31:49 +02008066W83795 HARDWARE MONITORING DRIVER
8067M: Jean Delvare <khali@linux-fr.org>
8068L: lm-sensors@lm-sensors.org
8069S: Maintained
8070F: drivers/hwmon/w83795.c
8071
Linus Torvalds1da177e2005-04-16 15:20:36 -07008072W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008073M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008075F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008076
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008077WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008078M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008079L: linux-watchdog@vger.kernel.org
8080W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008081T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008083F: Documentation/watchdog/
8084F: drivers/watchdog/
8085F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008086
Linus Torvalds1da177e2005-04-16 15:20:36 -07008087WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008088M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008089L: linux-scsi@vger.kernel.org
8090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008091F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008092
David Herrmannb22e00f2011-09-06 13:50:40 +02008093WIIMOTE HID DRIVER
8094M: David Herrmann <dh.herrmann@googlemail.com>
8095L: linux-input@vger.kernel.org
8096S: Maintained
8097F: drivers/hid/hid-wiimote*
8098
David Härdemane258b802009-09-21 17:04:53 -07008099WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008100M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008101S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008102F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008103
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008104WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008105M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008106M: linux-wimax@intel.com
8107L: wimax@linuxwimax.org
8108S: Supported
8109W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008110F: Documentation/wimax/README.wimax
8111F: include/linux/wimax.h
8112F: include/linux/wimax/debug.h
8113F: include/net/wimax.h
8114F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008115
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008116WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008117M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008119F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008120
Linus Torvalds1da177e2005-04-16 15:20:36 -07008121WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008122M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008123L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008124W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008126F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008127
Mark Brownfebf1df2008-04-02 00:51:09 -04008128WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008129M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8130M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008131L: linux-input@vger.kernel.org
8132T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8133W: http://opensource.wolfsonmicro.com/node/7
8134S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008135F: drivers/input/touchscreen/*wm97*
8136F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008137
Mark Brown055bcbc2010-08-13 14:18:12 +01008138WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008139M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008140L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008141T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008142T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008143W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008144S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008145F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008146F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008147F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008148F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008149F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008150F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008151F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008152F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008153F: drivers/input/misc/wm831x-on.c
8154F: drivers/input/touchscreen/wm831x-ts.c
8155F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008156F: drivers/mfd/arizona*
8157F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008158F: drivers/power/wm83*.c
8159F: drivers/rtc/rtc-wm83*.c
8160F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008161F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008162F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008163F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008164F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008165F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008166F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008167F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008168F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008169F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008170F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008171
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008172WORKQUEUE
8173M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008174T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8175S: Maintained
8176F: include/linux/workqueue.h
8177F: kernel/workqueue.c
8178F: Documentation/workqueue.txt
8179
Linus Torvalds1da177e2005-04-16 15:20:36 -07008180X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008181M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008182L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008183S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008184F: Documentation/networking/x25*
8185F: include/net/x25*
8186F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008187
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008188X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008189M: Thomas Gleixner <tglx@linutronix.de>
8190M: Ingo Molnar <mingo@redhat.com>
8191M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008192M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008193T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008195F: Documentation/x86/
8196F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008197
Matthew Garrettd0944852010-02-11 10:40:13 -05008198X86 PLATFORM DRIVERS
8199M: Matthew Garrett <mjg@redhat.com>
8200L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008201T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008202S: Maintained
8203F: drivers/platform/x86
8204
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008205X86 MCE INFRASTRUCTURE
8206M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008207M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008208L: linux-edac@vger.kernel.org
8209S: Maintained
8210F: arch/x86/kernel/cpu/mcheck/*
8211
Ian Campbellc4468082011-04-27 15:26:46 -07008212XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008213M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008214M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008215L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8216L: virtualization@lists.linux-foundation.org
8217S: Supported
8218F: arch/x86/xen/
8219F: drivers/*/xen-*front.c
8220F: drivers/xen/
8221F: arch/x86/include/asm/xen/
8222F: include/xen/
8223
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008224XEN HYPERVISOR ARM
8225M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8226L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8227S: Supported
8228F: arch/arm/xen/
8229F: arch/arm/include/asm/xen/
8230
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008231XEN NETWORK BACKEND DRIVER
8232M: Ian Campbell <ian.campbell@citrix.com>
8233L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8234L: netdev@vger.kernel.org
8235S: Supported
8236F: drivers/net/xen-netback/*
8237
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008238XEN PCI SUBSYSTEM
8239M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008240L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008241S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008242F: arch/x86/pci/*xen*
8243F: drivers/pci/*xen*
8244
8245XEN SWIOTLB SUBSYSTEM
8246M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008247L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008248S: Supported
8249F: arch/x86/xen/*swiotlb*
8250F: drivers/xen/*swiotlb*
8251
Linus Torvalds1da177e2005-04-16 15:20:36 -07008252XFS FILESYSTEM
8253P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008254M: Ben Myers <bpm@sgi.com>
8255M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008256M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008257L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008258W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008259T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008261F: Documentation/filesystems/xfs.txt
8262F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008263
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008264XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008265M: Anirudha Sarangi <anirudh@xilinx.com>
8266M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008267S: Maintained
8268F: drivers/net/ethernet/xilinx/xilinx_axienet*
8269
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008270XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008271M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008272W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008274F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008275
Peter Korsgaard238b8722006-12-06 20:35:17 -08008276XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008277M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008278L: linux-serial@vger.kernel.org
8279S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008280F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008281
Linus Torvalds1da177e2005-04-16 15:20:36 -07008282YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008283M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008284L: linux-hams@vger.kernel.org
8285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008286F: drivers/net/hamradio/yam*
8287F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008288
Henkaf64a5e2005-10-12 15:02:56 +02008289YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008290M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008291L: usbb2k-api-dev@nongnu.org
8292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008293F: Documentation/input/yealink.txt
8294F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008295
Linus Torvalds1da177e2005-04-16 15:20:36 -07008296Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008297M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008298W: http://yaina.de/jreuter/
8299W: http://www.qsl.net/dl1bke/
8300L: linux-hams@vger.kernel.org
8301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008302F: Documentation/networking/z8530drv.txt
8303F: drivers/net/hamradio/*scc.c
8304F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008305
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008306ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008307M: Daniel Drake <dsd@gentoo.org>
8308M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008309W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008310L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008311L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008313F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008314
Linus Torvalds1da177e2005-04-16 15:20:36 -07008315ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008316L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008317L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008318W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008319T: Mercurial http://linuxtv.org/hg/v4l-dvb
8320S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008321F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008322
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008323ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008324M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008325S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008326F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008327
Linus Torvalds1da177e2005-04-16 15:20:36 -07008328THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008329M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008330L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008331Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008332T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008333S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008334F: *
8335F: */