blob: 7dbfcb7d4100f84102b1b01a9de9491064084169 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
11
122. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
23
244. When you are happy with a change make it generally available for
25 testing and await feedback.
26
275. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500225L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700226W: http://piie.net/?section=acerhdf
227S: Maintained
228F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200229
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230ACER WMI LAPTOP EXTRAS
Carlos Corbachod9269a72011-05-02 09:57:18 +0100231M: Joey Lee <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700237M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200238M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500239L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400240W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800241Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400242T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700244F: drivers/acpi/
245F: drivers/pnp/pnpacpi/
246F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700247F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248
Len Brown8b59a452007-01-08 19:03:28 -0500249ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500251L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300252W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700254F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700262
Len Brown359acec2007-02-10 01:59:24 -0500263ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500269
Carlos Corbachobff431e2008-02-05 02:17:04 +0000270ACPI WMI DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -0500271L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700273F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100275AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700276M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200277W: http://wiki.parisc-linux.org/AD1889
278L: linux-parisc@vger.kernel.org
279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700280F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
283M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100284L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700285W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000286S: Supported
287F: drivers/misc/ad525x_dpot.c
288
289AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/regulator/ad5398.c
295
296AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/input/misc/ad714x.c
302
303AD7877 TOUCHSCREEN DRIVER
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/touchscreen/ad7877.c
309
310AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7879.c
316
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700317ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
318M: Jiri Kosina <jkosina@suse.cz>
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200323L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/hwmon/adm1025
326F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330L: lm-sensors@lm-sensors.org
331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333
Michael Wucc0b88c2007-08-31 01:15:25 -0400334ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400335L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200336W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400339
Michael Hennerich527a1a82010-10-28 11:31:28 +0000340ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
341M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100342L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700343W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000344S: Supported
345F: drivers/mfd/adp5520.c
346F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700347F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800348F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000349F: drivers/input/keyboard/adp5520-keys.c
350
351ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
352M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100353L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700354W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000355S: Supported
356F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800357F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000358
359ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
360M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100361L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700362W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000363S: Supported
364F: drivers/video/backlight/adp8860_bl.c
365
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100366ADS1015 HARDWARE MONITOR DRIVER
367M: Dirk Eibach <eibach@gdsys.de>
368L: lm-sensors@lm-sensors.org
369S: Maintained
370F: Documentation/hwmon/ads1015
371F: drivers/hwmon/ads1015.c
372F: include/linux/i2c/ads1015.h
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700375M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700377F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Jean Delvareb058b852009-12-09 20:36:08 +0100379ADT7475 HARDWARE MONITOR DRIVER
380M: Jean Delvare <khali@linux-fr.org>
381L: lm-sensors@lm-sensors.org
382S: Maintained
383F: Documentation/hwmon/adt7475
384F: drivers/hwmon/adt7475.c
385
Michael Hennerich527a1a82010-10-28 11:31:28 +0000386ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
387M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100388L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700389W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000390S: Supported
391F: drivers/input/misc/adxl34x.c
392
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400393ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700394M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400395L: linux-scsi@vger.kernel.org
396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700397F: Documentation/scsi/advansys.txt
398F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700403F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Antti Palosaari91952bc2012-10-01 12:28:46 -0300405AF9013 MEDIA DRIVER
406M: Antti Palosaari <crope@iki.fi>
407L: linux-media@vger.kernel.org
408W: http://linuxtv.org/
409W: http://palosaari.fi/linux/
410Q: http://patchwork.linuxtv.org/project/linux-media/list/
411T: git git://linuxtv.org/anttip/media_tree.git
412S: Maintained
413F: drivers/media/dvb-frontends/af9013*
414
415AF9033 MEDIA DRIVER
416M: Antti Palosaari <crope@iki.fi>
417L: linux-media@vger.kernel.org
418W: http://linuxtv.org/
419W: http://palosaari.fi/linux/
420Q: http://patchwork.linuxtv.org/project/linux-media/list/
421T: git git://linuxtv.org/anttip/media_tree.git
422S: Maintained
423F: drivers/media/dvb-frontends/af9033*
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200426L: linux-fsdevel@vger.kernel.org
427S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700428F: Documentation/filesystems/affs.txt
429F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700431AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700432M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700433L: linux-afs@lists.infradead.org
434S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700435F: fs/afs/
436F: include/net/af_rxrpc.h
437F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700440M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700441T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700443F: drivers/char/agp/
444F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448L: linux-scsi@vger.kernel.org
449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/scsi/aha152x*
451F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Hannes Reinecke64624d42007-10-19 10:32:29 +0200453AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200455L: linux-scsi@vger.kernel.org
456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/scsi/aic7xxx/
458F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200459
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700460AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700461M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700462L: linux-aio@kvack.org
463S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700464F: fs/aio.c
465F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700468M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700469L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470W: http://www.linux-usb.org/SpeedTouch/
471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700472F: drivers/usb/atm/speedtch.c
473F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Pierre Ossman272f1332007-05-14 21:25:26 +0200475ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700476M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700478F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200479
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000480ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700481M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100482L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700484F: Documentation/i2c/busses/i2c-ali1563
485F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700488M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700489M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500490M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700491S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700492L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700493F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Tobias Klauseradf92512011-02-09 10:58:29 +0100495ALTERA UART/JTAG UART SERIAL DRIVERS
496M: Tobias Klauser <tklauser@distanz.ch>
497L: linux-serial@vger.kernel.org
498L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
499S: Maintained
500F: drivers/tty/serial/altera_uart.c
501F: drivers/tty/serial/altera_jtaguart.c
502F: include/linux/altera_uart.h
503F: include/linux/altera_jtaguart.h
504
Andreas Herrmann512d1022011-05-25 20:43:31 +0200505AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100506M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200507L: lm-sensors@lm-sensors.org
508S: Maintained
509F: Documentation/hwmon/fam15h_power
510F: drivers/hwmon/fam15h_power.c
511
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700512AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700513M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700514L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700516F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700517
Jordan Crousef90b8112006-01-06 00:12:14 -0800518AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800519P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700520L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800521W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/char/hw_random/geode-rng.c
524F: drivers/crypto/geode*
525F: drivers/video/geode/
526F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800527
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200528AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700529M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200530L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100531T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200532S: Supported
Joe Perchesb2c16392011-12-08 20:21:40 -0800533F: drivers/iommu/amd_iommu*.[ch]
534F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200535
Peter Orubae7f5b302008-07-28 18:44:11 +0200536AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700537M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700538L: amd64-microcode@amd64.org
539S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700540F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200541
Stelian Pop284f42b2006-12-12 18:18:31 +0100542AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700543M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100544S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200545F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100546
Tom Tuckerf94b5332006-09-22 15:22:48 -0700547AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700548M: Tom Tucker <tom@opengridcomputing.com>
549M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700550L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700552F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700553
Michael Hennerich527a1a82010-10-28 11:31:28 +0000554ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200555M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100556L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000557L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700558W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000559S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100560F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200561F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000562F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000563F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100564F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000565
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400566ANALOG DEVICES INC ASOC DRIVERS
567L: uclinux-dist-devel@blackfin.uclinux.org
568L: alsa-devel@alsa-project.org (moderated for non-subscribers)
569W: http://blackfin.uclinux.org/
570S: Supported
571F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400572
Johannes Berg42269062006-07-25 16:15:50 +0200573AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700574M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000575L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700576L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700578F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200581M: Jiri Kosina <jkosina@suse.cz>
582S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700583F: arch/x86/kernel/apm_32.c
584F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200585F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700587APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700588M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700589L: linux-input@vger.kernel.org
590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700591F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700592
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700593APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200594M: Henrik Rydberg <rydberg@euromail.se>
595L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700597F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700600M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700602F: drivers/net/appletalk/
603F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Viresh Kumara4801672011-02-22 15:46:07 +0530605ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700606M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530607L: linux-ide@vger.kernel.org
608S: Maintained
609F: include/linux/pata_arasan_cf_data.h
610F: drivers/ata/pata_arasan_cf.c
611
Jaya Kumar1154ea72005-06-21 17:17:04 -0700612ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700613M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700615F: drivers/video/arcfb.c
616F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700619M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700621F: arch/arm/lib/floppydma.S
622F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Will Deacon6f965212011-07-01 14:38:53 +0100624ARM PMU PROFILING AND DEBUGGING
625M: Will Deacon <will.deacon@arm.com>
626S: Maintained
627F: arch/arm/kernel/perf_event*
628F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100629F: arch/arm/include/asm/pmu.h
630F: arch/arm/kernel/hw_breakpoint.c
631F: arch/arm/include/asm/hw_breakpoint.h
632
Russell Kingd4275352009-04-16 14:05:27 +0100633ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700634M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700635L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100636W: http://www.arm.linux.org.uk/
637S: Maintained
638F: arch/arm/
639
Stephen Boydd323c2432012-10-24 11:00:29 -0700640ARM SUB-ARCHITECTURES
641L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
642S: MAINTAINED
643F: arch/arm/mach-*/
644F: arch/arm/plat-*/
645T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
646
Russell Kingcefbf4e2009-11-22 17:40:28 +0000647ARM PRIMECELL AACI PL041 DRIVER
648M: Russell King <linux@arm.linux.org.uk>
649S: Maintained
650F: sound/arm/aaci.*
651
652ARM PRIMECELL CLCD PL110 DRIVER
653M: Russell King <linux@arm.linux.org.uk>
654S: Maintained
655F: drivers/video/amba-clcd.*
656
657ARM PRIMECELL KMI PL050 DRIVER
658M: Russell King <linux@arm.linux.org.uk>
659S: Maintained
660F: drivers/input/serio/ambakmi.*
661F: include/linux/amba/kmi.h
662
Russell King2761f5c2007-05-24 06:56:08 +0200663ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200664S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700665F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200666
Russell Kingcefbf4e2009-11-22 17:40:28 +0000667ARM PRIMECELL BUS SUPPORT
668M: Russell King <linux@arm.linux.org.uk>
669S: Maintained
670F: drivers/amba/
671F: include/linux/amba/bus.h
672
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800673ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700674M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700675L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800676S: Maintained
677
Sergey Lapin9c784f92008-08-03 02:29:48 +0100678ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700679M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700680L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100681S: Maintained
682
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700684M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700685L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800686S: Maintained
687
Maxime Ripard1b106692012-11-15 21:51:26 +0100688ARM/Allwinner A1X SoC support
689M: Maxime Ripard <maxime.ripard@free-electrons.com>
690L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
691S: Maintained
692F: arch/arm/mach-sunxi/
693
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800694ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700695M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800696M: Nicolas Ferre <nicolas.ferre@atmel.com>
697M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700698L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200699W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800700W: http://www.linux4sam.org
701S: Supported
702F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100703
Rob Herring986cf2e2011-06-22 11:28:53 -0500704ARM/CALXEDA HIGHBANK ARCHITECTURE
705M: Rob Herring <rob.herring@calxeda.com>
706L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
707S: Maintained
708F: arch/arm/mach-highbank/
709
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300710ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
711M: Anton Vorontsov <avorontsov@mvista.com>
712S: Maintained
713F: arch/arm/mach-cns3xxx/
714T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
715
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800716ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100717M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000718M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700719L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800720S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100721F: arch/arm/mach-ep93xx/
722F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800723
724ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700725M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700726L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800727S: Maintained
728
Russell Kingd4275352009-04-16 14:05:27 +0100729ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700730M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700731L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700732S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100733F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700734F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100735
Mike Rapoportd48134e2008-08-20 09:03:26 +0100736ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700737M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700738L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100739S: Maintained
740
Hubert Feurstein94150092009-10-07 08:36:07 +0100741ARM/CONTEC MICRO9 MACHINE SUPPORT
742M: Hubert Feurstein <hubert.feurstein@contec.at>
743S: Maintained
744F: arch/arm/mach-ep93xx/micro9.c
745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700747M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748S: Maintained
749
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200750ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100751M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700752L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100753T: git git://git.berlios.de/gemini-board
754S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300755F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200756
Barry Songa990cbd2011-07-12 21:44:10 +0800757ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
758M: Barry Song <baohua.song@csr.com>
759L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
760S: Maintained
761F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800762F: drivers/dma/sirf-dma.c
763F: drivers/i2c/busses/i2c-sirf.c
764F: drivers/pinctrl/pinctrl-sirf.c
765F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800766
Russell Kingd4275352009-04-16 14:05:27 +0100767ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700768M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700769L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100770W: http://www.arm.linux.org.uk/
771S: Maintained
772F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700773F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100774
Russell Kinga9da4f72008-07-12 21:42:04 +0100775ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700776M: Daniel Ribeiro <drwyrm@gmail.com>
777M: Stefan Schmidt <stefan@openezx.org>
778M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200779L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100780W: http://www.openezx.org/
781S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200782T: topgit git://git.openezx.org/openezx.git
783F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100784
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200785ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100786M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700787L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100788S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700789T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300790F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200791
Russell Kingd4275352009-04-16 14:05:27 +0100792ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700793M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700794L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100795W: http://www.arm.linux.org.uk/
796S: Maintained
797F: arch/arm/include/asm/hardware/dec21285.h
798F: arch/arm/mach-footbridge/
799
Sascha Hauer86183a52008-07-24 23:50:35 +0200800ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700801M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700802L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200803S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700804T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100805F: arch/arm/mach-imx/
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100806F: arch/arm/plat-mxc/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700807F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200808
Shawn Guo8bcb9762011-10-07 22:24:18 +0800809ARM/FREESCALE IMX6
810M: Shawn Guo <shawn.guo@linaro.org>
811L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
812S: Maintained
813T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
814F: arch/arm/mach-imx/*imx6*
815
Shawn Guoa9866a092011-10-21 11:53:34 +0800816ARM/FREESCALE MXS ARM ARCHITECTURE
817M: Shawn Guo <shawn.guo@linaro.org>
818L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
819S: Maintained
820T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
821F: arch/arm/mach-mxs/
822
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800823ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700824M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700825L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800826S: Maintained
827
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100828ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700829M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700830L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100831S: Maintained
832
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200833ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700834M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100835M: Paul Parsons <lost.distance@yahoo.com>
836L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200837S: Maintained
838F: arch/arm/mach-pxa/hx4700.c
839F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100840F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200841
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100842ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700843M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200844W: www.jlime.com
845S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700846T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
847F: arch/arm/mach-sa1100/jornada720.c
848F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100849
Marek Vasut403d2972010-05-22 00:29:39 +0200850ARM/INCOME PXA270 SUPPORT
851M: Marek Vasut <marek.vasut@gmail.com>
852L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
853S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700854F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200855
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800856ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700857M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700858M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700859L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700860S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100861
862ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700863M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700864L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700865S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800866
867ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700868M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700869M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700870L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700871S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800872
873ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700874M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700875M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700876L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700877S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800878
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800879ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700880M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700881L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800882S: Maintained
883
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200884ARM/INTEL IXP4XX ARM ARCHITECTURE
885M: Imre Kaloz <kaloz@openwrt.org>
886M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100887L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200888S: Maintained
889F: arch/arm/mach-ixp4xx/
890
Joe Perches838553c2010-10-26 14:22:59 -0700891ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100892M: Jonathan Cameron <jic23@cam.ac.uk>
893L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
894S: Maintained
895F: arch/arm/mach-pxa/stargate2.c
896F: drivers/pcmcia/pxa2xx_stargate2.c
897
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800898ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700899M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700900M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700901L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700902S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800903
904ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700905M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700906L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800907S: Maintained
908
909ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700910M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700911L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800912S: Maintained
913
Philipp Zabel3b8861712008-07-09 21:27:15 +0100914ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700915M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100916S: Maintained
917
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200918ARM/Marvell Armada 370 and Armada XP SOC support
919M: Jason Cooper <jason@lakedaemon.net>
920M: Andrew Lunn <andrew@lunn.ch>
921M: Gregory Clement <gregory.clement@free-electrons.com>
922L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
923S: Maintained
924F: arch/arm/mach-mvebu/
925
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400926ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
927M: Jason Cooper <jason@lakedaemon.net>
928M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700929L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400930S: Maintained
931F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400932F: arch/arm/mach-kirkwood/
933F: arch/arm/mach-mv78xx0/
934F: arch/arm/mach-orion5x/
935F: arch/arm/plat-orion/
936
Alexander Clouterd69ac132011-04-14 15:22:02 -0700937ARM/Orion SoC/Technologic Systems TS-78xx platform support
938M: Alexander Clouter <alex@digriz.org.uk>
939L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
940W: http://www.digriz.org.uk/ts78xx/kernel
941S: Maintained
942F: arch/arm/mach-orion5x/ts78xx-*
943
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000944ARM/MICREL KS8695 ARCHITECTURE
945M: Greg Ungerer <gerg@uclinux.org>
946L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
947F: arch/arm/mach-ks8695
948S: Odd Fixes
949
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200950ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700951M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700952L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200953F: arch/arm/mach-pxa/mioa701.c
954S: Maintained
955
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100956ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700957M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100958S: Maintained
959
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100960ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700961M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200962M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700963M: STEricsson <STEricsson_nomadik_linux@list.st.com>
964L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
965S: Maintained
966F: arch/arm/mach-nomadik/
967F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100968F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200969T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100970
Andy Green9d762952009-05-19 06:41:42 -0300971ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700972M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300973L: openmoko-kernel@lists.openmoko.org (subscribers-only)
974W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
975S: Supported
976
Daniel Walker0c19d212009-12-07 16:53:51 -0800977ARM/QUALCOMM MSM MACHINE SUPPORT
978M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800979M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800980M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800981L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800982F: arch/arm/mach-msm/
983F: drivers/video/msm/
984F: drivers/mmc/host/msm_sdcc.c
985F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800986F: drivers/tty/serial/msm_serial.h
987F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -0700988F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -0700989F: drivers/*/pm8???-*
990F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -0800991T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -0800992S: Maintained
993
Dirk Opfer8459c152005-11-06 14:27:52 +0000994ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700995M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
996M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000997S: Maintained
998
Marek Vasut5d783a22009-07-16 13:26:48 +0200999ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001000M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001001L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001002W: http://hackndev.com
1003S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001004F: arch/arm/mach-pxa/include/mach/palmtx.h
1005F: arch/arm/mach-pxa/palmtx.c
1006F: arch/arm/mach-pxa/include/mach/palmt5.h
1007F: arch/arm/mach-pxa/palmt5.c
1008F: arch/arm/mach-pxa/include/mach/palmld.h
1009F: arch/arm/mach-pxa/palmld.c
1010F: arch/arm/mach-pxa/include/mach/palmte2.h
1011F: arch/arm/mach-pxa/palmte2.c
1012F: arch/arm/mach-pxa/include/mach/palmtc.h
1013F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001014
Joe Perchesb57fe922009-12-14 18:00:52 -08001015ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001016M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001017L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001018W: http://hackndev.com
1019S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001020F: arch/arm/mach-pxa/include/mach/palmtreo.h
1021F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001022
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001023ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001024M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001025L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001026W: http://hackndev.com
1027S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001028F: arch/arm/mach-pxa/include/mach/palmz72.h
1029F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001032M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1034S: Maintained
1035
1036ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001037M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001038L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039W: http://www.arm.linux.org.uk/
1040S: Maintained
1041
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001042ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001043M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001044L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001045S: Maintained
1046
Russell Kingd4275352009-04-16 14:05:27 +01001047ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001048M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001049L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001050W: http://www.arm.linux.org.uk/
1051S: Maintained
1052F: arch/arm/common/time-acorn.c
1053F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1054F: arch/arm/include/asm/hardware/ioc.h
1055F: arch/arm/include/asm/hardware/iomd.h
1056F: arch/arm/include/asm/hardware/memc.h
1057F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001058F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001059F: drivers/net/ethernet/i825xx/ether1*
1060F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001061F: drivers/scsi/arm/
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001064M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065W: http://www.shark-linux.de/shark.html
1066S: Maintained
1067
Ben Dooksb21477f2009-06-13 10:46:34 +01001068ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001069M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001070M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001071L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001072L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001073W: http://www.fluff.org/ben/linux/
1074S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001075F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001076F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001077F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001078F: arch/arm/mach-s3c24*/
1079F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001080F: drivers/*/*s3c2410*
1081F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001082F: drivers/spi/spi-s3c*
1083F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001085ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001086M: Kukjin Kim <kgene.kim@samsung.com>
1087L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1088L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1089S: Maintained
1090F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001091F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001092
Kyungmin Park10ffa962011-03-04 17:36:26 -08001093ARM/SAMSUNG MOBILE MACHINE SUPPORT
1094M: Kyungmin Park <kyungmin.park@samsung.com>
1095L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1096S: Maintained
1097F: arch/arm/mach-s5pv210/mach-aquila.c
1098F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001099F: arch/arm/mach-exynos/mach-universal_c210.c
1100F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001101
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001102ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1103M: Kyungmin Park <kyungmin.park@samsung.com>
1104M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1105L: linux-arm-kernel@lists.infradead.org
1106L: linux-media@vger.kernel.org
1107S: Maintained
1108F: arch/arm/plat-s5p/dev-fimc*
1109F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001110F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001111
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001112ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1113M: Kyungmin Park <kyungmin.park@samsung.com>
1114M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001115M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001116L: linux-arm-kernel@lists.infradead.org
1117L: linux-media@vger.kernel.org
1118S: Maintained
1119F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001120F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001121
1122ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1123M: Kyungmin Park <kyungmin.park@samsung.com>
1124M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1125L: linux-arm-kernel@lists.infradead.org
1126L: linux-media@vger.kernel.org
1127S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001128F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001129
Paul Mundtd48d38e2010-02-08 12:50:24 +09001130ARM/SHMOBILE ARM ARCHITECTURE
1131M: Paul Mundt <lethal@linux-sh.org>
1132M: Magnus Damm <magnus.damm@gmail.com>
1133L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001134W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001135Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001136T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001137S: Supported
1138F: arch/arm/mach-shmobile/
1139F: drivers/sh/
1140
Dinh Nguyen66314222012-07-18 16:07:18 -06001141ARM/SOCFPGA ARCHITECTURE
1142M: Dinh Nguyen <dinguyen@altera.com>
1143S: Maintained
1144F: arch/arm/mach-socfpga/
1145
1146ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1147M: Dinh Nguyen <dinguyen@altera.com>
1148S: Maintained
1149F: drivers/clk/socfpga/
1150
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001151ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001152M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001153L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001154S: Maintained
1155
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001156ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001157M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001158L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1159S: Maintained
1160
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001161ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001162M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001163L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001164S: Maintained
1165
wanzongshun98ad6e32009-02-13 06:04:32 +01001166ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001167M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001168L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001169W: http://www.mcuos.com
1170S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001171F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001172F: drivers/input/keyboard/w90p910_keypad.c
1173F: drivers/input/touchscreen/w90p910_ts.c
1174F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001175F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001176F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001177F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001178F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001179F: drivers/usb/host/ehci-w90x900.c
1180F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001181
Linus Walleij54274d72010-04-04 10:58:03 +01001182ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001183M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001184L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1185S: Supported
1186F: arch/arm/mach-u300/
1187F: drivers/i2c/busses/i2c-stu300.c
1188F: drivers/rtc/rtc-coh901331.c
1189F: drivers/watchdog/coh901327_wdt.c
1190F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001191F: drivers/mfd/ab3100*
1192F: drivers/rtc/rtc-ab3100.c
1193F: drivers/rtc/rtc-coh901331.c
1194T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001195
Linus Walleij87572882010-12-22 09:18:29 +01001196ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001197M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001198M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001199L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1200S: Maintained
1201F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001202F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001203F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001204F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001205F: drivers/mfd/abx500*
1206F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001207F: drivers/mfd/dbx500*
1208F: drivers/mfd/db8500*
1209F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001210F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001211F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001212T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001213
Russell Kingd4275352009-04-16 14:05:27 +01001214ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001215M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001216L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001217W: http://www.arm.linux.org.uk/
1218S: Maintained
1219F: arch/arm/vfp/
1220
Marek Vasute66b6d82010-03-26 06:51:32 +01001221ARM/VOIPAC PXA270 SUPPORT
1222M: Marek Vasut <marek.vasut@gmail.com>
1223L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1224S: Maintained
1225F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001226F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001227
Tony Prisk04529fe2012-07-24 04:19:37 +12001228ARM/VT8500 ARM ARCHITECTURE
1229M: Tony Prisk <linux@prisktech.co.nz>
1230L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1231S: Maintained
1232F: arch/arm/mach-vt8500/
1233F: drivers/video/vt8500lcdfb.*
1234F: drivers/video/wm8505fb*
1235F: drivers/video/wmt_ge_rops.*
1236F: drivers/tty/serial/vt8500_serial.c
1237F: drivers/rtc/rtc-vt8500-c
1238
Marek Vasute66b6d82010-03-26 06:51:32 +01001239ARM/ZIPIT Z2 SUPPORT
1240M: Marek Vasut <marek.vasut@gmail.com>
1241L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1242S: Maintained
1243F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001244F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001245
Catalin Marinas38074222012-03-05 11:49:34 +00001246ARM64 PORT (AARCH64 ARCHITECTURE)
1247M: Catalin Marinas <catalin.marinas@arm.com>
1248L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1249S: Maintained
1250F: arch/arm64/
1251
George Josephd58de032010-03-05 22:17:25 +01001252ASC7621 HARDWARE MONITOR DRIVER
1253M: George Joseph <george.joseph@fairview5.com>
1254L: lm-sensors@lm-sensors.org
1255S: Maintained
1256F: Documentation/hwmon/asc7621
1257F: drivers/hwmon/asc7621.c
1258
Corentin Charyb229ece2011-02-26 10:20:40 +01001259ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001260M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001262L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001263W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001265F: drivers/platform/x86/asus*.c
1266F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001268ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001269M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001270L: lm-sensors@lm-sensors.org
1271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001272F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001273
Andrew Morton953a6472008-11-06 12:53:28 -08001274ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001275M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001276W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001278F: Documentation/crypto/async-tx-api.txt
1279F: crypto/async_tx/
1280F: drivers/dma/
1281F: include/linux/dmaengine.h
1282F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001283
Wolfram Sanga1867d32009-09-18 22:45:51 +02001284AT24 EEPROM DRIVER
1285M: Wolfram Sang <w.sang@pengutronix.de>
1286L: linux-i2c@vger.kernel.org
1287S: Maintained
1288F: drivers/misc/eeprom/at24.c
1289F: include/linux/i2c/at24.h
1290
Randy Dunlape7839f22008-10-12 16:11:45 -07001291ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001292M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001293W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001295F: Documentation/aoe/
1296F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Joe Perches9a10a872010-12-01 09:37:55 -08001298ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001299M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001300L: linux-wireless@vger.kernel.org
1301S: Supported
1302F: drivers/net/wireless/ath/*
1303
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001304ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001305M: Jiri Slaby <jirislaby@gmail.com>
1306M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001307M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001308L: linux-wireless@vger.kernel.org
1309L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001310W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001311S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001312F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001313
Kalle Valo12e62d62011-09-13 10:21:25 +03001314ATHEROS ATH6KL WIRELESS DRIVER
1315M: Kalle Valo <kvalo@qca.qualcomm.com>
1316L: linux-wireless@vger.kernel.org
1317W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1318T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1319S: Supported
1320F: drivers/net/wireless/ath/ath6kl/
1321
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001322ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001323M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1324M: Jouni Malinen <jouni@qca.qualcomm.com>
1325M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1326M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001327L: linux-wireless@vger.kernel.org
1328L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001329W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001330S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001331F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001332
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001333CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1334M: Christian Lamparter <chunkeey@googlemail.com>
1335L: linux-wireless@vger.kernel.org
1336W: http://wireless.kernel.org/en/users/Drivers/carl9170
1337S: Maintained
1338F: drivers/net/wireless/ath/carl9170/
1339
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001340ATK0110 HWMON DRIVER
1341M: Luca Tettamanti <kronos.it@gmail.com>
1342L: lm-sensors@lm-sensors.org
1343S: Maintained
1344F: drivers/hwmon/asus_atk0110.c
1345
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001346ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001347M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001349F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001350
Chris Snook7ae115b2008-09-09 03:26:57 -04001351ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001352M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001353M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001354L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001355W: http://sourceforge.net/projects/atl1
1356W: http://atl1.sourceforge.net
1357S: Maintained
Jeff Kirsher2b133ad2011-05-20 06:55:16 -07001358F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001361M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001362L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001363L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364W: http://linux-atm.sourceforge.net
1365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001366F: drivers/atm/
1367F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Pierre Ossman272f1332007-05-14 21:25:26 +02001369ATMEL AT91 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001370M: Ludovic Desroches <ludovic.desroches@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001371L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001372W: http://www.atmel.com/products/AT91/
1373W: http://www.at91.com/
1374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001375F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001376
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001377ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001378M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001379S: Maintained
1380F: drivers/mmc/host/atmel-mci.c
1381F: drivers/mmc/host/atmel-mci-regs.h
1382
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001383ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001384M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001385S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001386F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001387
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001388ATMEL DMA DRIVER
1389M: Nicolas Ferre <nicolas.ferre@atmel.com>
1390L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1391S: Supported
1392F: drivers/dma/at_hdmac.c
1393F: drivers/dma/at_hdmac_regs.h
1394F: arch/arm/mach-at91/include/mach/at_hdmac.h
1395
Josh Wu15515542012-03-23 17:56:29 +08001396ATMEL ISI DRIVER
1397M: Josh Wu <josh.wu@atmel.com>
1398L: linux-media@vger.kernel.org
1399S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001400F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001401F: include/media/atmel-isi.h
1402
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001403ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001404M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001405L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001407F: drivers/video/atmel_lcdfb.c
1408F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001409
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001410ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001411M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001412S: Supported
Jeff Kirsher9f2f3812011-06-18 01:52:36 -07001413F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001414
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001415ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001416M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001417S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001418F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001419
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001420ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1421M: Nicolas Ferre <nicolas.ferre@atmel.com>
1422L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1423S: Supported
1424F: drivers/misc/atmel_tclib.c
1425F: drivers/clocksource/tcb_clksrc.c
1426
Josh Wuff2675d2012-03-23 17:56:55 +08001427ATMEL TSADCC DRIVER
1428M: Josh Wu <josh.wu@atmel.com>
1429L: linux-input@vger.kernel.org
1430S: Supported
1431F: drivers/input/touchscreen/atmel_tsadcc.c
1432
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001433ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001434M: Nicolas Ferre <nicolas.ferre@atmel.com>
1435L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001436S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001437F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001440M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001441L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442W: http://www.thekelleys.org.uk/atmel
1443W: http://atmelwlandriver.sourceforge.net/
1444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001445F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Chris Wrighta92b7b82005-07-07 18:12:23 -07001447AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001448M: Al Viro <viro@zeniv.linux.org.uk>
1449M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001450L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001451W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001452T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001454F: include/linux/audit.h
1455F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001456
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001457AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001458M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001459W: http://miguelojeda.es/auxdisplay.htm
1460W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001462F: drivers/auxdisplay/
1463F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001464
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001465AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001466M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1467M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001468W: http://www.atmel.com/products/AVR32/
1469W: http://avr32linux.org/
1470W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001472F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001473
1474AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001475M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1476M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001478F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001481M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001483W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001485F: include/linux/ax25.h
1486F: include/net/ax25.h
1487F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001489B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001490M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001491L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001492L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001493W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001495F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001496
1497B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001498M: Larry Finger <Larry.Finger@lwfinger.net>
1499M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001500L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001501L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001502W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001504F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001505
Richard Purdie300abeb2007-02-07 22:21:07 +00001506BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001507M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001509F: drivers/video/backlight/
1510F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001511
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001512BATMAN ADVANCED
1513M: Marek Lindner <lindner_marek@yahoo.de>
1514M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001515M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001516L: b.a.t.m.a.n@lists.open-mesh.org
1517W: http://www.open-mesh.org/
1518S: Maintained
1519F: net/batman-adv/
1520
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001521BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001522M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001523L: linux-hams@vger.kernel.org
1524W: http://www.baycom.org/~tom/ham/ham.html
1525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001526F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001527
1528BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001529S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001530F: Documentation/filesystems/befs.txt
1531F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001532
1533BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001534M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001536F: Documentation/filesystems/bfs.txt
1537F: fs/bfs/
1538F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001539
Bryan Wu1394f032007-05-06 14:50:22 -07001540BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001541M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001542L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001543W: http://blackfin.uclinux.org
1544S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001545F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001546
Bryan Wue190d6b2007-07-17 14:43:44 +08001547BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001548L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001549W: http://blackfin.uclinux.org
1550S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001551F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001552
Mike Frysinger566da5b2007-06-11 15:31:30 +08001553BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001554M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001555L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001556W: http://blackfin.uclinux.org
1557S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001558F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001559
Mike Frysinger936ed492010-03-10 15:20:38 -08001560BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001561M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001562L: uclinux-dist-devel@blackfin.uclinux.org
1563W: http://blackfin.uclinux.org
1564S: Supported
1565F: drivers/mmc/host/bfin_sdh.c
1566
Bryan Wu1394f032007-05-06 14:50:22 -07001567BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001568M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001569L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001570W: http://blackfin.uclinux.org
1571S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001572F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001573
Bryan Wu1e6d3202007-07-15 02:50:02 +08001574BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001575M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001576L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001577W: http://blackfin.uclinux.org
1578S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001579F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001580
Bryan Wud24ecfc2007-05-01 23:26:32 +02001581BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001582M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001583L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001584W: http://blackfin.uclinux.org/
1585S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001586F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001587
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001588BLINKM RGB LED DRIVER
1589M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1590S: Maintained
1591F: drivers/leds/leds-blinkm.c
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001594M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001595T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001597F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Joern Engel2b54aae2008-02-06 01:38:02 -08001599BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001600M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001601L: linux-mtd@lists.infradead.org
1602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001603F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001604
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001605BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001606M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001607M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001608M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001609L: linux-bluetooth@vger.kernel.org
1610W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001611T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1612T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001614F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001617M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001618M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001619M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001620L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001621W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001622T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1623T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001625F: net/bluetooth/
1626F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001629M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001630M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001631L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001632W: http://sourceforge.net/projects/bonding/
1633S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001634F: drivers/net/bonding/
1635F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Gary Zambrano39105892006-06-22 17:26:20 -07001637BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001638M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001639L: netdev@vger.kernel.org
1640S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001641F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001642
Michael Chan948c51e2006-06-04 02:51:39 -07001643BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001644M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001645L: netdev@vger.kernel.org
1646S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001647F: drivers/net/ethernet/broadcom/bnx2.*
1648F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001649
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001650BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001651M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001652L: netdev@vger.kernel.org
1653S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001654F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001655
Stephen Warrenf680f252012-09-15 00:18:54 -06001656BROADCOM BCM2835 ARM ARCHICTURE
1657M: Stephen Warren <swarren@wwwdotorg.org>
1658L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1659T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1660S: Maintained
1661F: arch/arm/mach-bcm2835/
1662F: arch/arm/boot/dts/bcm2835*
1663F: arch/arm/configs/bcm2835_defconfig
1664F: drivers/*/*bcm2835*
1665
Michael Chan948c51e2006-06-04 02:51:39 -07001666BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001667M: Matt Carlson <mcarlson@broadcom.com>
1668M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001669L: netdev@vger.kernel.org
1670S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001671F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001672
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001673BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1674M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001675M: Roland Vossen <rvossen@broadcom.com>
1676M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001677M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1678M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001679L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001680L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001681S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001682F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001683
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001684BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1685M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1686L: linux-scsi@vger.kernel.org
1687S: Supported
1688F: drivers/scsi/bnx2fc/
1689
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001690BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1691M: Rafał Miłecki <zajec5@gmail.com>
1692L: linux-wireless@vger.kernel.org
1693S: Maintained
1694F: drivers/bcma/
1695F: include/linux/bcma/
1696
Jing Huang7725ccf2009-09-23 17:46:15 -07001697BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001698M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001699L: linux-scsi@vger.kernel.org
1700S: Supported
1701F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001702
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001703BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1704M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001705L: netdev@vger.kernel.org
1706S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001707F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001708
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001709BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001710M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001711L: linux-scsi@vger.kernel.org
1712S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001713F: block/bsg.c
1714F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001715
Clemens Ladischaf399172011-01-10 16:32:54 +01001716BT87X AUDIO DRIVER
1717M: Clemens Ladisch <clemens@ladisch.de>
1718L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1719T: git git://git.alsa-project.org/alsa-kernel.git
1720S: Maintained
1721F: Documentation/sound/alsa/Bt87x.txt
1722F: sound/pci/bt87x.c
1723
Michael Bueschff1d5c22008-07-25 01:46:10 -07001724BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001725M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001726W: http://bu3sch.de/btgpio.php
1727S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001728F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001729
Joe Percheseb1eb042009-01-21 10:49:16 -05001730BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001731M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001732L: linux-btrfs@vger.kernel.org
1733W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001734Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001735T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001737F: Documentation/filesystems/btrfs.txt
1738F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001741M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001742L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001743W: http://linuxtv.org
Joe Perches08deed12012-03-23 15:01:57 -07001744T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001746F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001747F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Clemens Ladischaf399172011-01-10 16:32:54 +01001749C-MEDIA CMI8788 DRIVER
1750M: Clemens Ladisch <clemens@ladisch.de>
1751L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1752T: git git://git.alsa-project.org/alsa-kernel.git
1753S: Maintained
1754F: sound/pci/oxygen/
1755
Mark Salter21413552011-10-04 11:21:42 -04001756C6X ARCHITECTURE
1757M: Mark Salter <msalter@redhat.com>
1758M: Aurelien Jacquiot <a-jacquiot@ti.com>
1759L: linux-c6x-dev@linux-c6x.org
1760W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1761S: Maintained
1762F: arch/c6x/
1763
David Howellsa5432f52009-04-20 15:46:45 +01001764CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001765M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001766L: linux-cachefs@redhat.com
1767S: Supported
1768F: Documentation/filesystems/caching/cachefiles.txt
1769F: fs/cachefiles/
1770
Jonathan Corbet77d51402007-03-22 19:44:17 -03001771CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001772M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001773L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07001774T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001776F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001777F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001778
Joe Perches201b6ba2010-09-07 20:33:24 +00001779CAIF NETWORK LAYER
1780M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1781L: netdev@vger.kernel.org
1782S: Supported
1783F: Documentation/networking/caif/
1784F: drivers/net/caif/
1785F: include/linux/caif/
1786F: include/net/caif/
1787F: net/caif/
1788
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001789CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001790M: Muli Ben-Yehuda <muli@il.ibm.com>
1791M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001792L: discuss@x86-64.org
1793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001794F: arch/x86/kernel/pci-calgary_64.c
1795F: arch/x86/kernel/tce_64.c
1796F: arch/x86/include/asm/calgary.h
1797F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001798
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001799CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001800M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001801L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001802W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001803T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001804S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001805F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001806F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001807F: include/linux/can/core.h
1808F: include/linux/can/bcm.h
1809F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001810F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001811
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001812CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001813M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001814M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001815L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001816W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001817T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001818S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001819F: drivers/net/can/
1820F: include/linux/can/dev.h
1821F: include/linux/can/error.h
1822F: include/linux/can/netlink.h
1823F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001824
James Morris95d16c72012-03-16 12:05:48 +11001825CAPABILITIES
1826M: Serge Hallyn <serge.hallyn@canonical.com>
1827L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001828S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001829F: include/linux/capability.h
1830F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001831F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001832F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001833
Arnd Bergmannb8154542008-05-16 11:10:59 +02001834CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001835M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001836L: linuxppc-dev@lists.ozlabs.org
1837L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001838W: http://www.ibm.com/developerworks/power/cell/
1839S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001840F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001841F: arch/powerpc/include/asm/spu*.h
1842F: arch/powerpc/oprofile/*cell*
1843F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001844
Sage Weil9030aaf2009-10-06 11:31:15 -07001845CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001846M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001847L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001848W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001849T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001850S: Supported
1851F: Documentation/filesystems/ceph.txt
1852F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001853F: net/ceph
1854F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001855F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001856
David Vrabel18332a82008-09-17 16:34:44 +01001857CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001858L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001859S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001860F: Documentation/usb/WUSB-Design-overview.txt
1861F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001862F: drivers/usb/host/hwa-hc.c
1863F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001864F: drivers/usb/wusbcore/
1865F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001866
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001867CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001868M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001869W: http://miguelojeda.es/auxdisplay.htm
1870W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001872F: drivers/auxdisplay/cfag12864b.c
1873F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001874
1875CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001876M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001877W: http://miguelojeda.es/auxdisplay.htm
1878W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001880F: drivers/auxdisplay/cfag12864bfb.c
1881F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001882
Johannes Berg704232c2007-04-23 12:20:05 -07001883CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001884M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001885L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001886W: http://wireless.kernel.org/
1887T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1888T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001890F: include/linux/nl80211.h
1891F: include/net/cfg80211.h
1892F: net/wireless/*
1893X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001894
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001895CHAR and MISC DRIVERS
1896M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001897M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001898T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001899S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001900F: drivers/char/*
1901F: drivers/misc/*
1902
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001903CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001904M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001905S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001906F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001907
Harry Weif8407f262011-02-25 14:44:15 -08001908CHINESE DOCUMENTATION
1909M: Harry Wei <harryxiyou@gmail.com>
1910L: xiyoulinuxkernelgroup@googlegroups.com
1911L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1912S: Maintained
1913F: Documentation/zh_CN/
1914
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001915CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1916M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1917L: linux-usb@vger.kernel.org
1918S: Maintained
1919F: drivers/usb/chipidea/
1920
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001921CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001922M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001923M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001924M: Neel Patel <neepatel@cisco.com>
1925M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001926S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001927F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001928
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001929CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001930M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001931L: netdev@vger.kernel.org
1932S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001933F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001934
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001935CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001936M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001937L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001939F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001940
Timur Tabid9e9d822008-04-24 08:45:26 +10001941CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001942M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001943L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001944S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001945F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001946
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001947CLEANCACHE API
1948M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1949L: linux-kernel@vger.kernel.org
1950S: Maintained
1951F: mm/cleancache.c
1952F: include/linux/cleancache.h
1953
Russell Kingd4275352009-04-16 14:05:27 +01001954CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001955M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001956S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001957F: include/linux/clk.h
1958
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001959CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001960M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001961M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1962M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001963L: linux-scsi@vger.kernel.org
1964S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001965F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001966
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001967CMPC ACPI DRIVER
1968M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1969M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001970L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001971S: Supported
1972F: drivers/platform/x86/classmate-laptop.c
1973
Nicolas Palix74425ee2010-06-06 17:15:01 +02001974COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02001975M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001976M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02001977M: Nicolas Palix <nicolas.palix@imag.fr>
1978L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02001979W: http://coccinelle.lip6.fr/
1980S: Supported
1981F: scripts/coccinelle/
1982F: scripts/coccicheck
1983
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001985M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986M: coda@cs.cmu.edu
1987L: codalist@coda.cs.cmu.edu
1988W: http://www.coda.cs.cmu.edu/
1989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001990F: Documentation/filesystems/coda.txt
1991F: fs/coda/
1992F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
Mike Turquette7704add2012-05-02 18:37:45 -07001994COMMON CLK FRAMEWORK
1995M: Mike Turquette <mturquette@ti.com>
1996M: Mike Turquette <mturquette@linaro.org>
1997L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
1998T: git git://git.linaro.org/people/mturquette/linux.git
1999S: Maintained
2000F: drivers/clk/clk.c
2001F: drivers/clk/clk-*
2002F: include/linux/clk-pr*
2003
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002004COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002005M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002006L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002007L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002008W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002009Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002010T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002011S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002012F: Documentation/filesystems/cifs.txt
2013F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015COMPACTPCI HOTPLUG CORE
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/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021COMPACTPCI HOTPLUG ZIATECH ZT5550 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_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
2027COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002028M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002029L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002031F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002033COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002034M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002035L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002037F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002038
Simon Arlott949be0f2007-03-06 02:47:46 -08002039CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002040M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002041L: accessrunner-general@lists.sourceforge.net
2042W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002044F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002045
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002046CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002047M: Joel Becker <jlbec@evilplan.org>
2048T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002049S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002050F: fs/configfs/
2051F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002052
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002053CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002054M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002055L: netdev@vger.kernel.org
2056S: Maintained
2057F: drivers/connector/
2058
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002059CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002060M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002061M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002062L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002063L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002064T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002066F: include/linux/cgroup*
2067F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002068F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002069
Rudolf Marekbebe4672007-05-08 17:22:02 +02002070CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002071M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002072L: lm-sensors@lm-sensors.org
2073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002074F: Documentation/hwmon/coretemp
2075F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002078M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079W: http://www.fi.muni.cz/~kas/cosa/
2080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002081F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Florian Fainelli4371ee32009-06-01 02:43:17 -07002083CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002084M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002085L: netdev@vger.kernel.org
2086S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002087F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002090M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002091L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002092L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002094F: drivers/cpufreq/
2095F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002098M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002100F: arch/x86/kernel/cpuid.c
2101F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002103CPU POWER MONITORING SUBSYSTEM
2104M: Dominik Brodowski <linux@dominikbrodowski.net>
2105M: Thomas Renninger <trenn@suse.de>
2106S: Maintained
2107F: tools/power/cpupower
2108
Paul Jacksoned90fb42005-09-27 21:45:37 -07002109CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002110M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb42005-09-27 21:45:37 -07002111W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002112W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07002113S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002114F: Documentation/cgroups/cpusets.txt
2115F: include/linux/cpuset.h
2116F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07002117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002119W: http://sourceforge.net/projects/cramfs/
2120S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002121F: Documentation/filesystems/cramfs.txt
2122F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
2124CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002125M: Mikael Starvik <starvik@axis.com>
2126M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002127L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128W: http://developer.axis.com
2129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002130F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002131F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002134M: Herbert Xu <herbert@gondor.apana.org.au>
2135M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002137T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002139F: Documentation/crypto/
2140F: arch/*/crypto/
2141F: crypto/
2142F: drivers/crypto/
2143F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
Neil Horman5b07bd52009-02-05 16:03:04 +11002145CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002146M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002147L: linux-crypto@vger.kernel.org
2148S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002149F: crypto/ansi_cprng.c
2150F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002151
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002152CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002153M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002155F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002156
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002157CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002158M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002159L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002160L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002161T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002162W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002163W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002165F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002166F: drivers/media/pci/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03002167
Antti Palosaari91952bc2012-10-01 12:28:46 -03002168CXD2820R MEDIA DRIVER
2169M: Antti Palosaari <crope@iki.fi>
2170L: linux-media@vger.kernel.org
2171W: http://linuxtv.org/
2172W: http://palosaari.fi/linux/
2173Q: http://patchwork.linuxtv.org/project/linux-media/list/
2174T: git git://linuxtv.org/anttip/media_tree.git
2175S: Maintained
2176F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002177
Steve Wisee5ec3782008-05-20 14:06:33 -07002178CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002179M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002180L: netdev@vger.kernel.org
2181W: http://www.chelsio.com
2182S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002183F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002184
2185CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002186M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002187L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002188W: http://www.openfabrics.org
2189S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002190F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002191
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002192CXGB4 ETHERNET DRIVER (CXGB4)
2193M: Dimitris Michailidis <dm@chelsio.com>
2194L: netdev@vger.kernel.org
2195W: http://www.chelsio.com
2196S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002197F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002198
2199CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2200M: Steve Wise <swise@chelsio.com>
2201L: linux-rdma@vger.kernel.org
2202W: http://www.openfabrics.org
2203S: Supported
2204F: drivers/infiniband/hw/cxgb4/
2205
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002206CXGB4VF ETHERNET DRIVER (CXGB4VF)
2207M: Casey Leedom <leedom@chelsio.com>
2208L: netdev@vger.kernel.org
2209W: http://www.chelsio.com
2210S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002211F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002212
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002213STMMAC ETHERNET DRIVER
2214M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2215L: netdev@vger.kernel.org
2216W: http://www.stlinux.com
2217S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002218F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002221M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002222L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223W: http://www.arm.linux.org.uk/
2224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002225F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002226
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002228M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002229W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002231F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
2233CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002235S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002236F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002237F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
2239CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002241S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002242F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002244CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002245M: Javier Martinez Canillas <javier@dowhile0.org>
2246L: linux-input@vger.kernel.org
2247S: Maintained
2248F: drivers/input/touchscreen/cyttsp*
2249F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002252M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253W: http://yaina.de/jreuter/
2254W: http://www.qsl.net/dl1bke/
2255L: linux-hams@vger.kernel.org
2256S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002257F: net/ax25/af_ax25.c
2258F: net/ax25/ax25_dev.c
2259F: net/ax25/ax25_ds_*
2260F: net/ax25/ax25_in.c
2261F: net/ax25/ax25_out.c
2262F: net/ax25/ax25_timer.c
2263F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002265DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002266L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002267S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002268F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002269F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002270
2271DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002272M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002273W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002274M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002276F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002277
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002279M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002280M: Ali Akcaagac <aliakc@web.de>
2281M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002283L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284L: http://lists.twibble.org/mailman/listinfo/dc395x/
2285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002286F: Documentation/scsi/dc395x.txt
2287F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002289DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002290M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002291L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002292W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002294F: include/linux/dccp.h
2295F: include/linux/tfrc.h
2296F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002297
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299W: http://linux-decnet.sourceforge.net
2300L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002301S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002302F: Documentation/networking/decnet.txt
2303F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
2305DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002306M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002308F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002310DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002311M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002312L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002314F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002315
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002317M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318W: http://www.debian.org/~dz/i8k/
2319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002320F: drivers/char/i8k.c
2321F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Doug Warzecha90563ec2005-09-06 15:17:15 -07002323DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002324M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002326F: Documentation/dcdbas.txt
2327F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002328
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002329DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002330M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002331S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002332F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002333
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002334DESIGNWARE USB3 DRD IP DRIVER
2335M: Felipe Balbi <balbi@ti.com>
2336L: linux-usb@vger.kernel.org
2337L: linux-omap@vger.kernel.org
2338T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2339S: Maintained
2340F: drivers/usb/dwc3/
2341
Kyungmin Park89d07762012-01-10 15:09:09 -08002342DEVICE FREQUENCY (DEVFREQ)
2343M: MyungJoo Ham <myungjoo.ham@samsung.com>
2344M: Kyungmin Park <kyungmin.park@samsung.com>
2345L: linux-kernel@vger.kernel.org
2346S: Maintained
2347F: drivers/devfreq/
2348
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002350M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352S: Maintained
2353
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002354DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002355M: Alasdair Kergon <agk@redhat.com>
2356M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002357L: dm-devel@redhat.com
2358W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002359Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002360T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002362F: Documentation/device-mapper/
2363F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002364F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002365F: include/linux/device-mapper.h
2366F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002367
Guenter Roeck335d7c52011-01-26 11:45:49 -08002368DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002369M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002370L: linux-i2c@vger.kernel.org
2371S: Maintained
2372F: drivers/i2c/busses/i2c-diolan-u2c.c
2373
Randy Dunlape7839f22008-10-12 16:11:45 -07002374DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002375M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002377F: Documentation/filesystems/dnotify.txt
2378F: fs/notify/dnotify/
2379F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
2381DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002382M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2384W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2385W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2386S: Maintained
2387
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002388DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002389M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002391F: Documentation/filesystems/quota.txt
2392F: fs/quota/
2393F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
Bernie Thompson702686a2012-03-01 13:52:13 -08002395DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2396M: Bernie Thompson <bernie@plugable.com>
2397L: linux-fbdev@vger.kernel.org
2398S: Maintained
2399W: http://plugable.com/category/projects/udlfb/
2400F: drivers/video/udlfb.c
2401F: include/video/udlfb.h
2402F: Documentation/fb/udlfb.txt
2403
Randy Dunlape7839f22008-10-12 16:11:45 -07002404DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002405M: Christine Caulfield <ccaulfie@redhat.com>
2406M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002407L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002408W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002409T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002410S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002411F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002412
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302413DMA BUFFER SHARING FRAMEWORK
2414M: Sumit Semwal <sumit.semwal@linaro.org>
2415S: Maintained
2416L: linux-media@vger.kernel.org
2417L: dri-devel@lists.freedesktop.org
2418L: linaro-mm-sig@lists.linaro.org
2419F: drivers/base/dma-buf*
2420F: include/linux/dma-buf*
2421F: Documentation/dma-buf-sharing.txt
2422T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2423
Dan Williamsb3e5f262007-08-07 10:26:35 -07002424DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002425M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002426M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002427S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002428F: drivers/dma/
2429F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302430T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2431T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002432
Juerg Haefligerb8250372007-06-09 10:11:16 -04002433DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002434M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002435L: lm-sensors@lm-sensors.org
2436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002437F: Documentation/hwmon/dme1737
2438F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002439
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002440DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002441M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002442L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002443S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002444F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002445
Joe Perches7d2c86b2009-04-07 20:59:01 -07002446DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002447M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002448L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002449T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002451F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002454M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455L: blinux-list@redhat.com
2456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002457F: drivers/char/dtlk.c
2458F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002460DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002461M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002462L: linux-scsi@vger.kernel.org
2463W: http://www.adaptec.com/
2464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002465F: drivers/scsi/dpt*
2466F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002467
Philipp Reisnerb411b362009-09-25 16:07:19 -07002468DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002469P: Philipp Reisner
2470P: Lars Ellenberg
2471M: drbd-dev@lists.linbit.com
2472L: drbd-user@lists.linbit.com
2473W: http://www.drbd.org
2474T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2475T: git git://git.drbd.org/drbd-8.3.git
2476S: Supported
2477F: drivers/block/drbd/
2478F: lib/lru_cache.c
2479F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002480
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002481DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002482M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002483T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002485F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002486F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002487F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002488F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002489F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002490F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002491F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
2493DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002494M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002495L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002496T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002498F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002499F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
Chris Wilson8daf7472010-09-28 14:07:26 +01002501INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002502M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002503L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002504L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002505T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002506S: Supported
2507F: drivers/gpu/drm/i915
2508F: include/drm/i915*
2509
Kyungmin Park398a6d42011-11-02 11:33:16 +09002510DRM DRIVERS FOR EXYNOS
2511M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002512M: Joonyoung Shim <jy0922.shim@samsung.com>
2513M: Seung-Woo Kim <sw0312.kim@samsung.com>
2514M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002515L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002516T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002517S: Supported
2518F: drivers/gpu/drm/exynos
2519F: include/drm/exynos*
2520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002522M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002523L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002525F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
Antti Palosaari91952bc2012-10-01 12:28:46 -03002527DVB_USB_AF9015 MEDIA DRIVER
2528M: Antti Palosaari <crope@iki.fi>
2529L: linux-media@vger.kernel.org
2530W: http://linuxtv.org/
2531W: http://palosaari.fi/linux/
2532Q: http://patchwork.linuxtv.org/project/linux-media/list/
2533T: git git://linuxtv.org/anttip/media_tree.git
2534S: Maintained
2535F: drivers/media/usb/dvb-usb-v2/af9015*
2536
2537DVB_USB_AF9035 MEDIA DRIVER
2538M: Antti Palosaari <crope@iki.fi>
2539L: linux-media@vger.kernel.org
2540W: http://linuxtv.org/
2541W: http://palosaari.fi/linux/
2542Q: http://patchwork.linuxtv.org/project/linux-media/list/
2543T: git git://linuxtv.org/anttip/media_tree.git
2544S: Maintained
2545F: drivers/media/usb/dvb-usb-v2/af9035*
2546
2547DVB_USB_ANYSEE MEDIA DRIVER
2548M: Antti Palosaari <crope@iki.fi>
2549L: linux-media@vger.kernel.org
2550W: http://linuxtv.org/
2551W: http://palosaari.fi/linux/
2552Q: http://patchwork.linuxtv.org/project/linux-media/list/
2553T: git git://linuxtv.org/anttip/media_tree.git
2554S: Maintained
2555F: drivers/media/usb/dvb-usb-v2/anysee*
2556
2557DVB_USB_AU6610 MEDIA DRIVER
2558M: Antti Palosaari <crope@iki.fi>
2559L: linux-media@vger.kernel.org
2560W: http://linuxtv.org/
2561W: http://palosaari.fi/linux/
2562Q: http://patchwork.linuxtv.org/project/linux-media/list/
2563T: git git://linuxtv.org/anttip/media_tree.git
2564S: Maintained
2565F: drivers/media/usb/dvb-usb-v2/au6610*
2566
2567DVB_USB_CE6230 MEDIA DRIVER
2568M: Antti Palosaari <crope@iki.fi>
2569L: linux-media@vger.kernel.org
2570W: http://linuxtv.org/
2571W: http://palosaari.fi/linux/
2572Q: http://patchwork.linuxtv.org/project/linux-media/list/
2573T: git git://linuxtv.org/anttip/media_tree.git
2574S: Maintained
2575F: drivers/media/usb/dvb-usb-v2/ce6230*
2576
Michael Krufkyd099dea2012-10-02 00:56:20 -03002577DVB_USB_CXUSB MEDIA DRIVER
2578M: Michael Krufky <mkrufky@linuxtv.org>
2579L: linux-media@vger.kernel.org
2580W: http://linuxtv.org/
2581W: http://github.com/mkrufky
2582Q: http://patchwork.linuxtv.org/project/linux-media/list/
2583T: git git://linuxtv.org/media_tree.git
2584S: Maintained
2585F: drivers/media/usb/dvb-usb-v2/cxusb*
2586
Antti Palosaari91952bc2012-10-01 12:28:46 -03002587DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2588M: Antti Palosaari <crope@iki.fi>
2589L: linux-media@vger.kernel.org
2590W: http://linuxtv.org/
2591W: http://palosaari.fi/linux/
2592Q: http://patchwork.linuxtv.org/project/linux-media/list/
2593T: git git://linuxtv.org/anttip/media_tree.git
2594S: Maintained
2595F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2596
2597DVB_USB_EC168 MEDIA DRIVER
2598M: Antti Palosaari <crope@iki.fi>
2599L: linux-media@vger.kernel.org
2600W: http://linuxtv.org/
2601W: http://palosaari.fi/linux/
2602Q: http://patchwork.linuxtv.org/project/linux-media/list/
2603T: git git://linuxtv.org/anttip/media_tree.git
2604S: Maintained
2605F: drivers/media/usb/dvb-usb-v2/ec168*
2606
Michael Krufky8856f5f2012-10-02 00:55:50 -03002607DVB_USB_MXL111SF MEDIA DRIVER
2608M: Michael Krufky <mkrufky@linuxtv.org>
2609L: linux-media@vger.kernel.org
2610W: http://linuxtv.org/
2611W: http://github.com/mkrufky
2612Q: http://patchwork.linuxtv.org/project/linux-media/list/
2613T: git git://linuxtv.org/mkrufky/mxl111sf.git
2614S: Maintained
2615F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2616
Antti Palosaari91952bc2012-10-01 12:28:46 -03002617DVB_USB_RTL28XXU MEDIA DRIVER
2618M: Antti Palosaari <crope@iki.fi>
2619L: linux-media@vger.kernel.org
2620W: http://linuxtv.org/
2621W: http://palosaari.fi/linux/
2622Q: http://patchwork.linuxtv.org/project/linux-media/list/
2623T: git git://linuxtv.org/anttip/media_tree.git
2624S: Maintained
2625F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2626
2627DVB_USB_V2 MEDIA DRIVER
2628M: Antti Palosaari <crope@iki.fi>
2629L: linux-media@vger.kernel.org
2630W: http://linuxtv.org/
2631W: http://palosaari.fi/linux/
2632Q: http://patchwork.linuxtv.org/project/linux-media/list/
2633T: git git://linuxtv.org/anttip/media_tree.git
2634S: Maintained
2635F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2636F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2637
Jason Baronac0ac382011-08-11 14:36:43 -04002638DYNAMIC DEBUG
2639M: Jason Baron <jbaron@redhat.com>
2640S: Maintained
2641F: lib/dynamic_debug.c
2642F: include/linux/dynamic_debug.h
2643
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002644DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002645M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002646S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002647F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002648
Antti Palosaari91952bc2012-10-01 12:28:46 -03002649E4000 MEDIA DRIVER
2650M: Antti Palosaari <crope@iki.fi>
2651L: linux-media@vger.kernel.org
2652W: http://linuxtv.org/
2653W: http://palosaari.fi/linux/
2654Q: http://patchwork.linuxtv.org/project/linux-media/list/
2655T: git git://linuxtv.org/anttip/media_tree.git
2656S: Maintained
2657F: drivers/media/tuners/e4000*
2658
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002660M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002661L: linux-eata@i-connect.net
2662L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002664F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
2666EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002667M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668L: linux-scsi@vger.kernel.org
2669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002670F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
2672EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002673M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002674L: linux-eata@i-connect.net
2675L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002677F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
2679EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002680M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002681L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682W: http://ebtables.sourceforge.net/
2683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002684F: include/linux/netfilter_bridge/ebt_*.h
2685F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
Antti Palosaari91952bc2012-10-01 12:28:46 -03002687EC100 MEDIA DRIVER
2688M: Antti Palosaari <crope@iki.fi>
2689L: linux-media@vger.kernel.org
2690W: http://linuxtv.org/
2691W: http://palosaari.fi/linux/
2692Q: http://patchwork.linuxtv.org/project/linux-media/list/
2693T: git git://linuxtv.org/anttip/media_tree.git
2694S: Maintained
2695F: drivers/media/dvb-frontends/ec100*
2696
Michael Halcrow237fead2006-10-04 02:16:22 -07002697ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002698M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002699M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002700L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002701W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002702S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002703F: Documentation/filesystems/ecryptfs.txt
2704F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002705
Alan Coxda9bb1d2006-01-18 17:44:13 -08002706EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002707M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002708L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002709W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002710S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002711F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002712F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002713F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002714
Borislav Petkovc476c232009-05-20 20:31:58 +02002715EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002716M: Doug Thompson <dougthompson@xmission.com>
2717M: Borislav Petkov <borislav.petkov@amd.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002718L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002719W: bluesmoke.sourceforge.net
2720S: Supported
2721F: drivers/edac/amd64_edac*
2722
Dave Peterson0e438e32006-03-26 01:38:55 -08002723EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002724M: Mark Gross <mark.gross@intel.com>
2725M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002726L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002727W: bluesmoke.sourceforge.net
2728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002729F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002730
2731EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002732M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002733L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002734W: bluesmoke.sourceforge.net
2735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002736F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002737
Douglas Thompson6bc78402007-07-19 01:50:12 -07002738EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002739M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002740L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002741W: bluesmoke.sourceforge.net
2742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002743F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002744
2745EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002746M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002747L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002748W: bluesmoke.sourceforge.net
2749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002750F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002751
2752EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002753M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002754L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002755W: bluesmoke.sourceforge.net
2756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002757F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002758
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002759EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002760M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002761L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002762W: bluesmoke.sourceforge.net
2763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002764F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002765
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002766EDAC-I7300
2767M: Mauro Carvalho Chehab <mchehab@redhat.com>
2768L: linux-edac@vger.kernel.org
2769W: bluesmoke.sourceforge.net
2770S: Maintained
2771F: drivers/edac/i7300_edac.c
2772
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002773EDAC-I7CORE
2774M: Mauro Carvalho Chehab <mchehab@redhat.com>
2775L: linux-edac@vger.kernel.org
2776W: bluesmoke.sourceforge.net
2777S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002778F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002779
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002780EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002781M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302782M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002783L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002784W: bluesmoke.sourceforge.net
2785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002786F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002787
2788EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002789M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002790L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002791W: bluesmoke.sourceforge.net
2792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002793F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002794
Dave Peterson0e438e32006-03-26 01:38:55 -08002795EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002796M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002797L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002798W: bluesmoke.sourceforge.net
2799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002800F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002801
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002802EDAC-SBRIDGE
2803M: Mauro Carvalho Chehab <mchehab@redhat.com>
2804L: linux-edac@vger.kernel.org
2805W: bluesmoke.sourceforge.net
2806S: Maintained
2807F: drivers/edac/sb_edac.c
2808
Clemens Ladischaf399172011-01-10 16:32:54 +01002809EDIROL UA-101/UA-1000 DRIVER
2810M: Clemens Ladisch <clemens@ladisch.de>
2811L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2812T: git git://git.alsa-project.org/alsa-kernel.git
2813S: Maintained
2814F: sound/usb/misc/ua101.c
2815
Matt Fleming1f7df952012-10-03 10:04:02 +01002816EXTENSIBLE FIRMWARE INTERFACE (EFI)
2817M: Matt Fleming <matt.fleming@intel.com>
2818L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002819T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002820S: Maintained
2821F: Documentation/x86/efi-stub.txt
2822F: arch/ia64/kernel/efi.c
2823F: arch/x86/boot/compressed/eboot.[ch]
2824F: arch/x86/include/asm/efi.h
2825F: arch/x86/platform/efi/*
2826F: drivers/firmware/efivars.c
2827F: include/linux/efi*.h
2828
Peter Jones85a00d92010-09-22 13:05:04 -07002829EFIFB FRAMEBUFFER DRIVER
2830L: linux-fbdev@vger.kernel.org
2831M: Peter Jones <pjones@redhat.com>
2832S: Maintained
2833F: drivers/video/efifb.c
2834
Josh Triplett0bee8d22006-07-30 03:03:58 -07002835EFS FILESYSTEM
2836W: http://aeschi.ch.eu.org/efs/
2837S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002838F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002839
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002840EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002841M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2842M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002843L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002844S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002845F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002846
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002847EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002848M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002849L: netdev@vger.kernel.org
2850S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002851F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002852
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002853EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002854M: Paul Gortmaker <paul.gortmaker@windriver.com>
2855M: Matt Mackall <mpm@selenic.com>
2856M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002857L: linux-embedded@vger.kernel.org
2858S: Maintained
2859
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002860EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002861M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002862L: linux-scsi@vger.kernel.org
2863W: http://sourceforge.net/projects/lpfcxxxx
2864S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002865F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002866
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002867ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002868M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002869S: Maintained
2870F: drivers/misc/cb710/
2871F: drivers/mmc/host/cb710-mmc.*
2872F: include/linux/cb710.h
2873
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002874ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2875M: Maxim Levitsky <maximlevitsky@gmail.com>
2876S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002877F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002878
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002880M: Christopher Hoover <ch@murgatroid.com>
2881M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002883F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002885EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002886M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002887S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002888T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002889F: drivers/video/s1d13xxxfb.c
2890F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002891
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002893M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002894L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002896F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
2898ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002899M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002900L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002901L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002902W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002904F: include/linux/netfilter_bridge/
2905F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
2907ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002908M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002910F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
2912EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002913M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002914L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002916F: Documentation/filesystems/ext2.txt
2917F: fs/ext2/
2918F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
2920EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002921M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002922M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002923M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002924L: linux-ext4@vger.kernel.org
2925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002926F: Documentation/filesystems/ext3.txt
2927F: fs/ext3/
2928F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002929
2930EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002931M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002932M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002933L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002934W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002935Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002937F: Documentation/filesystems/ext4.txt
2938F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
Mimi Zoharc5532b02011-08-17 18:52:24 -04002940Extended Verification Module (EVM)
2941M: Mimi Zohar <zohar@us.ibm.com>
2942S: Supported
2943F: security/integrity/evm/
2944
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002945EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2946M: MyungJoo Ham <myungjoo.ham@samsung.com>
2947M: Chanwoo Choi <cw00.choi@samsung.com>
2948L: linux-kernel@vger.kernel.org
2949S: Maintained
2950F: drivers/extcon/
2951F: Documentation/extcon/
2952
Jingoo Han0a799512012-02-06 11:30:39 +09002953EXYNOS DP DRIVER
2954M: Jingoo Han <jg1.han@samsung.com>
2955L: linux-fbdev@vger.kernel.org
2956S: Maintained
2957F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07002958F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09002959
Donghwa Lee33ad3912012-03-06 11:44:58 +09002960EXYNOS MIPI DISPLAY DRIVERS
2961M: Inki Dae <inki.dae@samsung.com>
2962M: Donghwa Lee <dh09.lee@samsung.com>
2963M: Kyungmin Park <kyungmin.park@samsung.com>
2964L: linux-fbdev@vger.kernel.org
2965S: Maintained
2966F: drivers/video/exynos/exynos_mipi*
2967F: include/video/exynos_mipi*
2968
Jean Delvaree53004e2006-01-09 23:26:14 +01002969F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002970M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002971L: lm-sensors@lm-sensors.org
2972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002973F: Documentation/hwmon/f71805f
2974F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002975
Michael Büscheea977e2012-04-02 12:14:32 -03002976FC0011 TUNER DRIVER
2977M: Michael Buesch <m@bues.ch>
2978L: linux-media@vger.kernel.org
2979S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03002980F: drivers/media/tuners/fc0011.h
2981F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03002982
Antti Palosaari91952bc2012-10-01 12:28:46 -03002983FC2580 MEDIA DRIVER
2984M: Antti Palosaari <crope@iki.fi>
2985L: linux-media@vger.kernel.org
2986W: http://linuxtv.org/
2987W: http://palosaari.fi/linux/
2988Q: http://patchwork.linuxtv.org/project/linux-media/list/
2989T: git git://linuxtv.org/anttip/media_tree.git
2990S: Maintained
2991F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
Eric Paris88b2dbd2010-08-18 12:25:50 -04002993FANOTIFY
2994M: Eric Paris <eparis@redhat.com>
2995S: Maintained
2996F: fs/notify/fanotify/
2997F: include/linux/fanotify.h
2998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003000M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001W: http://www.farsite.co.uk/
3002S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003003F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
Akinobu Mitac5408b82007-04-23 14:41:20 -07003005FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003006M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003007S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003008F: Documentation/fault-injection/
3009F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003010
Robert Lovecae727d2010-02-16 12:16:00 -08003011FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3012M: Robert Love <robert.w.love@intel.com>
3013L: devel@open-fcoe.org
3014W: www.Open-FCoE.org
3015S: Supported
3016F: drivers/scsi/libfc/
3017F: drivers/scsi/fcoe/
3018F: include/scsi/fc/
3019F: include/scsi/libfc.h
3020F: include/scsi/libfcoe.h
3021
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003022FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003023M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003024L: linux-fsdevel@vger.kernel.org
3025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003026F: include/linux/fcntl.h
3027F: include/linux/fs.h
3028F: fs/fcntl.c
3029F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003030
3031FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003032M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003033L: linux-fsdevel@vger.kernel.org
3034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003035F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003036
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003037FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003038M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003039L: lm-sensors@lm-sensors.org
3040S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003041F: drivers/hwmon/f75375s.c
3042F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003043
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003044FIREWIRE AUDIO DRIVERS
3045M: Clemens Ladisch <clemens@ladisch.de>
3046L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3047T: git git://git.alsa-project.org/alsa-kernel.git
3048S: Maintained
3049F: sound/firewire/
3050
Chris Boota511ce32012-04-14 17:50:35 -07003051FIREWIRE SBP-2 TARGET
3052M: Chris Boot <bootc@bootc.net>
3053L: linux-scsi@vger.kernel.org
3054L: target-devel@vger.kernel.org
3055L: linux1394-devel@lists.sourceforge.net
3056T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3057S: Maintained
3058F: drivers/target/sbp/
3059
Joe Perches7d2c86b2009-04-07 20:59:01 -07003060FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003061M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003062L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003063W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003064T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003066F: drivers/firewire/
3067F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003068F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003069
3070FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003071M: Ming Lei <ming.lei@canonical.com>
3072L: linux-kernel@vger.kernel.org
3073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003074F: Documentation/firmware_class/
3075F: drivers/base/firmware*.c
3076F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003077
Jiri Kosina8206f662012-05-18 13:52:29 +02003078FLOPPY DRIVER
3079M: Jiri Kosina <jkosina@suse.cz>
3080T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3081S: Odd fixes
3082F: drivers/block/floppy.c
3083
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003084FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003085M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003086W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003088F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003089
3090FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003091L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003092S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003093F: drivers/net/wan/dlci.c
3094F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003095
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003097M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003098L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003100Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003101T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003103F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003104F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003105F: drivers/video/
3106F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003107F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108
Zhang Wei173acc72008-03-01 07:42:48 -07003109FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003110M: Li Yang <leoli@freescale.com>
3111M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003112L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003114F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003115
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003116FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003117M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003118L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003119L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003121F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003122
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003123FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003124M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003125L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003126L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003128F: arch/arm/plat-mxc/include/mach/imxfb.h
3129F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003130
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003131FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003132M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3133M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003134L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003135L: netdev@vger.kernel.org
3136S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003137F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003138F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003139
Timur Tabid9e9d822008-04-24 08:45:26 +10003140FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003141M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003142L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003143S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003144F: arch/powerpc/sysdev/qe_lib/
3145F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003146
Joe Perchesb55ef9292009-10-26 16:49:46 -07003147FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003148M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003149L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003150L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003151S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003152F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003153
Li Yangbeaf53b2007-05-25 13:54:02 +08003154FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003155M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003156L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003157L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003158S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003159F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003160
Timur Tabid9e9d822008-04-24 08:45:26 +10003161FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003162M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003163L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003164S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003165F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003166
3167FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003168M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003169L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003170L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003171S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003172F: sound/soc/fsl/fsl*
3173F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003174
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003176M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003179F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180
Pavel Machek71038f52009-01-15 13:51:02 -08003181FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003182M: Pavel Machek <pavel@ucw.cz>
3183M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003184L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003185S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003186F: Documentation/power/freezing-of-tasks.txt
3187F: include/linux/freezer.h
3188F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003189
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003190FRONTSWAP API
3191M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3192L: linux-kernel@vger.kernel.org
3193S: Maintained
3194F: mm/frontswap.c
3195F: include/linux/frontswap.h
3196
David Howellsa5432f52009-04-20 15:46:45 +01003197FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003198M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01003199L: linux-cachefs@redhat.com
3200S: Supported
3201F: Documentation/filesystems/caching/
3202F: fs/fscache/
3203F: include/linux/fscache*.h
3204
David Howells5ab7ffe2007-04-10 15:10:45 +01003205FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003206M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003208F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209
Jonathan Woithe20b93732008-06-11 10:14:56 +09303210FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303211M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd0944852010-02-11 10:40:13 -05003212L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003214F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303215
Heungjun Kim4da621b2011-11-11 08:05:33 -03003216FUJITSU M-5MO LS CAMERA ISP DRIVER
3217M: Kyungmin Park <kyungmin.park@samsung.com>
3218M: Heungjun Kim <riverful.kim@samsung.com>
3219L: linux-media@vger.kernel.org
3220S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003221F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b2011-11-11 08:05:33 -03003222F: include/media/m5mols.h
3223
Robert Gerlach2d24c492012-01-18 14:26:22 +01003224FUJITSU TABLET EXTRAS
3225M: Robert Gerlach <khnz@gmx.de>
3226L: platform-driver-x86@vger.kernel.org
3227S: Maintained
3228F: drivers/platform/x86/fujitsu-tablet.c
3229
Miklos Szeredi04578f12005-09-09 13:10:22 -07003230FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003231M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003232L: fuse-devel@lists.sourceforge.net
3233W: http://fuse.sourceforge.net/
3234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003235F: fs/fuse/
3236F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003237
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003239M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003241S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003242F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243
3244GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003245M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246L: linux-scsi@vger.kernel.org
3247W: http://www.icp-vortex.com/
3248S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003249F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003251GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003252M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003254F: drivers/i2c/busses/i2c-gpio.c
3255F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003256
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003257GENERIC GPIO I2C MULTIPLEXER DRIVER
3258M: Peter Korsgaard <peter.korsgaard@barco.com>
3259L: linux-i2c@vger.kernel.org
3260S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003261F: drivers/i2c/muxes/i2c-mux-gpio.c
3262F: include/linux/i2c-mux-gpio.h
3263F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003264
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003265GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003266M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003269F: drivers/net/wan/c101.c
3270F: drivers/net/wan/hd6457*
3271F: drivers/net/wan/hdlc*
3272F: drivers/net/wan/n2.c
3273F: drivers/net/wan/pc300too.c
3274F: drivers/net/wan/pci200syn.c
3275F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003277GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003278M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003279L: linux-arch@vger.kernel.org
3280T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3281S: Maintained
3282F: include/asm-generic
3283
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003284GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003285M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003286L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003287S: Supported
3288F: drivers/uio/uio_pci_generic.c
3289
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003290GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003291M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003292L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003293W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003294T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3295T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003296S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003297F: Documentation/filesystems/gfs2*.txt
3298F: fs/gfs2/
3299F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003300
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003301GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003302M: Hansjoerg Lipp <hjlipp@web.de>
3303M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003304L: gigaset307x-common@lists.sourceforge.net
3305W: http://gigaset307x.sourceforge.net/
3306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003307F: Documentation/isdn/README.gigaset
3308F: drivers/isdn/gigaset/
3309F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003310
Grant Likelya0dc00b2011-02-12 01:48:14 -07003311GPIO SUBSYSTEM
3312M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003313M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003314S: Maintained
3315T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003316F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003317F: drivers/gpio/
3318F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003319F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003320
Harry Wei71a6d0a2011-05-11 15:13:33 -07003321GRE DEMULTIPLEXER DRIVER
3322M: Dmitry Kozlov <xeb@mail.ru>
3323L: netdev@vger.kernel.org
3324S: Maintained
3325F: net/ipv4/gre.c
3326F: include/net/gre.h
3327
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003328GRETH 10/100/1G Ethernet MAC device driver
3329M: Kristoffer Glembo <kristoffer@gaisler.com>
3330L: netdev@vger.kernel.org
3331S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003332F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003333
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003334GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003335M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003336L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003337T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003338S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003339F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003340
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003341GSPCA GL860 SUBDRIVER
3342M: Olivier Lorin <o.lorin@laposte.net>
3343L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003344T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003345S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003346F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003347
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003348GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003349M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003350L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003351T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003352S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003353F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003354
3355GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003356M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003357L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003358T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003359S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003360F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003361
Brian Johnson261982f2009-07-19 15:58:56 -03003362GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003363M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003364L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003365T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Brian Johnson261982f2009-07-19 15:58:56 -03003366S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003367F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003368
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003369GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003370M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003371L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003372T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003373S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003374F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003375
3376GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003377M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003378L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003379T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003380S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003381F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003382
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003383STK1160 USB VIDEO CAPTURE DRIVER
3384M: Ezequiel Garcia <elezegarcia@gmail.com>
3385L: linux-media@vger.kernel.org
3386T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3387S: Maintained
3388F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003389
Harry Wei71a6d0a2011-05-11 15:13:33 -07003390HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3391M: Frank Seidel <frank@f-seidel.de>
3392L: platform-driver-x86@vger.kernel.org
3393W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3394S: Maintained
3395F: drivers/platform/x86/hdaps.c
3396
3397HWPOISON MEMORY FAILURE HANDLING
3398M: Andi Kleen <andi@firstfloor.org>
3399L: linux-mm@kvack.org
3400T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3401S: Maintained
3402F: mm/memory-failure.c
3403F: mm/hwpoison-inject.c
3404
3405HYPERVISOR VIRTUAL CONSOLE DRIVER
3406L: linuxppc-dev@lists.ozlabs.org
3407S: Odd Fixes
3408F: drivers/tty/hvc/
3409
Michael Buesch844dd052006-06-26 00:24:59 -07003410HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003411M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003412M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003413L: lm-sensors@lm-sensors.org
3414W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003415T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003416T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003417S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003418F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003419F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003420F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003421
3422HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003423M: Matt Mackall <mpm@selenic.com>
3424M: Herbert Xu <herbert@gondor.apana.org.au>
3425S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003426F: Documentation/hw_random.txt
3427F: drivers/char/hw_random/
3428F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003429
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003430HARDWARE SPINLOCK CORE
3431M: Ohad Ben-Cohen <ohad@wizery.com>
3432S: Maintained
3433F: Documentation/hwspinlock.txt
3434F: drivers/hwspinlock/hwspinlock_*
3435F: include/linux/hwspinlock.h
3436
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003438L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003440F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441
Antti Palosaari91952bc2012-10-01 12:28:46 -03003442HD29L2 MEDIA DRIVER
3443M: Antti Palosaari <crope@iki.fi>
3444L: linux-media@vger.kernel.org
3445W: http://linuxtv.org/
3446W: http://palosaari.fi/linux/
3447Q: http://patchwork.linuxtv.org/project/linux-media/list/
3448T: git git://linuxtv.org/anttip/media_tree.git
3449S: Maintained
3450F: drivers/media/dvb-frontends/hd29l2*
3451
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003452HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003453M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003454L: iss_storagedev@hp.com
3455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003456F: Documentation/blockdev/cpqarray.txt
3457F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003458
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003459HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003460M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003461L: iss_storagedev@hp.com
3462S: Supported
3463F: Documentation/scsi/hpsa.txt
3464F: drivers/scsi/hpsa*.[ch]
3465F: include/linux/cciss*.h
3466
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003467HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003468M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003469L: iss_storagedev@hp.com
3470S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003471F: Documentation/blockdev/cciss.txt
3472F: drivers/block/cciss*
3473F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003474
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003476L: linux-fsdevel@vger.kernel.org
3477S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003478F: Documentation/filesystems/hfs.txt
3479F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480
3481HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003482M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483L: linux-nvidia@lists.surfsouth.com
3484W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003486F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003488HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003489M: Pavel Machek <pavel@ucw.cz>
3490M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003491L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003492S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003493F: arch/x86/power/
3494F: drivers/base/power/
3495F: kernel/power/
3496F: include/linux/suspend.h
3497F: include/linux/freezer.h
3498F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003499F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003500
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003501HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003502M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003503L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003504T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003506F: drivers/hid/
3507F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003508
Ingo Molnar38bed542007-02-22 09:09:34 +01003509HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003510M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003511T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003513F: Documentation/timers/
3514F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003515F: kernel/time/clockevents.c
3516F: kernel/time/tick*.*
3517F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003518F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003519F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003520
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003523S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003524F: drivers/net/hamradio/dmascc.c
3525F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003527HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003528M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003529W: http://www.highpoint-tech.com
3530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003531F: Documentation/scsi/hptiop.txt
3532F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003533
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003535M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536L: linux-hippi@sunsite.dk
3537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003538F: include/linux/hippidevice.h
3539F: include/linux/if_hippi.h
3540F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003541F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542
Jouni Malinenff1d2762005-05-12 22:54:16 -04003543HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003544M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003545L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003546L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003547W: http://hostap.epitest.fi/
3548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003549F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003550
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003551HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05003552L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003553S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003554F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003555
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003556HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003557M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003558S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003559F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003560
Joe Perches7d2c86b2009-04-07 20:59:01 -07003561HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003562M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003564F: Documentation/timers/hpet.txt
3565F: drivers/char/hpet.c
3566F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003567
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003568HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003569M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003571F: arch/x86/kernel/hpet.c
3572F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003573
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003575M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003578F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
Joe Perches7d2c86b2009-04-07 20:59:01 -07003580HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003581M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003582W: http://www.pharscape.org
3583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003584F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003585
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003586HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003587M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003588L: linux-input@vger.kernel.org
3589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003590F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003591
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003593M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003595F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003597Hyper-V CORE AND DRIVERS
3598M: K. Y. Srinivasan <kys@microsoft.com>
3599M: Haiyang Zhang <haiyangz@microsoft.com>
3600L: devel@linuxdriverproject.org
3601S: Maintained
3602F: drivers/hv/
3603F: drivers/hid/hid-hyperv.c
3604F: drivers/net/hyperv/
3605F: drivers/staging/hv/
3606
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003607I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003608M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003609L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003611F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003612
Jean Delvare5b543962005-08-15 19:51:02 +02003613I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003614M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
3615M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Wolfram Sangd7a5e242012-01-12 20:32:05 +01003616M: "Wolfram Sang (embedded platforms)" <w.sang@pengutronix.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003617L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003618W: http://i2c.wiki.kernel.org/
3619T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003620T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003622F: Documentation/i2c/
3623F: drivers/i2c/
3624F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003625F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626
Till Harbaume8c76ee2007-05-01 23:26:35 +02003627I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003628M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003629L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003630W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003632F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003633
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003635M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003637F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638
3639i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003640M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003641T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642S: Maintained
3643
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003645M: Tony Luck <tony.luck@intel.com>
3646M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003648T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003650F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651
Kent Yoder956c2032012-09-07 04:17:01 +08003652IBM Power in-Nest Crypto Acceleration
3653M: Kent Yoder <key@linux.vnet.ibm.com>
3654L: linux-crypto@vger.kernel.org
3655S: Supported
3656F: drivers/crypto/nx/
3657
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003658IBM Power 842 compression accelerator
3659M: Robert Jennings <rcj@linux.vnet.ibm.com>
3660S: Supported
3661F: drivers/crypto/nx/nx-842.c
3662F: include/linux/nx842.h
3663
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003665M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003667F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668
Santiago Leon9d348af2010-09-03 18:29:53 +00003669IBM Power Virtual Ethernet Device Driver
3670M: Santiago Leon <santil@linux.vnet.ibm.com>
3671L: netdev@vger.kernel.org
3672S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003673F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003674
Robert Jennings4b7652c2012-07-31 12:34:36 -05003675IBM Power Virtual SCSI/FC Device Drivers
3676M: Robert Jennings <rcj@linux.vnet.ibm.com>
3677L: linux-scsi@vger.kernel.org
3678S: Supported
3679F: drivers/scsi/ibmvscsi/
3680X: drivers/scsi/ibmvscsi/ibmvstgt.c
3681
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682IBM ServeRAID RAID DRIVER
3683P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003684M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003686S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003687F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003689ICH LPC AND GPIO DRIVER
3690M: Peter Tyser <ptyser@xes-inc.com>
3691S: Maintained
3692F: drivers/mfd/lpc_ich.c
3693F: drivers/gpio/gpio-ich.c
3694
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003695IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003696M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003698Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003699T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003701F: Documentation/ide/
3702F: drivers/ide/
3703F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704
Ike Panhc6cb8c132011-08-25 22:28:45 +08003705IDEAPAD LAPTOP EXTRAS DRIVER
3706M: Ike Panhc <ike.pan@canonical.com>
3707L: platform-driver-x86@vger.kernel.org
3708W: http://launchpad.net/ideapad-laptop
3709S: Maintained
3710F: drivers/platform/x86/ideapad-laptop.c
3711
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003712IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003713M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003714L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003716F: Documentation/cdrom/ide-cd
3717F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718
Andy Henroid27471fd2008-10-09 11:45:22 -07003719IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003720M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003721L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003722S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003723F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003724
Sergey Lapin02cf2282009-06-08 12:18:50 +00003725IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003726M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003727M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003728L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003729W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003730T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003731S: Maintained
3732F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003733F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003734F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003735
Ameya Palande9545f862012-01-10 09:00:58 -08003736IIO SUBSYSTEM AND DRIVERS
3737M: Jonathan Cameron <jic23@cam.ac.uk>
3738L: linux-iio@vger.kernel.org
3739S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003740F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003741F: drivers/staging/iio/
3742
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003743IKANOS/ADI EAGLE ADSL USB DRIVER
3744M: Matthieu Castet <castet.matthieu@free.fr>
3745M: Stanislaw Gruszka <stf_xl@wp.pl>
3746S: Maintained
3747F: drivers/usb/atm/ueagle-atm.c
3748
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003749INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003750M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003751S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003752F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003753
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003755L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003756S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003757F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758
3759INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003760M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003761M: Sean Hefty <sean.hefty@intel.com>
3762M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003763L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003764W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003765Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003766T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003768F: Documentation/infiniband/
3769F: drivers/infiniband/
3770F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Robert Lovec9f04f52005-07-15 12:21:07 -04003772INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003773M: John McCutchan <john@johnmccutchan.com>
3774M: Robert Love <rlove@rlove.org>
3775M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003777F: Documentation/filesystems/inotify.txt
3778F: fs/notify/inotify/
3779F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003780
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003781INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003782M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3783M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003784L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003785Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003786T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003788F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003789F: include/linux/input.h
3790F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003791
Henrik Rydberg3267a872010-06-24 19:10:40 -07003792INPUT MULTITOUCH (MT) PROTOCOL
3793M: Henrik Rydberg <rydberg@euromail.se>
3794L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003795T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003796S: Maintained
3797F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003798F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003799K: \b(ABS|SYN)_MT_
3800
Dave Jiang4ac13e12011-07-29 17:16:55 -07003801INTEL C600 SERIES SAS CONTROLLER DRIVER
3802M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003803M: Lukasz Dorau <lukasz.dorau@intel.com>
3804M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003805M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003806L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003807T: git git://git.code.sf.net/p/intel-sas/isci
3808S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003809F: drivers/scsi/isci/
3810F: firmware/isci/
3811
Len Brown26717172010-03-08 14:07:30 -05003812INTEL IDLE DRIVER
3813M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003814L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003815T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003816S: Supported
3817F: drivers/idle/intel_idle.c
3818
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003819INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003820M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003821L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003823F: Documentation/fb/intelfb.txt
3824F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003825
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003827M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003828L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003830F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303832INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003833M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003834L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303835W: http://www.lesswatts.org/projects/acpi/
3836S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003837F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303838
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003840M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003842F: arch/x86/kernel/microcode_core.c
3843F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003845INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003846M: Dan Williams <djbw@fb.com>
3847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003848F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003849
David Woodhouse6c8909b2008-10-18 16:12:17 +01003850INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003851M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003852L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003853T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003854S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003855F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003856F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003857
Dan Williamsb3e5f262007-08-07 10:26:35 -07003858INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003859M: Dan Williams <djbw@fb.com>
3860S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003861F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003862
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003863INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003864M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003866F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3867F: arch/arm/mach-ixp4xx/include/mach/npe.h
3868F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3869F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003870F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003871F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003872
Michael Buesch844dd052006-06-26 00:24:59 -07003873INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003874M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003876F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003877
Jeff Kirsher0d164402010-10-05 01:15:17 +00003878INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003879M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3880M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3881M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003882M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3883M: Don Skidmore <donald.c.skidmore@intel.com>
3884M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003885M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003886M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003887M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003888L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003889W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003890T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3891T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003893F: Documentation/networking/e100.txt
3894F: Documentation/networking/e1000.txt
3895F: Documentation/networking/e1000e.txt
3896F: Documentation/networking/igb.txt
3897F: Documentation/networking/igbvf.txt
3898F: Documentation/networking/ixgb.txt
3899F: Documentation/networking/ixgbe.txt
3900F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003901F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902
Len Brown6dccf9c2011-07-12 22:29:32 -04003903INTEL MRST PMU DRIVER
3904M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003905L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003906S: Supported
3907F: arch/x86/platform/mrst/pmu.*
3908
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003909INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
3910M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07003911L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003913F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07003914F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003915F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06003916
Shane Wang4bd96a72010-03-10 14:36:10 +08003917INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07003918M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
3919M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08003920M: Shane Wang <shane.wang@intel.com>
3921L: tboot-devel@lists.sourceforge.net
3922W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07003923T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08003924S: Supported
3925F: Documentation/intel_txt.txt
3926F: include/linux/tboot.h
3927F: arch/x86/kernel/tboot.c
3928
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003929INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003930M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003931M: linux-wimax@intel.com
3932L: wimax@linuxwimax.org
3933S: Supported
3934W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003935F: Documentation/wimax/README.i2400m
3936F: drivers/net/wimax/i2400m/
3937F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003938
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003939INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3940M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003941L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003942S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003943F: drivers/net/wireless/iwlegacy/
3944
Zhu Yib481de92007-09-25 17:54:57 -07003945INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07003946M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003947M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003948M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003949L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003950W: http://intellinuxwireless.org
Wey-Yi Guyb62ff7182011-09-22 15:14:49 -07003951T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07003952S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003953F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003954
Tomas Winklerde8fe022012-05-09 16:39:02 +03003955INTEL MANAGEMENT ENGINE (mei)
3956M: Tomas Winkler <tomas.winkler@intel.com>
3957L: linux-kernel@vger.kernel.org
3958S: Supported
3959F: include/linux/mei.h
3960F: drivers/misc/mei/*
3961F: Documentation/mei/*
3962
Ralf Baechlecb109a02007-08-30 23:56:30 -07003963IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003964M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965L: linux-mips@linux-mips.org
3966S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07003967F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968
Ralf Baechlecb109a02007-08-30 23:56:30 -07003969IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003970M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01003971L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003972S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003973F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003974
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003975IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003976M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003978F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979
Francois Romieu1202d6f2007-09-17 17:13:55 -07003980IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003981M: Francois Romieu <romieu@fr.zoreil.com>
3982M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003983L: netdev@vger.kernel.org
3984S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07003985F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003986
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003987IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04003988M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003989L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07003990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003991F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003992
Corey Minyard4409ebe2006-04-20 02:43:12 -07003993IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003994M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003995L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003996W: http://openipmi.sourceforge.net/
3997S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003998F: Documentation/IPMI.txt
3999F: drivers/char/ipmi/
4000F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004001
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004002IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004003M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004004L: linux-scsi@vger.kernel.org
4005W: http://www.adaptec.com/
4006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004007F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004008
4009IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004010M: Wensong Zhang <wensong@linux-vs.org>
4011M: Simon Horman <horms@verge.net.au>
4012M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004013L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004014L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004016F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004017F: include/net/ip_vs.h
4018F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004019F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
Randy Dunlape7839f22008-10-12 16:11:45 -07004021IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004022M: Jiri Kosina <jkosina@suse.cz>
4023M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004024S: Odd Fixes
Greg Kroah-Hartman282361a02011-02-22 16:23:22 -08004025F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004026
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004027IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004028M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004029L: netdev@vger.kernel.org
4030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004031F: include/linux/ipx.h
4032F: include/net/ipx.h
4033F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004034
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004036M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004037L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004038L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004040S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004041T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004042F: Documentation/networking/irda.txt
4043F: drivers/net/irda/
4044F: include/net/irda/
4045F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004047IRQ SUBSYSTEM
4048M: Thomas Gleixner <tglx@linutronix.de>
4049S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004050T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004051F: kernel/irq/
4052
Grant Likely7ab3a832012-02-14 14:06:47 -07004053IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4054M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4055M: Grant Likely <grant.likely@secretlab.ca>
4056T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4057S: Maintained
4058F: Documentation/IRQ-domain.txt
4059F: include/linux/irqdomain.h
4060F: kernel/irq/irqdomain.c
4061
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004062ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004063M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004065F: Documentation/isapnp.txt
4066F: drivers/pnp/isapnp/
4067F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004068
Harry Wei71a6d0a2011-05-11 15:13:33 -07004069iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4070M: Peter Jones <pjones@redhat.com>
4071M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4072S: Maintained
4073F: drivers/firmware/iscsi_ibft*
4074
Mike Christie14816b1e2007-11-28 16:22:06 -08004075ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004076M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004077L: open-iscsi@googlegroups.com
4078W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004079T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004081F: drivers/scsi/*iscsi*
4082F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004083
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004085M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004086L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004087L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004089T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004091F: Documentation/isdn/
4092F: drivers/isdn/
4093F: include/linux/isdn.h
4094F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095
4096ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004097M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004098L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099W: http://www.melware.de
4100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004101F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102
Jean Delvared6248702010-03-05 22:17:20 +01004103IT87 HARDWARE MONITORING DRIVER
4104M: Jean Delvare <khali@linux-fr.org>
4105L: lm-sensors@lm-sensors.org
4106S: Maintained
4107F: Documentation/hwmon/it87
4108F: drivers/hwmon/it87.c
4109
Hans Verkuil91821ff2007-12-02 09:35:33 -03004110IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004111M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004112L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004113L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004114T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004115W: http://www.ivtvdriver.org
4116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004117F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004118F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004119F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004120
Guenter Roeck4453d732010-08-09 17:21:08 -07004121JC42.4 TEMPERATURE SENSOR DRIVER
4122M: Guenter Roeck <linux@roeck-us.net>
4123L: lm-sensors@lm-sensors.org
4124S: Maintained
4125F: drivers/hwmon/jc42.c
4126F: Documentation/hwmon/jc42
4127
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004128JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004129M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004130L: jfs-discussion@lists.sourceforge.net
4131W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004132T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004134F: Documentation/filesystems/jfs.txt
4135F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004136
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004137JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004138M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004139L: netdev@vger.kernel.org
4140S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004141F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004142
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004144M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004145L: linux-mtd@lists.infradead.org
4146W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004148F: fs/jffs2/
4149F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150
Josh Triplettde456d32006-07-30 03:04:00 -07004151JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004152M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004153M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004154L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004155S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004156F: fs/jbd/
4157F: include/linux/ext3_jbd.h
4158F: include/linux/jbd.h
4159
4160JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4161M: "Theodore Ts'o" <tytso@mit.edu>
4162L: linux-ext4@vger.kernel.org
4163S: Maintained
4164F: fs/jbd2/
4165F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004166
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004167JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004168M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004169L: linux-serial@vger.kernel.org
4170S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004171F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004172
Clemens Ladischaf399172011-01-10 16:32:54 +01004173K10TEMP HARDWARE MONITORING DRIVER
4174M: Clemens Ladisch <clemens@ladisch.de>
4175L: lm-sensors@lm-sensors.org
4176S: Maintained
4177F: Documentation/hwmon/k10temp
4178F: drivers/hwmon/k10temp.c
4179
Rudolf Marek4660cb32006-10-08 22:01:26 +02004180K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004181M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004182L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004184F: Documentation/hwmon/k8temp
4185F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186
4187KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004188M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004189L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004190S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004191F: Documentation/kbuild/kconfig-language.txt
4192F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193
Vivek Goyalea6c2082006-05-20 14:59:55 -07004194KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004195M: Vivek Goyal <vgoyal@redhat.com>
4196M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004197L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004198W: http://lse.sourceforge.net/kdump/
4199S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004200F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004201
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004203M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004204L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004206F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207
Michal Marek70fb7ba2010-01-29 14:22:43 +01004208KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004209M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004210T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4211T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004212L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004214F: Documentation/kbuild/
4215F: Makefile
4216F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004217F: scripts/basic/
4218F: scripts/mk*
4219F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220
4221KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004222L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004223W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004224S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004226KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004227M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004228L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08004230S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004231F: fs/nfsd/
4232F: include/linux/nfsd/
4233F: fs/lockd/
4234F: fs/nfs_common/
4235F: net/sunrpc/
4236F: include/linux/lockd/
4237F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238
Avi Kivity426d62e2006-12-13 00:34:03 -08004239KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07004240M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004241M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004242L: kvm@vger.kernel.org
4243W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004244S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004245F: Documentation/*/kvm.txt
4246F: arch/*/kvm/
4247F: arch/*/include/asm/kvm*
4248F: include/linux/kvm*
4249F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004250
Joerg Roedelad8003d2008-09-10 20:01:07 +02004251KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004252M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004253L: kvm@vger.kernel.org
4254W: http://kvm.qumranet.com
4255S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004256F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004257F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004258
Hollis Blanchard513014b2008-04-16 23:28:08 -05004259KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004260M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004261L: kvm-ppc@vger.kernel.org
4262W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004263S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004264F: arch/powerpc/include/asm/kvm*
4265F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004266
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004267KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004268M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004269L: kvm-ia64@vger.kernel.org
4270W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004271S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004272F: Documentation/ia64/kvm.txt
4273F: arch/ia64/include/asm/kvm*
4274F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004275
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004276KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004277M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004278M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004279M: linux390@de.ibm.com
4280L: linux-s390@vger.kernel.org
4281W: http://www.ibm.com/developerworks/linux/linux390/
4282S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004283F: Documentation/s390/kvm.txt
4284F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004285F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004286F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004287
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004288KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004289M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004290W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004291L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004293F: include/linux/kexec.h
4294F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004295
David Howellse9714612010-03-29 23:42:09 +01004296KEYS/KEYRINGS:
4297M: David Howells <dhowells@redhat.com>
4298L: keyrings@linux-nfs.org
4299S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004300F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004301F: include/linux/key.h
4302F: include/linux/key-type.h
4303F: include/keys/
4304F: security/keys/
4305
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004306KEYS-TRUSTED
4307M: David Safford <safford@watson.ibm.com>
4308M: Mimi Zohar <zohar@us.ibm.com>
4309L: linux-security-module@vger.kernel.org
4310L: keyrings@linux-nfs.org
4311S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004312F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004313F: include/keys/trusted-type.h
4314F: security/keys/trusted.c
4315F: security/keys/trusted.h
4316
4317KEYS-ENCRYPTED
4318M: Mimi Zohar <zohar@us.ibm.com>
4319M: David Safford <safford@watson.ibm.com>
4320L: linux-security-module@vger.kernel.org
4321L: keyrings@linux-nfs.org
4322S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004323F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004324F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004325F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004326
Jason Wessel5b778da2010-05-20 21:04:28 -05004327KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004328M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004329W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004330L: kgdb-bugreport@lists.sourceforge.net
4331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004332F: Documentation/DocBook/kgdb.tmpl
4333F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004334F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004335F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004336F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004337F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004338
Pekka Enberg456db8c2008-04-28 22:47:29 +03004339KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004340M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004341M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004342S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004343F: Documentation/kmemcheck.txt
4344F: arch/x86/include/asm/kmemcheck.h
4345F: arch/x86/mm/kmemcheck/
4346F: include/linux/kmemcheck.h
4347F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004348
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004349KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004350M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004351S: Maintained
4352F: Documentation/kmemleak.txt
4353F: include/linux/kmemleak.h
4354F: mm/kmemleak.c
4355F: mm/kmemleak-test.c
4356
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004357KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004358M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4359M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4360M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004361M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004363F: Documentation/kprobes.txt
4364F: include/linux/kprobes.h
4365F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004366
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004367KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004368M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004369W: http://miguelojeda.es/auxdisplay.htm
4370W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004372F: Documentation/auxdisplay/ks0108
4373F: drivers/auxdisplay/ks0108.c
4374F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004375
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004378S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004379F: Documentation/networking/lapb-module.txt
4380F: include/*/lapb.h
4381F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382
4383LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004384M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385L: linux-scsi@vger.kernel.org
4386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004387F: Documentation/scsi/53c700.txt
4388F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389
Richard Purdie263de9b2006-05-15 09:44:16 -07004390LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004391M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004392M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004393L: linux-leds@vger.kernel.org
4394T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004396F: drivers/leds/
4397F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004398
Jean Delvareb0461a42011-06-15 15:08:46 -07004399LEGACY EEPROM DRIVER
4400M: Jean Delvare <khali@linux-fr.org>
4401S: Maintained
4402F: Documentation/misc-devices/eeprom
4403F: drivers/misc/eeprom/eeprom.c
4404
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004406M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407L: legousb-devel@lists.sourceforge.net
4408W: http://legousb.sourceforge.net/
4409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004410F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411
Michael Krufky055616a2012-10-02 00:56:06 -03004412LG2160 MEDIA DRIVER
4413M: Michael Krufky <mkrufky@linuxtv.org>
4414L: linux-media@vger.kernel.org
4415W: http://linuxtv.org/
4416W: http://github.com/mkrufky
4417Q: http://patchwork.linuxtv.org/project/linux-media/list/
4418T: git git://linuxtv.org/mkrufky/tuners.git
4419S: Maintained
4420F: drivers/media/dvb-frontends/lg2160.*
4421
Michael Krufky6f0e7722012-10-02 00:56:00 -03004422LGDT3305 MEDIA DRIVER
4423M: Michael Krufky <mkrufky@linuxtv.org>
4424L: linux-media@vger.kernel.org
4425W: http://linuxtv.org/
4426W: http://github.com/mkrufky
4427Q: http://patchwork.linuxtv.org/project/linux-media/list/
4428T: git git://linuxtv.org/mkrufky/tuners.git
4429S: Maintained
4430F: drivers/media/dvb-frontends/lgdt3305.*
4431
Rusty Russell568a17f2007-10-25 14:12:24 +10004432LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004433M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004434L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004435W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004436S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004437F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004438F: arch/x86/lguest/
4439F: drivers/lguest/
4440F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004441F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004442
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004444M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445W: http://www.ibm.com/linux/ltc/projects/ppc
4446S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004447F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004449LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004450M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4451M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004453L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004454Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004455T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004457F: Documentation/powerpc/
4458F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459
4460LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004461M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004463L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004465F: arch/powerpc/platforms/powermac/
4466F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467
Grant Likely77a76362008-07-12 12:11:43 -06004468LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004469M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004470L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004471T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004473F: arch/powerpc/platforms/512x/
4474F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475
4476LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004477M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004478M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004480L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004481T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004483F: arch/powerpc/platforms/40x/
4484F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485
Grant Likely260c02a2007-10-02 12:15:34 +10004486LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004487M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004488W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004489L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004490T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004492F: arch/powerpc/*/*virtex*
4493F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494
Tom Rinie93adf12005-07-26 12:49:53 -07004495LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004496M: Vitaly Bordug <vitb@kernel.crashing.org>
4497M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004498W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004499L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004500S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004501F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004502
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004504M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004505W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004506L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004507S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004508F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004509F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510
Olof Johanssonab06ff32006-09-06 14:44:54 -05004511LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004512M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004513L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004514S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004515F: arch/powerpc/platforms/pasemi/
4516F: drivers/*/*pasemi*
4517F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004518
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004520M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004521L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522S: Supported
4523
Harry Weia23ce6d2011-02-11 16:52:20 +01004524LIS3LV02D ACCELEROMETER DRIVER
4525M: Eric Piel <eric.piel@tremplin-utc.net>
4526S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004527F: Documentation/misc-devices/lis3lv02d
4528F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004529F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004530
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004531LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004532M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004534F: include/linux/llc.h
4535F: include/net/llc*
4536F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004537
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004538LM73 HARDWARE MONITOR DRIVER
4539M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4540L: lm-sensors@lm-sensors.org
4541S: Maintained
4542F: drivers/hwmon/lm73.c
4543
Jean Delvare156e2d12011-07-25 21:46:11 +02004544LM78 HARDWARE MONITOR DRIVER
4545M: Jean Delvare <khali@linux-fr.org>
4546L: lm-sensors@lm-sensors.org
4547S: Maintained
4548F: Documentation/hwmon/lm78
4549F: drivers/hwmon/lm78.c
4550
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004552M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004553L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004555F: Documentation/hwmon/lm83
4556F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557
4558LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004559M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004560L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004562F: Documentation/hwmon/lm90
4563F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004565LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004566M: Peter Zijlstra <peterz@infradead.org>
4567M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004568T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004570F: Documentation/lockdep*.txt
4571F: Documentation/lockstat.txt
4572F: include/linux/lockdep.h
4573F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004574
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004575LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004576M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004577L: linux-ntfs-dev@lists.sourceforge.net
4578W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004580F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004581F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582
Joern Engelef6ada32009-11-20 22:17:12 +01004583LogFS
4584M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304585M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004586L: logfs@logfs.org
4587W: logfs.org
4588S: Maintained
4589F: fs/logfs/
4590
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004591LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004592M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004593M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004594L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004595L: linux-scsi@vger.kernel.org
4596W: http://www.lsilogic.com/support
4597S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004598F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004599
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004601M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602L: linux-scsi@vger.kernel.org
4603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004604F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605
Guenter Roecke5f5c992010-06-25 11:59:54 -07004606LTC4261 HARDWARE MONITOR DRIVER
4607M: Guenter Roeck <linux@roeck-us.net>
4608L: lm-sensors@lm-sensors.org
4609S: Maintained
4610F: Documentation/hwmon/ltc4261
4611F: drivers/hwmon/ltc4261.c
4612
Mike Frysinger81365c32008-10-29 14:01:12 -07004613LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004614M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004615M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004616M: Cyril Hrubis <chrubis@suse.cz>
4617M: Caspar Zhang <caspar@casparzhang.com>
4618M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004619L: ltp-list@lists.sourceforge.net (subscribers-only)
4620W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004621T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004622T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004623S: Maintained
4624
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004625M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004626M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004627L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004628L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4629W: http://www.linux-m32r.org/
4630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004631F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004632
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004634M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635L: linux-m68k@lists.linux-m68k.org
4636W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004637T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004639F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004640F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641
4642M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004643M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004645L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004647F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648
4649M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004650M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651W: http://www.tazenda.demon.co.uk/phil/linux-hp
4652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004653F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654
Jiri Benc64a327a2007-05-05 11:47:08 -07004655MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004656M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004657L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004658W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004659T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4660T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004662F: Documentation/networking/mac80211-injection.txt
4663F: include/net/mac80211.h
4664F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004665
Stefano Brivio1036d862007-12-23 04:46:27 +01004666MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004667M: Stefano Brivio <stefano.brivio@polimi.it>
4668M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004669L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004670W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004671T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4672T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004674F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004675
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004676MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004677M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004678L: netdev@vger.kernel.org
4679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004680F: drivers/net/macvlan.c
4681F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004682
Michael Kerriskfaf16682005-07-31 22:34:47 -07004683MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004684M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004685W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004686L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004687S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004688
stephen hemminger44c14c12012-04-02 12:59:47 +00004689MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4690M: Mirko Lindner <mlindner@marvell.com>
4691M: Stephen Hemminger <shemminger@vyatta.com>
4692L: netdev@vger.kernel.org
4693S: Maintained
4694F: drivers/net/ethernet/marvell/sk*
4695
Stefano Brivio74cda162007-11-19 20:27:46 +01004696MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004697M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004698L: libertas-dev@lists.infradead.org
4699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004700F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004701
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004702MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004703M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004704L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004705S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004706F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004707F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708
Bing Zhaofcad5842011-07-13 13:11:58 -07004709MARVELL MWIFIEX WIRELESS DRIVER
4710M: Bing Zhao <bzhao@marvell.com>
4711L: linux-wireless@vger.kernel.org
4712S: Maintained
4713F: drivers/net/wireless/mwifiex/
4714
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004715MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004716M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004717L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004718S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004719F: drivers/net/wireless/mwl8k.c
4720
Pierre Ossman2a695672009-03-16 19:52:26 +01004721MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004722M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004723S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004724F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004725
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004727L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004728S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004729F: drivers/video/matrox/matroxfb_*
4730F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731
Guenter Roeckca462082012-06-01 23:28:23 -07004732MAX16065 HARDWARE MONITOR DRIVER
4733M: Guenter Roeck <linux@roeck-us.net>
4734L: lm-sensors@lm-sensors.org
4735S: Maintained
4736F: Documentation/hwmon/max16065
4737F: drivers/hwmon/max16065.c
4738
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004739MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004740M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004741L: lm-sensors@lm-sensors.org
4742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004743F: Documentation/hwmon/max6650
4744F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004745
Joe Perches127c49a2009-04-08 08:34:04 -07004746MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004747M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004748P: LinuxTV.org Project
4749L: linux-media@vger.kernel.org
4750W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004751Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches08deed12012-03-23 15:01:57 -07004752T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Joe Perches127c49a2009-04-08 08:34:04 -07004753S: Maintained
4754F: Documentation/dvb/
4755F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004756F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004757F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004758F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004759F: include/media/
4760F: include/linux/dvb/
4761F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004762
4763MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004764M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004765L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004766W: http://megaraid.lsilogic.com
4767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004768F: Documentation/scsi/megaraid.txt
4769F: drivers/scsi/megaraid.*
4770F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004771
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004772MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774W: http://www.linux-mm.org
4775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004776F: include/linux/mm.h
4777F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004778
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004779MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004780M: Johannes Weiner <hannes@cmpxchg.org>
4781M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004782M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004783M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004784L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004785L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004787F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004788F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004789
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004791M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004793W: http://www.linux-mtd.infradead.org/
4794Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004795T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004797F: drivers/mtd/
4798F: include/linux/mtd/
4799F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800
Michal Simekc6375b02009-03-27 14:25:52 +01004801MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004802M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004803L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004804W: http://www.monstr.eu/fdt/
4805T: git git://git.monstr.eu/linux-2.6-microblaze.git
4806S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004807F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808
4809MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004810M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004812F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813
4814MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004815M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004817W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004818T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004819Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004820S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004821F: Documentation/mips/
4822F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004825M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004827F: include/linux/module.h
4828F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829
4830MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004832S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004833F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004834F: drivers/media/pci/meye/
Joe Perches679655d2009-04-07 20:44:32 -07004835F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836
Pavel Pisac58ff042007-05-16 01:10:41 +02004837MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004838M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004839L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004841F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004842
Jiri Slabyb9705b62008-04-30 00:53:48 -07004843MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004844M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004846F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004847F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004848
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004849MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004850M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004851L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004853F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004854
Anisse Astier0f1006b2009-12-17 11:28:49 +01004855MSI WMI SUPPORT
4856M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05004857L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004858S: Supported
4859F: drivers/platform/x86/msi-wmi.c
4860
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004861MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004862M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004863T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004864S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004865F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004866
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004867MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004868M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004869L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004870T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004872F: drivers/mmc/
4873F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004874
David Brownell15a05802007-08-08 09:12:54 -07004875MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004876S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004877F: drivers/mmc/host/mmc_spi.c
4878F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004879
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004881M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004883F: Documentation/sound/oss/MultiSound
4884F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885
Jiri Slabyd7354102006-12-08 02:38:35 -08004886MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004887S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004888F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004889F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004890
Felipe Balbi550a7372008-07-24 12:27:36 +03004891MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004892M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004893L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004894T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004896F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004897
Michael Krufkyea0af5f2012-10-02 00:55:41 -03004898MXL5007T MEDIA DRIVER
4899M: Michael Krufky <mkrufky@linuxtv.org>
4900L: linux-media@vger.kernel.org
4901W: http://linuxtv.org/
4902W: http://github.com/mkrufky
4903Q: http://patchwork.linuxtv.org/project/linux-media/list/
4904T: git git://linuxtv.org/mkrufky/tuners.git
4905S: Maintained
4906F: drivers/media/tuners/mxl5007t.*
4907
Brice Goglin2d3cf582008-05-17 12:45:36 +02004908MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004909M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004910L: netdev@vger.kernel.org
4911W: http://www.myri.com/scs/download-Myri10GE.html
4912S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004913F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004914
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04004916S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004917F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918
Daniel Mack23dc05a2011-05-18 11:28:38 +02004919NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4920M: Daniel Mack <zonque@gmail.com>
4921S: Maintained
4922L: alsa-devel@alsa-project.org
4923W: http://www.native-instruments.com
4924F: sound/usb/caiaq/
4925
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004927M: Petr Vandrovec <petr@vandrovec.name>
4928S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004929F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930
4931NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004932M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933L: linux-scsi@vger.kernel.org
4934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004935F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004937NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004938M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004939L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004940W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004941S: Supported
4942F: drivers/infiniband/hw/nes/
4943
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004944NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05004945M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07004946L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004948F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004949
Jon Masonb2f5a052010-07-15 08:47:27 +00004950NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00004951M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07004952L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07004953S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004954F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00004955F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07004956F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07004957
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959P: Harald Welte
4960P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01004961M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004962M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07004963L: netfilter-devel@vger.kernel.org
4964L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004965L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966W: http://www.netfilter.org/
4967W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02004968T: git git://1984.lsi.us.es/nf
4969T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004971F: include/linux/netfilter*
4972F: include/linux/netfilter/
4973F: include/net/netfilter/
4974F: net/*/netfilter.c
4975F: net/*/netfilter/
4976F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977
Paul Moore4cc67732006-09-25 15:57:13 -07004978NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00004979M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07004980W: http://netlabel.sf.net
4981L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00004982S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004983F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004984F: include/net/netlabel.h
4985F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004986
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004988M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004990W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004992F: include/linux/netrom.h
4993F: include/net/netrom.h
4994F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004996NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004997M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004999F: Documentation/blockdev/nbd.txt
5000F: drivers/block/nbd.c
5001F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002
Neil Horman6e436502009-10-05 03:56:55 +00005003NETWORK DROP MONITOR
5004M: Neil Horman <nhorman@tuxdriver.com>
5005L: netdev@vger.kernel.org
5006S: Maintained
5007W: https://fedorahosted.org/dropwatch/
5008F: net/core/drop_monitor.c
5009
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005011M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005012L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005013W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00005014W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005015T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5016T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005018F: net/
5019F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005020F: include/linux/in.h
5021F: include/linux/net.h
5022F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023
5024NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005025M: "David S. Miller" <davem@davemloft.net>
5026M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005027M: James Morris <jmorris@namei.org>
5028M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5029M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005030L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005031T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005033F: net/ipv4/
5034F: net/ipv6/
5035F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005036F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037
David S. Miller73b76562012-10-16 14:08:40 -04005038NETWORKING [IPSEC]
5039M: Steffen Klassert <steffen.klassert@secunet.com>
5040M: Herbert Xu <herbert@gondor.apana.org.au>
5041M: "David S. Miller" <davem@davemloft.net>
5042L: netdev@vger.kernel.org
5043T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5044S: Maintained
5045F: net/xfrm/
5046F: net/key/
5047F: net/ipv4/xfrm*
5048F: net/ipv6/xfrm*
5049F: include/uapi/linux/xfrm.h
5050F: include/net/xfrm.h
5051
James Morris10e2ff12007-08-25 14:41:28 -07005052NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005053M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005054L: netdev@vger.kernel.org
5055S: Maintained
5056
John W. Linville29f8f632006-01-18 14:52:48 -08005057NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005058M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005059L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005060Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005061T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005062S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005063F: net/mac80211/
5064F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005065F: net/wireless/
5066F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005067F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005068F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005069F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005070
Joe Perches788873a2009-04-16 09:38:45 +00005071NETWORKING DRIVERS
5072L: netdev@vger.kernel.org
5073W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005074T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5075T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005076S: Odd Fixes
5077F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005078F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005079F: include/linux/netdevice.h
5080F: include/linux/arcdevice.h
5081F: include/linux/etherdevice.h
5082F: include/linux/fcdevice.h
5083F: include/linux/fddidevice.h
5084F: include/linux/hippidevice.h
5085F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005086
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005087NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005088M: Sony Chacko <sony.chacko@qlogic.com>
5089M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005090L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005091W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005092S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005093F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005094
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005095NFC SUBSYSTEM
5096M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5097M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5098M: Samuel Ortiz <sameo@linux.intel.com>
5099L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005100L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005101S: Maintained
5102F: net/nfc/
5103F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005104F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005105F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005107NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005108M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005109L: linux-nfs@vger.kernel.org
5110W: http://client.linux-nfs.org
5111T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005113F: fs/lockd/
5114F: fs/nfs/
5115F: fs/nfs_common/
5116F: net/sunrpc/
5117F: include/linux/lockd/
5118F: include/linux/nfs*
5119F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120
5121NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005122M: Jan-Pascal van Best <janpascal@vanbest.org>
5123M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005124L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005126F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005128NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005129M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005130L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005131W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005132T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005133S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005134F: Documentation/filesystems/nilfs2.txt
5135F: fs/nilfs2/
5136F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005137
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005139M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005142F: Documentation/scsi/NinjaSCSI.txt
5143F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144
5145NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005146M: GOTO Masanori <gotom@debian.or.jp>
5147M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005150F: Documentation/scsi/NinjaSCSI.txt
5151F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005154M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005156W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005157T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005158S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005159F: Documentation/filesystems/ntfs.txt
5160F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005162NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005163M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005164L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005165S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005166F: drivers/video/riva/
5167F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168
Tony Lindgrenf5525782009-05-28 13:23:53 -07005169OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005170M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005171L: linux-omap@vger.kernel.org
5172W: http://www.muru.com/linux/omap/
5173W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005174Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005175T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005176S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07005177F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005178F: drivers/i2c/busses/i2c-omap.c
5179F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005180
5181OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005182M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005183L: linux-omap@vger.kernel.org
5184S: Maintained
5185F: arch/arm/*omap*/*clock*
5186
5187OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005188M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005189L: linux-omap@vger.kernel.org
5190S: Maintained
5191F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005192F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005193
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005194OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5195M: Rajendra Nayak <rnayak@ti.com>
5196M: Paul Walmsley <paul@pwsan.com>
5197L: linux-omap@vger.kernel.org
5198S: Maintained
5199F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5200F: arch/arm/mach-omap2/powerdomain44xx.c
5201F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5202F: arch/arm/mach-omap2/clockdomain44xx.c
5203
Tony Lindgrenf5525782009-05-28 13:23:53 -07005204OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005205M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005206M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005207L: alsa-devel@alsa-project.org (subscribers-only)
5208L: linux-omap@vger.kernel.org
5209S: Maintained
5210F: sound/soc/omap/
5211
5212OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005213M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005214L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005215L: linux-omap@vger.kernel.org
5216S: Maintained
5217F: drivers/video/omap/
5218
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005219OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005220M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005221L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005222L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005223S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005224F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005225F: Documentation/arm/OMAP/DSS
5226
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005227OMAP HARDWARE SPINLOCK SUPPORT
5228M: Ohad Ben-Cohen <ohad@wizery.com>
5229L: linux-omap@vger.kernel.org
5230S: Maintained
5231F: drivers/hwspinlock/omap_hwspinlock.c
5232F: arch/arm/mach-omap2/hwspinlock.c
5233
Tony Lindgrenf5525782009-05-28 13:23:53 -07005234OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005235M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005236L: linux-omap@vger.kernel.org
5237S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005238F: drivers/mmc/host/omap.c
5239
5240OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305241M: Venkatraman S <svenkatr@ti.com>
5242L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005243L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305244S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005245F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005246
5247OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005248M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005249S: Maintained
5250F: drivers/char/hw_random/omap-rng.c
5251
Paul Walmsleyf400c822010-12-06 19:08:54 -07005252OMAP HWMOD SUPPORT
5253M: Benoît Cousson <b-cousson@ti.com>
5254M: Paul Walmsley <paul@pwsan.com>
5255L: linux-omap@vger.kernel.org
5256S: Maintained
5257F: arch/arm/mach-omap2/omap_hwmod.c
5258F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5259
5260OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5261M: Benoît Cousson <b-cousson@ti.com>
5262L: linux-omap@vger.kernel.org
5263S: Maintained
5264F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5265
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005266OMAP IMAGE SIGNAL PROCESSOR (ISP)
5267M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5268L: linux-media@vger.kernel.org
5269S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005270F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005271
Tony Lindgrenf5525782009-05-28 13:23:53 -07005272OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005273M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005274L: linux-usb@vger.kernel.org
5275L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005276T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005277S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005278F: drivers/usb/*/*omap*
5279F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005280
Kevin Hilman6d994712012-07-16 10:05:07 -07005281OMAP GPIO DRIVER
5282M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5283M: Kevin Hilman <khilman@ti.com>
5284L: linux-omap@vger.kernel.org
5285S: Maintained
5286F: drivers/gpio/gpio-omap.c
5287
Bob Copeland0ad122d2008-07-25 19:45:18 -07005288OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005289M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005290L: linux-karma-devel@lists.sourceforge.net
5291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005292F: Documentation/filesystems/omfs.txt
5293F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005294
Harald Weltec1986ee2005-11-13 16:06:29 -08005295OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005296M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005298F: drivers/char/pcmcia/cm4000_cs.c
5299F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005300
Harald Welte77c44ab2005-11-13 16:06:26 -08005301OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005302M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005304F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005305
Jonathan Corbet77d51402007-03-22 19:44:17 -03005306OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005307M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005308L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005309T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005310S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005311F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005312
Thomas Gleixner431bca72007-05-02 09:31:35 +02005313ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005314M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005315L: linux-mtd@lists.infradead.org
5316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005317F: drivers/mtd/onenand/
5318F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005319
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005321M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322L: osst-users@lists.sourceforge.net
5323L: linux-scsi@vger.kernel.org
5324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005325F: drivers/scsi/osst*
5326F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005328OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005329M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005330L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005332F: Documentation/i2c/busses/i2c-ocores
5333F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005334
Grant Likely860c44c2009-10-26 16:49:49 -07005335OPEN FIRMWARE AND FLATTENED DEVICE TREE
5336M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005337M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005338L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005339W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005340T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005341S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005342F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005343F: drivers/of
5344F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005345F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005346K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005347K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005348
Jonas Bonn19f9d392011-06-04 22:00:38 +03005349OPENRISC ARCHITECTURE
5350M: Jonas Bonn <jonas@southpole.se>
5351W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005352L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005353S: Maintained
5354T: git git://openrisc.net/~jonas/linux
5355F: arch/openrisc
5356
Jesse Grossccb13522011-10-25 19:26:31 -07005357OPENVSWITCH
5358M: Jesse Gross <jesse@nicira.com>
5359L: dev@openvswitch.org
5360W: http://openvswitch.org
5361T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5362S: Maintained
5363F: net/openvswitch/
5364
Clemens Ladischaf399172011-01-10 16:32:54 +01005365OPL4 DRIVER
5366M: Clemens Ladisch <clemens@ladisch.de>
5367L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5368T: git git://git.alsa-project.org/alsa-kernel.git
5369S: Maintained
5370F: sound/drivers/opl4/
5371
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07005373M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374L: oprofile-list@lists.sf.net
5375S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005376F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005377F: arch/*/oprofile/
5378F: drivers/oprofile/
5379F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005381ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005382M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005383M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005384L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5385W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005386T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005387S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005388F: Documentation/filesystems/ocfs2.txt
5389F: Documentation/filesystems/dlmfs.txt
5390F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005391
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005393L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005394W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005395W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005396S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005397F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005399OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005400M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005401M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005402L: osd-dev@open-osd.org
5403W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005404T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005405S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005406F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005407F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005408F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005409
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005410P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005411M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005412L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005413W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005415F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005416
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005417PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005418M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005419L: netdev@vger.kernel.org
5420S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005421F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005422
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005423PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005424M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005425L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005427F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005428
Steffen Klassert48fc2672010-08-13 10:10:46 -04005429PADATA PARALLEL EXECUTION MECHANISM
5430M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005431L: linux-crypto@vger.kernel.org
5432S: Maintained
5433F: kernel/padata.c
5434F: include/linux/padata.h
5435F: Documentation/padata.txt
5436
Harald Welte709ee532008-09-23 17:46:57 +02005437PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005438M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05005439L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005441F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005442
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005443PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005444M: David Howells <dhowells@redhat.com>
5445M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005446L: linux-am33-list@redhat.com (moderated for non-subscribers)
5447W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005449F: Documentation/mn10300/
5450F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005451
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005453L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005454S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005455F: drivers/parport/
5456F: include/linux/parport*.h
5457F: drivers/char/ppdev.c
5458F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005460PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005461M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005462M: Chris Wright <chrisw@sous-sol.org>
5463M: Alok Kataria <akataria@vmware.com>
5464M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005465L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005466S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005467F: Documentation/ia64/paravirt_ops.txt
5468F: arch/*/kernel/paravirt*
5469F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005470
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005472M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005473L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474W: http://www.torque.net/linux-pp.html
5475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005476F: Documentation/blockdev/paride.txt
5477F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478
5479PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005480M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005481M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005482L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005484Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005485T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005487F: arch/parisc/
5488F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489
Jim Cromie1662d322006-10-06 00:43:59 -07005490PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005491M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005492L: lm-sensors@lm-sensors.org
5493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005494F: Documentation/hwmon/pc87360
5495F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005496
5497PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005498M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005500F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005501
Jean Delvare1ad107f2010-08-14 21:09:00 +02005502PC87427 HARDWARE MONITORING DRIVER
5503M: Jean Delvare <khali@linux-fr.org>
5504L: lm-sensors@lm-sensors.org
5505S: Maintained
5506F: Documentation/hwmon/pc87427
5507F: drivers/hwmon/pc87427.c
5508
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005509PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005510M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005511S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005512F: drivers/leds/leds-pca9532.c
5513F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005514
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005515PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005516M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005517L: linux-i2c@vger.kernel.org
5518S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005519F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005520
Wolfram Sanga1867d32009-09-18 22:45:51 +02005521PCA9564/PCA9665 I2C BUS DRIVER
5522M: Wolfram Sang <w.sang@pengutronix.de>
5523L: linux-i2c@vger.kernel.org
5524S: Maintained
5525F: drivers/i2c/algos/i2c-algo-pca.c
5526F: drivers/i2c/busses/i2c-pca-*
5527F: include/linux/i2c-algo-pca.h
5528F: include/linux/i2c-pca-platform.h
5529
Khalid Aziz3971dae2012-04-12 12:49:13 -07005530PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005531M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005532S: Maintained
5533F: drivers/firmware/pcdp.*
5534
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005535PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005536M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005537L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005539F: Documentation/PCI/pci-error-recovery.txt
5540F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005541
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005543M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005544L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005545Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005546T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005548F: Documentation/PCI/
5549F: drivers/pci/
5550F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005553P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005554L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005555W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005556T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005558F: Documentation/pcmcia/
5559F: drivers/pcmcia/
5560F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561
5562PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005563M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005564L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005565S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005566F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567
Steffen Klassert48fc2672010-08-13 10:10:46 -04005568PCRYPT PARALLEL CRYPTO ENGINE
5569M: Steffen Klassert <steffen.klassert@secunet.com>
5570L: linux-crypto@vger.kernel.org
5571S: Maintained
5572F: crypto/pcrypt.c
5573F: include/crypto/pcrypt.h
5574
Tejun Heoe72df0b2010-12-10 17:02:49 +01005575PER-CPU MEMORY ALLOCATOR
5576M: Tejun Heo <tj@kernel.org>
5577M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005578T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5579S: Maintained
5580F: include/linux/percpu*.h
5581F: mm/percpu*.c
5582F: arch/*/include/asm/percpu.h
5583
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005584PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005585M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005587F: include/linux/delayacct.h
5588F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005589
Ingo Molnar57c0c152009-09-21 12:20:38 +02005590PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005591M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5592M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005593M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005594M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005595T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005596S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005597F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005598F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005599F: arch/*/kernel/perf_event*.c
5600F: arch/*/kernel/*/perf_event*.c
5601F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005602F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005603F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005604F: arch/*/kernel/perf_callchain.c
5605F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005606
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005607PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005608M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005609L: linux-abi-devel@lists.sourceforge.net
5610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005611F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005612
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005613PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005614M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005615S: Supported
5616F: Documentation/networking/phonet.txt
5617F: include/linux/phonet.h
5618F: include/net/phonet/
5619F: net/phonet/
5620
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005622M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623L: linux-mtd@lists.infradead.org
5624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005625F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626
Bruno Prémontefdbb102012-07-30 21:39:03 +02005627PICOLCD HID DRIVER
5628M: Bruno Prémont <bonbons@linux-vserver.org>
5629L: linux-input@vger.kernel.org
5630S: Maintained
5631F: drivers/hid/hid-picolcd*
5632
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005633PICOXCELL SUPPORT
5634M: Jamie Iles <jamie@jamieiles.com>
5635L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5636T: git git://github.com/jamieiles/linux-2.6-ji.git
5637S: Supported
5638F: arch/arm/mach-picoxcell
5639F: drivers/*/picoxcell*
5640F: drivers/*/*/picoxcell*
5641
Linus Walleij2744e8a2011-05-02 20:50:54 +02005642PIN CONTROL SUBSYSTEM
5643M: Linus Walleij <linus.walleij@linaro.org>
5644S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005645F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005646F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005647
Viresh Kumardeda8282012-03-28 22:27:07 +05305648PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005649M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305650L: spear-devel@list.st.com
5651L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5652W: http://www.st.com/spear
5653S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005654F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305655
Peter Osterlund249a6772005-09-27 21:45:30 -07005656PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005657M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005659F: drivers/block/pktcdvd.c
5660F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005661
GuanXuetaob31d8272011-01-16 00:35:49 +08005662PKUNITY SOC DRIVERS
5663M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5664W: http://mprc.pku.edu.cn/~guanxuetao/linux
5665S: Maintained
5666T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5667F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005668F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005669F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005670F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005671
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005672PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005673M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005674L: lm-sensors@lm-sensors.org
5675W: http://www.lm-sensors.org/
5676W: http://www.roeck-us.net/linux/drivers/
5677T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5678S: Maintained
5679F: Documentation/hwmon/pmbus
5680F: drivers/hwmon/pmbus/
5681F: include/linux/i2c/pmbus.h
5682
Anil Ravindranath89a36812009-08-25 17:35:18 -07005683PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005684M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005685L: linux-scsi@vger.kernel.org
5686W: http://www.pmc-sierra.com/
5687S: Supported
5688F: drivers/scsi/pmcraid.*
5689
jack wangdbf9bfe2009-10-14 16:19:21 +08005690PMC SIERRA PM8001 DRIVER
5691M: jack_wang@usish.com
5692M: lindar_liu@usish.com
5693L: linux-scsi@vger.kernel.org
5694S: Supported
5695F: drivers/scsi/pm8001/
5696
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005698M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005699T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005701F: fs/timerfd.c
5702F: include/linux/timer*
5703F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704
Anton Vorontsov3be86142007-07-15 04:43:36 +04005705POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005706M: Anton Vorontsov <cbou@mail.ru>
5707M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005708T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005710F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005711F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005712
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005714M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005715M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005717F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718
Vitaly Wool999445d2007-01-04 13:07:03 +01005719PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005720M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005721L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005723F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005724
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005726M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727L: linux-ppp@vger.kernel.org
5728S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005729F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730
5731PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005732M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005734F: net/atm/pppoatm.c
5735F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736
5737PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005738M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005740F: drivers/net/ppp/pppoe.c
5741F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742
James Chapmana6d23702007-06-27 15:53:17 -07005743PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005744M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005745S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005746F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005747F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005748
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005749PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005750M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005751W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5752L: linuxpps@ml.enneenne.com (subscribers-only)
5753S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005754F: Documentation/pps/
5755F: drivers/pps/
5756F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005757
Harry Wei71a6d0a2011-05-11 15:13:33 -07005758PPTP DRIVER
5759M: Dmitry Kozlov <xeb@mail.ru>
5760L: netdev@vger.kernel.org
5761S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005762F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005763W: http://sourceforge.net/projects/accel-pptp
5764
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005766M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767L: kpreempt-tech@lists.sourceforge.net
5768W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5769S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005770F: Documentation/preempt-locking.txt
5771F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772
5773PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005774M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005775L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005776W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005777S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005778F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005780PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005781M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005782L: linux-ide@vger.kernel.org
5783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005784F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005785
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005786PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005787M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005788L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005789L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005790S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005791F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005792
Geoff Levandf58a9d12006-11-23 00:46:51 +01005793PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005794M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005795L: linuxppc-dev@lists.ozlabs.org
5796L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005798F: arch/powerpc/boot/ps3*
5799F: arch/powerpc/include/asm/lv1call.h
5800F: arch/powerpc/include/asm/ps3*.h
5801F: arch/powerpc/platforms/ps3/
5802F: drivers/*/ps3*
5803F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005804F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005805F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005806F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005807
Jim Pariscffb4add2009-01-06 11:32:10 +00005808PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005809M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005810L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005811S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005812F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005813
Anton Vorontsov8defe592012-08-03 18:07:20 -07005814PSTORE FILESYSTEM
5815M: Anton Vorontsov <cbouatmailru@gmail.com>
5816M: Colin Cross <ccross@android.com>
5817M: Kees Cook <keescook@chromium.org>
5818M: Tony Luck <tony.luck@intel.com>
5819S: Maintained
5820T: git git://git.infradead.org/users/cbou/linux-pstore.git
5821F: fs/pstore/
5822F: include/linux/pstore*
5823F: drivers/firmware/efivars.c
5824F: drivers/acpi/apei/erst.c
5825
Richard Cochran7fbc4152012-03-10 01:55:53 +00005826PTP HARDWARE CLOCK SUPPORT
5827M: Richard Cochran <richardcochran@gmail.com>
5828S: Maintained
5829W: http://linuxptp.sourceforge.net/
5830F: Documentation/ABI/testing/sysfs-ptp
5831F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07005832F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00005833F: drivers/net/phy/dp83640*
5834F: drivers/ptp/*
5835F: include/linux/ptp_cl*
5836
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005837PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005838M: Roland McGrath <roland@redhat.com>
5839M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005840S: Maintained
5841F: include/asm-generic/syscall.h
5842F: include/linux/ptrace.h
5843F: include/linux/regset.h
5844F: include/linux/tracehook.h
5845F: kernel/ptrace.c
5846
Michael Krufky83202042006-07-03 00:24:18 -07005847PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005848M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005849L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005850L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005851W: http://www.isely.net/pvrusb2/
Joe Perches08deed12012-03-23 15:01:57 -07005852T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Michael Krufky83202042006-07-03 00:24:18 -07005853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005854F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03005855F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005856
Thierry Reding200efed2012-03-27 13:16:18 +02005857PWM SUBSYSTEM
5858M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005859L: linux-kernel@vger.kernel.org
5860S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02005861W: http://gitorious.org/linux-pwm
5862T: git git://gitorious.org/linux-pwm/linux-pwm.git
5863F: Documentation/pwm.txt
5864F: Documentation/devicetree/bindings/pwm/
5865F: include/linux/pwm.h
5866F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005867F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07005868F: drivers/video/backlight/pwm_bl.c
5869F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005870
Eric Miao30ec2612008-06-12 15:21:41 -07005871PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005872M: Eric Miao <eric.y.miao@gmail.com>
5873M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005874M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005875L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005876T: git git://github.com/hzhuang1/linux.git
5877T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005879F: arch/arm/mach-pxa/
5880F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08005881F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07005882F: drivers/usb/gadget/pxa2*
5883F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005884F: sound/arm/pxa*
5885F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005887MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005888M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005889M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005890L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005891T: git git://github.com/hzhuang1/linux.git
5892T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005893S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005894F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005895
Pierre Ossman272f1332007-05-14 21:25:26 +02005896PXA MMCI DRIVER
5897S: Orphan
5898
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005899PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005900M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005901L: rtc-linux@googlegroups.com
5902S: Maintained
5903
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005904QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005905M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005906L: linux-rdma@vger.kernel.org
5907S: Supported
5908F: drivers/infiniband/hw/qib/
5909
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005910QLOGIC QLA1280 SCSI DRIVER
5911M: Michael Reed <mdr@sgi.com>
5912L: linux-scsi@vger.kernel.org
5913S: Maintained
5914F: drivers/scsi/qla1280.[ch]
5915
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005917M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005918M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919L: linux-scsi@vger.kernel.org
5920S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005921F: Documentation/scsi/LICENSE.qla2xxx
5922F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923
Ravi Anand883c98f2010-04-28 11:45:49 +05305924QLOGIC QLA4XXX iSCSI DRIVER
5925M: Ravi Anand <ravi.anand@qlogic.com>
5926M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5927M: iscsi-driver@qlogic.com
5928L: linux-scsi@vger.kernel.org
5929S: Supported
5930F: drivers/scsi/qla4xxx/
5931
Ron Mercer5a4faa872006-07-25 00:40:21 -07005932QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00005933M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005934M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07005935M: linux-driver@qlogic.com
5936L: netdev@vger.kernel.org
5937S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005938F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005939F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07005940
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005941QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00005942M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07005943M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005944M: linux-driver@qlogic.com
5945L: netdev@vger.kernel.org
5946S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005947F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005948
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005949QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00005950M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005951M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07005952M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005953L: netdev@vger.kernel.org
5954S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005955F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005956
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005958M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959W: http://www.alarsen.net/linux/qnx4fs/
5960S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005961F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07005962F: include/linux/qnx4_fs.h
5963F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964
Antti Palosaari91952bc2012-10-01 12:28:46 -03005965QT1010 MEDIA DRIVER
5966M: Antti Palosaari <crope@iki.fi>
5967L: linux-media@vger.kernel.org
5968W: http://linuxtv.org/
5969W: http://palosaari.fi/linux/
5970Q: http://patchwork.linuxtv.org/project/linux-media/list/
5971T: git git://linuxtv.org/anttip/media_tree.git
5972S: Maintained
5973F: drivers/media/tuners/qt1010*
5974
Richard Kuo4f4567c2011-10-31 18:56:38 -05005975QUALCOMM HEXAGON ARCHITECTURE
5976M: Richard Kuo <rkuo@codeaurora.org>
5977L: linux-hexagon@vger.kernel.org
5978S: Supported
5979F: arch/hexagon/
5980
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005981RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07005982M: Yehuda Sadeh <yehuda@inktank.com>
5983M: Sage Weil <sage@inktank.com>
5984M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005985M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07005986W: http://ceph.com/
5987T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005988S: Supported
5989F: drivers/block/rbd.c
5990F: drivers/block/rbd_types.h
5991
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005993M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005994L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005996F: drivers/video/aty/radeon*
5997F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998
5999RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006000M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006001L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006003F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004
Randy Dunlape7839f22008-10-12 16:11:45 -07006005RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006006P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006007M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006008M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006009M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006010L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006011L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006012W: http://rt2x00.serialmonkey.com/
6013S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006014T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006015F: drivers/net/wireless/rt2x00/
6016
Nick Piggin9db55792008-02-08 04:19:49 -08006017RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006018M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006020F: Documentation/blockdev/ramdisk.txt
6021F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006022
Matt Mackall9e95ce22005-04-16 15:25:56 -07006023RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006024M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006026F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006027
Matt Porter394b7012005-11-07 01:00:15 -08006028RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006029M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006030M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006032F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006033
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006034RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006035L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006036S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006037F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006038
6039RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006040M: Josh Triplett <josh@freedesktop.org>
6041M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006042S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006043T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006044F: Documentation/RCU/torture.txt
6045F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006046
Florian Fainellic1f766b2008-02-06 22:39:44 +01006047RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006048M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006049S: Maintained
6050
Florian Fainellidb17f392007-12-19 11:30:30 +01006051RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006052M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01006053L: netdev@vger.kernel.org
6054S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006055F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01006056
Andy Grovera09ed662009-02-24 15:30:41 +00006057RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006058M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006059L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006060S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006061F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006062
Josh Triplett595182b2006-10-04 02:17:21 -07006063READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006064M: Dipankar Sarma <dipankar@in.ibm.com>
6065M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006066W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006067S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006068T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006069F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006070X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006071F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006072F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006073X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006074
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006075REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006076M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08006077L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006078Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006080F: Documentation/rtc.txt
6081F: drivers/rtc/
6082F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006083
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006085L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006086S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006087F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088
Mark Brownb83a3132011-05-11 19:59:58 +02006089REGISTER MAP ABSTRACTION
6090M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6091T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6092S: Supported
6093F: drivers/base/regmap/
6094F: include/linux/regmap.h
6095
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006096REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6097M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006098T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006099S: Maintained
6100F: drivers/remoteproc/
6101F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006102F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006103
Ivo van Doorne08976452008-04-12 19:23:55 +02006104RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006105M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006106L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006107W: http://wireless.kernel.org/
6108T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6109T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006110S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006111F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006112F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006113
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006114RICOH SMARTMEDIA/XD DRIVER
6115M: Maxim Levitsky <maximlevitsky@gmail.com>
6116S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006117F: drivers/mtd/nand/r852.c
6118F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006119
Maxim Levitsky92634122011-03-25 01:56:59 -07006120RICOH R5C592 MEMORYSTICK DRIVER
6121M: Maxim Levitsky <maximlevitsky@gmail.com>
6122S: Maintained
6123F: drivers/memstick/host/r592.*
6124
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125ROCKETPORT DRIVER
6126P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127W: http://www.comtrol.com
6128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006129F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006130F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131
6132ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006133M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006135W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006137F: include/linux/rose.h
6138F: include/net/rose.h
6139F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140
Antti Palosaari91952bc2012-10-01 12:28:46 -03006141RTL2830 MEDIA DRIVER
6142M: Antti Palosaari <crope@iki.fi>
6143L: linux-media@vger.kernel.org
6144W: http://linuxtv.org/
6145W: http://palosaari.fi/linux/
6146Q: http://patchwork.linuxtv.org/project/linux-media/list/
6147T: git git://linuxtv.org/anttip/media_tree.git
6148S: Maintained
6149F: drivers/media/dvb-frontends/rtl2830*
6150
Larry Finger59840482008-11-12 17:13:09 -06006151RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006152M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006153L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006154W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006155T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006156S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006157F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006158
Larry Finger59840482008-11-12 17:13:09 -06006159RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006160M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006161M: Hin-Tak Leung <htl10@users.sourceforge.net>
6162M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006163L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006164W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006165T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006166S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006167F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006168
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006169RTL8192CE WIRELESS DRIVER
6170M: Larry Finger <Larry.Finger@lwfinger.net>
6171M: Chaoming Li <chaoming_li@realsil.com.cn>
6172L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006173W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006174T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6175S: Maintained
6176F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006177F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006178
6179S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006180M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006181L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006183F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006184
Linus Torvalds1da177e2005-04-16 15:20:36 -07006185S390
Joe Perches8b58be82009-07-29 15:04:30 -07006186M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6187M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006188M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006189L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006190W: http://www.ibm.com/developerworks/linux/linux390/
6191S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006192F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006193F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006194F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006195F: Documentation/s390/
6196F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006197
6198S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006199M: Ursula Braun <ursula.braun@de.ibm.com>
6200M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006201M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006202L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006203W: http://www.ibm.com/developerworks/linux/linux390/
6204S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006205F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006206
Felix Beckfeed9b62009-03-26 15:24:23 +01006207S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006208M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006209M: linux390@de.ibm.com
6210L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006211W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006212S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006213F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006214
Heiko Carstens5238da42006-02-11 17:56:01 -08006215S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006216M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006217M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006218L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006219W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006221F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222
Ursula Braundd96df22007-09-19 13:09:02 +02006223S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006224M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006225M: linux390@de.ibm.com
6226L: linux-s390@vger.kernel.org
6227W: http://www.ibm.com/developerworks/linux/linux390/
6228S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006229F: drivers/s390/net/*iucv*
6230F: include/net/iucv/
6231F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006232
Ben Dooks4dde7f72008-06-30 22:40:38 +01006233S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006234M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006235L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006236S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006237F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006238
Linus Torvalds1da177e2005-04-16 15:20:36 -07006239SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006240M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006241L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006242T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243W: http://www.mihu.de/linux/saa7146
6244S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006245F: drivers/media/common/saa7146/
6246F: drivers/media/pci/saa7146/
6247F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248
Corentin Chary92304a42011-12-05 12:38:35 -05006249SAMSUNG LAPTOP DRIVER
6250M: Corentin Chary <corentincj@iksaif.net>
6251L: platform-driver-x86@vger.kernel.org
6252S: Maintained
6253F: drivers/platform/x86/samsung-laptop.c
6254
Mark Brown4a109cc2010-09-24 10:50:46 +01006255SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006256M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006257L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6258S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006259F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006260
Jingoo Han0d89a282011-12-19 11:09:35 +09006261SAMSUNG FRAMEBUFFER DRIVER
6262M: Jingoo Han <jg1.han@samsung.com>
6263L: linux-fbdev@vger.kernel.org
6264S: Maintained
6265F: drivers/video/s3c-fb.c
6266
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006267SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6268M: Sangbeom Kim <sbkim73@samsung.com>
6269L: linux-kernel@vger.kernel.org
6270S: Supported
6271F: drivers/mfd/sec*.c
6272F: drivers/regulator/s2m*.c
6273F: drivers/regulator/s5m*.c
6274F: drivers/rtc/rtc-sec.c
6275F: include/linux/mfd/samsung/
6276
Alan Coxca749e22011-03-18 13:56:14 +00006277SERIAL DRIVERS
6278M: Alan Cox <alan@linux.intel.com>
6279L: linux-serial@vger.kernel.org
6280S: Maintained
6281F: drivers/tty/serial
6282
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306283SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006284M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306285S: Maintained
6286F: include/linux/dw_dmac.h
6287F: drivers/dma/dw_dmac_regs.h
6288F: drivers/dma/dw_dmac.c
6289
Thomas Gleixner88606e82010-12-14 21:37:13 +01006290TIMEKEEPING, NTP
6291M: John Stultz <johnstul@us.ibm.com>
6292M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006293T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006294S: Supported
6295F: include/linux/clocksource.h
6296F: include/linux/time.h
6297F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006298F: kernel/time/clocksource.c
6299F: kernel/time/time*.c
6300F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006301F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006302
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006303TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006304M: Huang Shijie <shijie8@gmail.com>
6305M: Kang Yong <kangyong@telegent.com>
6306M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006307S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006308F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006309
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006311M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006313F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314
6315SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006316M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006317M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006318T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006320F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006321F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322
Chen Liqin6bcf6732009-06-13 15:24:33 +08006323SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006324M: Chen Liqin <liqin.chen@sunplusct.com>
6325M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006326W: http://www.sunplusct.com
6327S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006328F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006329
Linus Torvalds1da177e2005-04-16 15:20:36 -07006330SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006331M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006332L: linux-scsi@vger.kernel.org
6333W: http://www.kernel.dk
6334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006335F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006336
Roland Dreierfb50a832010-10-07 09:54:53 -07006337SCSI RDMA PROTOCOL (SRP) INITIATOR
6338M: David Dillow <dillowda@ornl.gov>
6339L: linux-rdma@vger.kernel.org
6340S: Supported
6341W: http://www.openfabrics.org
6342Q: http://patchwork.kernel.org/project/linux-rdma/list/
6343T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6344F: drivers/infiniband/ulp/srp/
6345F: include/scsi/srp.h
6346
Linus Torvalds1da177e2005-04-16 15:20:36 -07006347SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006348M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006349L: linux-scsi@vger.kernel.org
6350W: http://www.torque.net/sg
6351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006352F: drivers/scsi/sg.c
6353F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006354
6355SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006356M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006358T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6359T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6360T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006362F: drivers/scsi/
6363F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364
6365SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006366M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367L: linux-scsi@vger.kernel.org
6368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006369F: Documentation/scsi/st.txt
6370F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006371
6372SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006373M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006374M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006375L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006376W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006378F: Documentation/networking/sctp.txt
6379F: include/linux/sctp.h
6380F: include/net/sctp/
6381F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382
6383SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006384M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006385S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006386F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006387F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006388F: drivers/watchdog/scx200_wdt.c
6389F: drivers/i2c/busses/scx200*
6390F: drivers/mtd/maps/scx200_docflash.c
6391F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006392
6393SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006394M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006396F: drivers/char/scx200_gpio.c
6397F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006398
6399SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006400M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006402F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006403
Sascha Sommer6a369132008-07-15 14:21:29 +02006404SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006405M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006406L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006408F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006409
Randy Dunlape7839f22008-10-12 16:11:45 -07006410SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006411M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006412L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006413T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6414S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006415F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006416F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006417
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006418SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006419M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006420L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006421L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006423F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424
Ben Dooks0d1bb412009-06-14 13:52:37 +01006425SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006426M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006427L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006428S: Maintained
6429F: drivers/mmc/host/sdhci-s3c.c
6430
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006431SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006432M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006433L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006434L: linux-mmc@vger.kernel.org
6435S: Maintained
6436F: drivers/mmc/host/sdhci-spear.c
6437
James Morris8711cca2008-12-04 03:19:45 +11006438SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006439M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006440L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006441T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006442W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006443S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006444F: security/
James Morris8711cca2008-12-04 03:19:45 +11006445
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006447M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448S: Supported
6449
6450SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006451M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006452M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006453M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006454L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006455W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006456T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006458F: include/linux/selinux*
6459F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006460F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461
John Johansenc1c124e2010-07-29 14:48:09 -07006462APPARMOR SECURITY MODULE
6463M: John Johansen <john.johansen@canonical.com>
6464L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6465W: apparmor.wiki.kernel.org
6466T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6467S: Supported
6468F: security/apparmor/
6469
Jiri Slabycef2cf02007-05-08 00:31:45 -07006470SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006471M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006473F: drivers/misc/phantom.c
6474F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006475
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006476SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006477M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006478L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006479T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006481F: drivers/ata/
6482F: include/linux/ata.h
6483F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306485SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006486M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006487L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006488W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006489S: Supported
6490F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306491
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006492SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006493M: Sathya Perla <sathya.perla@emulex.com>
6494M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6495M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006496L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006497W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006498S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006499F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006500
Ben Hutchings8ceee662008-04-27 12:55:59 +01006501SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006502M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006503M: Ben Hutchings <bhutchings@solarflare.com>
6504L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006505S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006506F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006507
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006508SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006509M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006511F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006512
6513SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006514M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006515L: linux-ia64@vger.kernel.org
6516S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006517F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006518F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006519F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006520
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006522M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523L: linux-visws-devel@lists.sf.net
6524W: http://linux-visws.sf.net
6525S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006526F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006527
Jack Steiner75312612008-08-15 00:40:42 -07006528SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006529M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006531F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006532
Len Brown6349d992009-08-14 15:07:14 -04006533SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006534M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006535L: sfi-devel@simplefirmware.org
6536W: http://simplefirmware.org/
6537T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006538S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006539F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006540F: drivers/sfi/
6541F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006542
Linus Torvalds1da177e2005-04-16 15:20:36 -07006543SIMTEC EB110ATX (Chalice CATS)
6544P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006545P: Vincent Sanders <vince@simtec.co.uk>
6546M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006547W: http://www.simtec.co.uk/products/EB110ATX/
6548S: Supported
6549
6550SIMTEC EB2410ITX (BAST)
6551P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006552P: Vincent Sanders <vince@simtec.co.uk>
6553M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006554W: http://www.simtec.co.uk/products/EB2410ITX/
6555S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006556F: arch/arm/mach-s3c2410/mach-bast.c
6557F: arch/arm/mach-s3c2410/bast-ide.c
6558F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006560TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006561M: Sekhar Nori <nsekhar@ti.com>
6562M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306563L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306564T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006565Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006566S: Supported
6567F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006568F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006569
Francois Romieu92aab3c2005-07-30 13:11:18 +02006570SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006571M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006572L: netdev@vger.kernel.org
6573S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006574F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006575
Linus Torvalds1da177e2005-04-16 15:20:36 -07006576SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006577M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006579L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006580S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006581F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006582
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006583SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006584M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006585L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006587F: Documentation/i2c/busses/i2c-sis96x
6588F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006589
Linus Torvalds1da177e2005-04-16 15:20:36 -07006590SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006591M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006594F: Documentation/fb/sisfb.txt
6595F: drivers/video/sis/
6596F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597
6598SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006599M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006600W: http://www.winischhofer.at/linuxsisusbvga.shtml
6601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006602F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006604SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006605M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006606M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006607M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006608L: linux-mm@kvack.org
6609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006610F: include/linux/sl?b*.h
6611F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07006612
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006613SLEEPABLE READ-COPY UPDATE (SRCU)
6614M: Lai Jiangshan <laijs@cn.fujitsu.com>
6615M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6616W: http://www.rdrop.com/users/paulmck/RCU/
6617S: Supported
6618T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6619F: include/linux/srcu*
6620F: kernel/srcu*
6621
Casey Schaufler66372842012-05-23 18:34:52 -07006622SMACK SECURITY MODULE
6623M: Casey Schaufler <casey@schaufler-ca.com>
6624L: linux-security-module@vger.kernel.org
6625W: http://schaufler-ca.com
6626T: git git://git.gitorious.org/smack-next/kernel.git
6627S: Maintained
6628F: Documentation/security/Smack.txt
6629F: security/smack/
6630
Linus Torvalds1da177e2005-04-16 15:20:36 -07006631SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006632M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006633S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006634F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006635
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006636SMM665 HARDWARE MONITOR DRIVER
6637M: Guenter Roeck <linux@roeck-us.net>
6638L: lm-sensors@lm-sensors.org
6639S: Maintained
6640F: Documentation/hwmon/smm665
6641F: drivers/hwmon/smm665.c
6642
Steve Glendinning9df73052010-08-14 21:08:54 +02006643SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006644M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006645L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006646S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006647F: Documentation/hwmon/emc2103
6648F: drivers/hwmon/emc2103.c
6649
Hans de Goedea98d5062011-03-21 17:59:36 +01006650SMSC SCH5627 HARDWARE MONITOR DRIVER
6651M: Hans de Goede <hdegoede@redhat.com>
6652L: lm-sensors@lm-sensors.org
6653S: Supported
6654F: Documentation/hwmon/sch5627
6655F: drivers/hwmon/sch5627.c
6656
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006657SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006658M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006659L: lm-sensors@lm-sensors.org
6660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006661F: Documentation/hwmon/smsc47b397
6662F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006663
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006664SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006665M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006666L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006668F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006669F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006670
Steve Glendinning2cb37722008-12-11 20:54:30 -08006671SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006672M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006673L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006674S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006675F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006676
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006677SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006678M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006679L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006680S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006681F: drivers/video/smscufx.c
6682
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006683SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006684M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006685L: linux-altix@sgi.com
6686L: linux-ia64@vger.kernel.org
6687W: http://www.sgi.com/altix
6688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006689F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006690
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006691SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006692M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006693L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006694T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006695S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006696F: include/media/soc*
6697F: drivers/media/i2c/soc_camera/
6698F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006699
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006700SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006701M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006703F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006704
Linus Torvalds1da177e2005-04-16 15:20:36 -07006705SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006706M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006707L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006708S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006709F: drivers/md/
6710F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711
Linus Torvalds1da177e2005-04-16 15:20:36 -07006712SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006713M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006714L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006715S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006716F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717
Michael Buesch61e115a2007-09-18 15:12:50 -04006718SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006719M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006720L: netdev@vger.kernel.org
6721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006722F: drivers/ssb/
6723F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006724
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006726M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05006727L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006728W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006730F: Documentation/laptops/sony-laptop.txt
6731F: drivers/char/sonypi.c
6732F: drivers/platform/x86/sony-laptop.c
6733F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006734
Alex Dubovbaf85322008-02-09 10:20:54 -08006735SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006736M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006737W: http://tifmxx.berlios.de/
6738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006739F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006740
Linus Torvalds1da177e2005-04-16 15:20:36 -07006741SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006742M: Jaroslav Kysela <perex@perex.cz>
6743M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006744L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006745W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006746T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006747T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006749F: Documentation/sound/
6750F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006751F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006752
Mark Brownbd903bd2008-11-19 19:16:05 +00006753SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006754M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006755M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006756T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006757L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006758W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006759S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006760F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006761F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006762
Sam Ravnborg473321f2009-01-04 15:47:49 -08006763SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006764M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006765L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006766Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006767T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6768T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006770F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006771F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006772
David S. Miller6404fcc2010-03-16 01:00:17 -07006773SPARC SERIAL DRIVERS
6774M: "David S. Miller" <davem@davemloft.net>
6775L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006776T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6777T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07006778S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05006779F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006780F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006781F: drivers/tty/serial/sunhv.c
6782F: drivers/tty/serial/sunsab.c
6783F: drivers/tty/serial/sunsab.h
6784F: drivers/tty/serial/sunsu.c
6785F: drivers/tty/serial/sunzilog.c
6786F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006787
Christopher Li389325b2012-04-05 14:25:14 -07006788SPARSE CHECKER
6789M: "Christopher Li" <sparse@chrisli.org>
6790L: linux-sparse@vger.kernel.org
6791W: https://sparse.wiki.kernel.org/
6792T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
6793T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
6794S: Maintained
6795F: include/linux/compiler.h
6796
viresh kumarfc0c1952010-04-01 12:31:21 +01006797SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006798M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306799M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006800L: spear-devel@list.st.com
6801L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006802W: http://www.st.com/spear
6803S: Maintained
6804F: arch/arm/plat-spear/
6805
Viresh Kumar71e09a92012-04-20 22:39:48 +05306806SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006807M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306808M: Shiraz Hashim <shiraz.hashim@st.com>
6809L: spear-devel@list.st.com
6810L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6811W: http://www.st.com/spear
6812S: Maintained
6813F: arch/arm/mach-spear13xx/
6814
viresh kumarfc0c1952010-04-01 12:31:21 +01006815SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006816M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306817M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006818L: spear-devel@list.st.com
6819L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006820W: http://www.st.com/spear
6821S: Maintained
6822F: arch/arm/mach-spear3xx/
6823
6824SPEAR6XX MACHINE SUPPORT
6825M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306826M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006827M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006828L: spear-devel@list.st.com
6829L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006830W: http://www.st.com/spear
6831S: Maintained
6832F: arch/arm/mach-spear6xx/
6833
6834SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006835M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006836L: spear-devel@list.st.com
6837L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006838W: http://www.st.com/spear
6839S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05306840F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01006841
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006842SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006843M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006844L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006845Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006846T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006848F: Documentation/spi/
6849F: drivers/spi/
6850F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006851
Jim Lewis2752e402006-09-29 02:01:19 -07006852SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006853M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6854M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07006855L: netdev@vger.kernel.org
6856S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006857F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006858F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07006859
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006860SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006861M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006862L: linuxppc-dev@lists.ozlabs.org
6863L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006864W: http://www.ibm.com/developerworks/power/cell/
6865S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006866F: Documentation/filesystems/spufs.txt
6867F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006868
Phillip Lougherfc555842009-01-05 08:46:29 +00006869SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006870M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006871L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6872W: http://squashfs.org.uk
6873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006874F: Documentation/filesystems/squashfs.txt
6875F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006876
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006878M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006880F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006881
Linus Torvalds26e9a392008-10-17 09:50:12 -07006882STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08006883M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08006884L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08006885S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006886
Linus Torvalds26e9a392008-10-17 09:50:12 -07006887STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08006888M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006889T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006890L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08006891S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006892F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006893
Joe Perchesc8c8b102011-07-05 09:42:12 -07006894STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6895M: Henk de Groot <pe1dnn@amsat.org>
6896S: Odd Fixes
6897F: drivers/staging/wlags49_h2/
6898F: drivers/staging/wlags49_h25/
6899
Joe Perchesc9555152011-07-05 09:42:01 -07006900STAGING - ASUS OLED
6901M: Jakub Schmidtke <sjakub@gmail.com>
6902S: Odd Fixes
6903F: drivers/staging/asus_oled/
6904
Joe Perchesebd3d012011-07-05 09:42:02 -07006905STAGING - COMEDI
6906M: Ian Abbott <abbotti@mev.co.uk>
6907M: Mori Hess <fmhess@users.sourceforge.net>
6908S: Odd Fixes
6909F: drivers/staging/comedi/
6910
Joe Perches8ca572c2011-07-05 09:42:03 -07006911STAGING - CRYSTAL HD VIDEO DECODER
6912M: Naren Sankar <nsankar@broadcom.com>
6913M: Jarod Wilson <jarod@wilsonet.com>
6914M: Scott Davilla <davilla@4pi.com>
6915M: Manu Abraham <abraham.manu@gmail.com>
6916S: Odd Fixes
6917F: drivers/staging/crystalhd/
6918
Joe Perches0f16ffc2011-07-05 09:42:04 -07006919STAGING - ECHO CANCELLER
6920M: Steve Underwood <steveu@coppice.org>
6921M: David Rowe <david@rowetel.com>
6922S: Odd Fixes
6923F: drivers/staging/echo/
6924
Mark Einon8dc2bbe72011-08-29 18:42:37 +01006925STAGING - ET131X NETWORK DRIVER
6926M: Mark Einon <mark.einon@gmail.com>
6927S: Odd Fixes
6928F: drivers/staging/et131x/
6929
Joe Perchesa0138162011-07-05 15:21:34 -07006930STAGING - FLARION FT1000 DRIVERS
6931M: Marek Belisko <marek.belisko@gmail.com>
6932S: Odd Fixes
6933F: drivers/staging/ft1000/
6934
Joe Perchesec3fab92011-07-05 09:42:05 -07006935STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6936M: David Täht <d@teklibre.com>
6937S: Odd Fixes
6938F: drivers/staging/frontier/
6939
Joe Perches6c1bb422011-07-05 09:42:07 -07006940STAGING - INDUSTRIAL IO
6941M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07006942L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07006943S: Odd Fixes
6944F: drivers/staging/iio/
6945
Joe Perchesa0138162011-07-05 15:21:34 -07006946STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
6947M: Jarod Wilson <jarod@wilsonet.com>
6948W: http://www.lirc.org/
6949S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006950F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07006951
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006952STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02006953M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006954M: Marc Dietrich <marvin24@gmx.de>
6955L: ac100@lists.launchpad.net (moderated for non-subscribers)
6956S: Maintained
6957F: drivers/staging/nvec/
6958
Joe Perchesa0138162011-07-05 15:21:34 -07006959STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
6960M: Andres Salomon <dilinger@queued.net>
6961M: Chris Ball <cjb@laptop.org>
6962M: Jon Nettleton <jon.nettleton@gmail.com>
6963W: http://wiki.laptop.org/go/DCON
6964S: Odd Fixes
6965F: drivers/staging/olpc_dcon/
6966
Chris Kelly94cfdd12012-03-14 10:55:42 +00006967STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00006968M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00006969M: Chris Kelly <ckelly@ozmodevices.com>
6970S: Maintained
6971F: drivers/staging/ozwpan/
6972
Joe Perchesa0138162011-07-05 15:21:34 -07006973STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07006974M: Willy Tarreau <willy@meta-x.org>
6975S: Odd Fixes
6976F: drivers/staging/panel/
6977
Joe Perchesa0138162011-07-05 15:21:34 -07006978STAGING - REALTEK RTL8712U DRIVERS
6979M: Larry Finger <Larry.Finger@lwfinger.net>
6980M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
6981S: Odd Fixes
6982F: drivers/staging/rtl8712/
6983
Joe Perches9629fa82011-07-05 09:42:09 -07006984STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
6985M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
6986S: Odd Fixes
6987F: drivers/staging/sm7xx/
6988
Joe Perchesa0138162011-07-05 15:21:34 -07006989STAGING - SOFTLOGIC 6x10 MPEG CODEC
6990M: Ben Collins <bcollins@bluecherry.net>
6991S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006992F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07006993
6994STAGING - SPEAKUP CONSOLE SPEECH DRIVER
6995M: William Hubbs <w.d.hubbs@gmail.com>
6996M: Chris Brannon <chris@the-brannons.com>
6997M: Kirk Reiser <kirk@braille.uwo.ca>
6998M: Samuel Thibault <samuel.thibault@ens-lyon.org>
6999L: speakup@braille.uwo.ca
7000W: http://www.linux-speakup.org/
7001S: Odd Fixes
7002F: drivers/staging/speakup/
7003
7004STAGING - TI DSP BRIDGE DRIVERS
7005M: Omar Ramirez Luna <omar.ramirez@ti.com>
7006S: Odd Fixes
7007F: drivers/staging/tidspbridge/
7008
Joe Perchesa0138162011-07-05 15:21:34 -07007009STAGING - USB ENE SM/MS CARD READER DRIVER
7010M: Al Cho <acho@novell.com>
7011S: Odd Fixes
7012F: drivers/staging/keucr/
7013
Joe Perchesb3e871c2011-07-05 09:42:10 -07007014STAGING - VIA VT665X DRIVERS
7015M: Forest Bond <forest@alittletooquiet.net>
7016S: Odd Fixes
7017F: drivers/staging/vt665?/
7018
Joe Perches81a9a522011-07-05 09:42:11 -07007019STAGING - WINBOND IS89C35 WLAN USB DRIVER
7020M: Pavel Machek <pavel@ucw.cz>
7021S: Odd Fixes
7022F: drivers/staging/winbond/
7023
Joe Perches709bcb02011-07-05 09:42:13 -07007024STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007025M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007026S: Odd Fixes
7027F: drivers/staging/xgifb/
7028
Linus Torvalds1da177e2005-04-16 15:20:36 -07007029STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007030M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007031S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007032F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007033
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007034SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007035M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007036W: http://sammy.net/sun3/
7037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007038F: arch/m68k/kernel/*sun3*
7039F: arch/m68k/sun3*/
7040F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007041F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007042
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007043SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007044M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007045L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007046W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007047Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007048T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007049S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007050F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007051F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007052F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007053
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007054SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007055M: Len Brown <len.brown@intel.com>
7056M: Pavel Machek <pavel@ucw.cz>
7057M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007058L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007059S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007060F: Documentation/power/
7061F: arch/x86/kernel/acpi/
7062F: drivers/base/power/
7063F: kernel/power/
7064F: include/linux/suspend.h
7065F: include/linux/freezer.h
7066F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067
7068SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007069M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070L: linux-video@atrey.karlin.mff.cuni.cz
7071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007072F: Documentation/svga.txt
7073F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007074
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007075SWIOTLB SUBSYSTEM
7076M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7077L: linux-kernel@vger.kernel.org
7078S: Supported
7079F: lib/swiotlb.c
7080F: arch/*/kernel/pci-swiotlb.c
7081F: include/linux/swiotlb.h
7082
Linus Torvalds1da177e2005-04-16 15:20:36 -07007083SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007084M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007086F: Documentation/filesystems/sysv-fs.txt
7087F: fs/sysv/
7088F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007089
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007090TARGET SUBSYSTEM
7091M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7092L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007093L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007094L: http://groups.google.com/group/linux-iscsi-target-dev
7095W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007096T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007097S: Supported
7098F: drivers/target/
7099F: include/target/
7100F: Documentation/target/
7101
Alan Cox4e688522008-04-30 00:52:11 -07007102TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007103M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007105F: Documentation/accounting/taskstats*
7106F: include/linux/taskstats*
7107F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007108
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007109TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007110M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007111L: netdev@vger.kernel.org
7112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007113F: include/linux/pkt_cls.h
7114F: include/net/pkt_cls.h
7115F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007116
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007117TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007118M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7119M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007120W: http://tcp-lp-mod.sourceforge.net/
7121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007122F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007123
Antti Palosaari91952bc2012-10-01 12:28:46 -03007124TDA10071 MEDIA DRIVER
7125M: Antti Palosaari <crope@iki.fi>
7126L: linux-media@vger.kernel.org
7127W: http://linuxtv.org/
7128W: http://palosaari.fi/linux/
7129Q: http://patchwork.linuxtv.org/project/linux-media/list/
7130T: git git://linuxtv.org/anttip/media_tree.git
7131S: Maintained
7132F: drivers/media/dvb-frontends/tda10071*
7133
7134TDA18212 MEDIA DRIVER
7135M: Antti Palosaari <crope@iki.fi>
7136L: linux-media@vger.kernel.org
7137W: http://linuxtv.org/
7138W: http://palosaari.fi/linux/
7139Q: http://patchwork.linuxtv.org/project/linux-media/list/
7140T: git git://linuxtv.org/anttip/media_tree.git
7141S: Maintained
7142F: drivers/media/tuners/tda18212*
7143
7144TDA18218 MEDIA DRIVER
7145M: Antti Palosaari <crope@iki.fi>
7146L: linux-media@vger.kernel.org
7147W: http://linuxtv.org/
7148W: http://palosaari.fi/linux/
7149Q: http://patchwork.linuxtv.org/project/linux-media/list/
7150T: git git://linuxtv.org/anttip/media_tree.git
7151S: Maintained
7152F: drivers/media/tuners/tda18218*
7153
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007154TDA18271 MEDIA DRIVER
7155M: Michael Krufky <mkrufky@linuxtv.org>
7156L: linux-media@vger.kernel.org
7157W: http://linuxtv.org/
7158W: http://github.com/mkrufky
7159Q: http://patchwork.linuxtv.org/project/linux-media/list/
7160T: git git://linuxtv.org/mkrufky/tuners.git
7161S: Maintained
7162F: drivers/media/tuners/tda18271*
7163
Michael Krufkye48307a2012-10-02 00:56:33 -03007164TDA827x MEDIA DRIVER
7165M: Michael Krufky <mkrufky@linuxtv.org>
7166L: linux-media@vger.kernel.org
7167W: http://linuxtv.org/
7168W: http://github.com/mkrufky
7169Q: http://patchwork.linuxtv.org/project/linux-media/list/
7170T: git git://linuxtv.org/mkrufky/tuners.git
7171S: Maintained
7172F: drivers/media/tuners/tda8290.*
7173
Michael Krufky66cf9212012-10-02 00:56:28 -03007174TDA8290 MEDIA DRIVER
7175M: Michael Krufky <mkrufky@linuxtv.org>
7176L: linux-media@vger.kernel.org
7177W: http://linuxtv.org/
7178W: http://github.com/mkrufky
7179Q: http://patchwork.linuxtv.org/project/linux-media/list/
7180T: git git://linuxtv.org/mkrufky/tuners.git
7181S: Maintained
7182F: drivers/media/tuners/tda8290.*
7183
Jiri Pirko3d249d42011-11-11 22:16:48 +00007184TEAM DRIVER
7185M: Jiri Pirko <jpirko@redhat.com>
7186L: netdev@vger.kernel.org
7187S: Supported
7188F: drivers/net/team/
7189F: include/linux/if_team.h
7190
Erik Gilling84b94142010-06-09 15:35:53 -07007191TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007192M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007193L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007194Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7195T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007196S: Supported
7197F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007198F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007199F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007200
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007201TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007202M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007203L: netdev@vger.kernel.org
7204S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007205F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007206
Alan Cox4e688522008-04-30 00:52:11 -07007207Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007208M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007209S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007210F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007211
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007212TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007213M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007214M: Max Filippov <jcmvbkbc@gmail.com>
7215L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007217F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007218
7219THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007220M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007221L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05007222L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007223W: http://ibm-acpi.sourceforge.net
7224W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007225T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007227F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007228
Alex Dubov4020f2d2006-10-04 02:15:37 -07007229TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007230M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007232F: drivers/misc/tifm*
7233F: drivers/mmc/host/tifm_sd.c
7234F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007235
M R Swami Reddy152ad442012-04-02 20:02:31 +05307236TI LM49xxx FAMILY ASoC CODEC DRIVERS
7237M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307238M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307239L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7240S: Maintained
7241F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307242F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307243
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007244TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007245M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007246L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7247S: Maintained
7248F: sound/soc/codecs/twl4030*
7249
Luciano Coelho90921012011-11-20 21:40:41 +02007250TI WILINK WIRELESS DRIVERS
7251M: Luciano Coelho <coelho@ti.com>
7252L: linux-wireless@vger.kernel.org
7253W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7254W: http://wireless.kernel.org/en/users/Drivers/wl1251
7255T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7256S: Maintained
7257F: drivers/net/wireless/ti/
7258F: include/linux/wl12xx.h
7259
Per Lidene86eaa32006-01-12 16:45:18 +01007260TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007261M: Jon Maloy <jon.maloy@ericsson.com>
7262M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007263L: netdev@vger.kernel.org (core kernel code)
7264L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007265W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007267F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007268F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007269
Chris Metcalf867e3592010-05-28 23:09:12 -04007270TILE ARCHITECTURE
7271M: Chris Metcalf <cmetcalf@tilera.com>
7272W: http://www.tilera.com/scm/
7273S: Supported
7274F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007275F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007276F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007277F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007278
Linus Torvalds1da177e2005-04-16 15:20:36 -07007279TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007280M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007281L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282W: http://sourceforge.net/projects/tlan/
7283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007284F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007285F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007286
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007287TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007288M: Kentaro Takeda <takedakn@nttdata.co.jp>
7289M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007290L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7291L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007292L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7293L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7294W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007295T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007297F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007298
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007299TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007300M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05007301L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007302S: Maintained
7303F: drivers/platform/x86/topstar-laptop.c
7304
Linus Torvalds1da177e2005-04-16 15:20:36 -07007305TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05007306L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007307S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007308F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007309
7310TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007311M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007312L: tlinux-users@tce.toshiba-dme.co.jp
7313W: http://www.buzzard.org.uk/toshiba/
7314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007315F: drivers/char/toshiba.c
7316F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007317
Pierre Ossmand719f902009-03-24 21:06:09 +01007318TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007319M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007320M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007321L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007322S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007323F: drivers/mmc/host/tmio_mmc*
7324F: drivers/mmc/host/sh_mobile_sdhi.c
7325F: include/linux/mmc/tmio.h
7326F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007327
Hugh Dickins98f32602009-05-21 20:33:58 +01007328TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007329M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007330L: linux-mm@kvack.org
7331S: Maintained
7332F: include/linux/shmem_fs.h
7333F: mm/shmem.c
7334
Alan Cox4e688522008-04-30 00:52:11 -07007335TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007336M: Kent Yoder <key@linux.vnet.ibm.com>
7337M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007338W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007339M: Marcel Selhorst <tpmdd@selhorst.net>
7340M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007341W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007342L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007344F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007345
Joe Perchesd6f005a2009-10-26 16:49:40 -07007346TRACING
7347M: Steven Rostedt <rostedt@goodmis.org>
7348M: Frederic Weisbecker <fweisbec@gmail.com>
7349M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007350T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007351S: Maintained
7352F: Documentation/trace/ftrace.txt
7353F: arch/*/*/*/ftrace.h
7354F: arch/*/kernel/ftrace.c
7355F: include/*/ftrace.h
7356F: include/linux/trace*.h
7357F: include/trace/
7358F: kernel/trace/
7359
Linus Torvalds1da177e2005-04-16 15:20:36 -07007360TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007361M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007362T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007363S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007364K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007365
Alan Cox4e688522008-04-30 00:52:11 -07007366TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007367M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7368S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007369T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007370F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007371F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007372F: include/linux/serial_core.h
7373F: include/linux/serial.h
7374F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007375
Antti Palosaari91952bc2012-10-01 12:28:46 -03007376TUA9001 MEDIA DRIVER
7377M: Antti Palosaari <crope@iki.fi>
7378L: linux-media@vger.kernel.org
7379W: http://linuxtv.org/
7380W: http://palosaari.fi/linux/
7381Q: http://patchwork.linuxtv.org/project/linux-media/list/
7382T: git git://linuxtv.org/anttip/media_tree.git
7383S: Maintained
7384F: drivers/media/tuners/tua9001*
7385
Grant Grundler740db6d2008-02-17 11:53:49 -07007386TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007387M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007388L: netdev@vger.kernel.org
7389S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007390F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007391
7392TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007393M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007394L: vtun@office.satix.net
7395W: http://vtun.sourceforge.net/tun
7396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007397F: Documentation/networking/tuntap.txt
7398F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007399
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007400TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007401M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007403F: drivers/tc/
7404F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007405
Linus Torvalds1da177e2005-04-16 15:20:36 -07007406U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007407M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007408L: linux-scsi@vger.kernel.org
7409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007410F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007412UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007413M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007414M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007415L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007416T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007417W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007419F: Documentation/filesystems/ubifs.txt
7420F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007421
Alan Coxcc2020e2008-05-19 14:21:51 +01007422UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007423M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007424W: http://www.uclinux.org/
7425L: uclinux-dev@uclinux.org (subscribers-only)
7426S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007427F: arch/m68k/*/*_no.*
7428F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007429
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007430UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007431M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007432W: http://uclinux-h8.sourceforge.jp/
7433S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007434F: arch/h8300/
7435F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007436F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007437
Linus Torvalds1da177e2005-04-16 15:20:36 -07007438UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007439M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007441F: Documentation/filesystems/udf.txt
7442F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007443
Alan Coxcc2020e2008-05-19 14:21:51 +01007444UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007445M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007447F: Documentation/filesystems/ufs.txt
7448F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007449
David Herrmann0a09d3a2012-06-10 15:16:28 +02007450UHID USERSPACE HID IO DRIVER:
7451M: David Herrmann <dh.herrmann@googlemail.com>
7452L: linux-input@vger.kernel.org
7453S: Maintained
7454F: drivers/hid/uhid.c
7455F: include/linux/uhid.h
7456
David Vrabel18332a82008-09-17 16:34:44 +01007457ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007458L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007459S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007460F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007461F: include/linux/uwb.h
7462F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007463
GuanXuetaob31d8272011-01-16 00:35:49 +08007464UNICORE32 ARCHITECTURE:
7465M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7466W: http://mprc.pku.edu.cn/~guanxuetao/linux
7467S: Maintained
7468T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7469F: arch/unicore32/
7470
Tony Finchd8379ab2009-11-27 15:50:30 +00007471UNIFDEF
7472M: Tony Finch <dot@dotat.at>
7473W: http://dotat.at/prog/unifdef
7474S: Maintained
7475F: scripts/unifdef.c
7476
Linus Torvalds1da177e2005-04-16 15:20:36 -07007477UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007478M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007479W: http://www.kernel.dk
7480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007481F: Documentation/cdrom/
7482F: drivers/cdrom/cdrom.c
7483F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007484
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307485UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7486M: Vinayak Holikatti <vinholikatti@gmail.com>
7487M: Santosh Y <santoshsy@gmail.com>
7488L: linux-scsi@vger.kernel.org
7489S: Supported
7490F: Documentation/scsi/ufs.txt
7491F: drivers/scsi/ufs/
7492
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007493UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007494M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007495W: http://www.linux-mtd.infradead.org/
7496L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007497T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007498S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007499F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007500F: include/linux/mtd/ubi.h
7501F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007502
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007503UNSORTED BLOCK IMAGES (UBI) Fastmap
7504M: Richard Weinberger <richard@nod.at>
7505L: linux-mtd@lists.infradead.org
7506S: Maintained
7507F: drivers/mtd/ubi/fastmap.c
7508
Linus Torvalds1da177e2005-04-16 15:20:36 -07007509USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007510M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007511L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007513F: Documentation/usb/acm.txt
7514F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007515
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007516USB ATTACHED SCSI
7517M: Matthew Wilcox <willy@linux.intel.com>
7518M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7519L: linux-usb@vger.kernel.org
7520L: linux-scsi@vger.kernel.org
7521S: Supported
7522F: drivers/usb/storage/uas.c
7523
Linus Torvalds1da177e2005-04-16 15:20:36 -07007524USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007525M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007526L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007527S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007528F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007529
Linus Torvalds1da177e2005-04-16 15:20:36 -07007530USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007531M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007532L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007534F: drivers/net/usb/cdc_*.c
7535F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007536
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007537USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007538M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007539L: linux-usb@vger.kernel.org
7540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007541F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007542
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007543USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007544M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007545L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007546W: http://www.linux-usb.org/usbnet
7547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007548F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007549
Alan Coxcc2020e2008-05-19 14:21:51 +01007550USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007551M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007552L: rio500-users@lists.sourceforge.net
7553W: http://rio500.sourceforge.net
7554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007555F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007556
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007558M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007559L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007561F: Documentation/usb/ehci.txt
7562F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007563
David Brownell69ae9e32006-11-14 02:03:31 -08007564USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007565M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007566L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007567W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007568T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007570F: drivers/usb/gadget/
7571F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007572
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007573USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007574M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007575L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007576T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007577S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007578F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007579F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007580
matt mooney857aab32011-06-17 15:50:46 -07007581USB/IP DRIVERS
7582M: Matt Mooney <mfm@muteddisk.com>
7583L: linux-usb@vger.kernel.org
7584S: Maintained
7585F: drivers/staging/usbip/
7586
Olav Kongas959eea22005-11-03 17:38:14 +02007587USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007588M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007589L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007591F: drivers/usb/host/isp116x*
7592F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007593
Linus Torvalds1da177e2005-04-16 15:20:36 -07007594USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007595M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007596L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007598F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007599
7600USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007601M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007602L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007603L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007604S: Maintained
7605W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007606F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007607
Clemens Ladischaf399172011-01-10 16:32:54 +01007608USB MIDI DRIVER
7609M: Clemens Ladisch <clemens@ladisch.de>
7610L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7611T: git git://git.alsa-project.org/alsa-kernel.git
7612S: Maintained
7613F: sound/usb/midi.*
7614
Linus Torvalds1da177e2005-04-16 15:20:36 -07007615USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007616M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007617L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007619F: Documentation/usb/ohci.txt
7620F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007621
Matthias Urlichsba460e42005-07-14 00:33:47 -07007622USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007623M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007624L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007626F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007627
Linus Torvalds1da177e2005-04-16 15:20:36 -07007628USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007629M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007630L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007631L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007632W: http://pegasus2.sourceforge.net/
7633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007634F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635
Felipe Balbid3ad5582012-05-21 16:24:49 +03007636USB PHY LAYER
7637M: Felipe Balbi <balbi@ti.com>
7638L: linux-usb@vger.kernel.org
7639T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7640S: Maintained
7641F: drivers/usb/phy/
7642F: drivers/usb/otg/
7643
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007644USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007645M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007646L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007647S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007648F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007649
7650USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007651M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007652L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007653L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007654W: http://pegasus2.sourceforge.net/
7655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007656F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007657
Alan Cox4e688522008-04-30 00:52:11 -07007658USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007659M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007660L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007662F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007663
7664USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007665M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007666L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007667S: Maintained
7668W: http://geocities.com/i0xox0i
7669W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007670F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007671
Linus Torvalds1da177e2005-04-16 15:20:36 -07007672USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007673M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007674W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007676F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677
7678USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007679M: Peter Berger <pberger@brimson.com>
7680M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007681L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007683F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007684
7685USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007686M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007687L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007688S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007689F: Documentation/usb/usb-serial.txt
7690F: drivers/usb/serial/generic.c
7691F: drivers/usb/serial/usb-serial.c
7692F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007693
Linus Torvalds1da177e2005-04-16 15:20:36 -07007694USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007695M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007696L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007698F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007699
7700USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007701M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007702L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007704F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007705
7706USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007707M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007708L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007709W: http://www.connecttech.com
7710S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007711F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007712
Steve Glendinningb3f0db12012-08-15 21:53:38 +00007713USB SMSC75XX ETHERNET DRIVER
7714M: Steve Glendinning <steve.glendinning@shawell.net>
7715L: netdev@vger.kernel.org
7716S: Maintained
7717F: drivers/net/usb/smsc75xx.*
7718
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007719USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007720M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007721L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007723F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007724
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007725USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007726M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007727L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007728L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007729T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007730W: http://www.linux-projects.org
7731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007732F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007733F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007734
7735USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007736M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007737L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007738W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007739T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007740S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007741F: Documentation/usb/
7742F: drivers/net/usb/
7743F: drivers/usb/
7744F: include/linux/usb.h
7745F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007746
7747USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007748M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007749L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007751F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007752
David Brownell69ae9e32006-11-14 02:03:31 -08007753USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02007754M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007755L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007756W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07007757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007758F: drivers/net/usb/usbnet.c
7759F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007760
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007761USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007762M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03007763L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007764L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007765T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007766W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007767S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007768F: drivers/media/usb/uvc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007769
Laurent Pinchart8282da42012-10-04 02:32:42 +02007770USB WEBCAM GADGET
7771M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7772L: linux-usb@vger.kernel.org
7773S: Maintained
7774F: drivers/usb/gadget/*uvc*.c
7775F: drivers/usb/gadget/webcam.c
7776
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007777USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007778M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007779L: linux-wireless@vger.kernel.org
7780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007781F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007782
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007783USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007784M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007785L: linux-usb@vger.kernel.org
7786S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007787F: drivers/usb/host/xhci*
7788F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007789
Linus Torvalds1da177e2005-04-16 15:20:36 -07007790USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007791L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007792W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007793S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007794F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007795
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007796USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007797M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007798L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007799L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007800T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007801W: http://royale.zerezo.com/zr364xx/
7802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007803F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007804F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007805
Randy Dunlape7839f22008-10-12 16:11:45 -07007806USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007807M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007808M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007809L: user-mode-linux-devel@lists.sourceforge.net
7810L: user-mode-linux-user@lists.sourceforge.net
7811W: http://user-mode-linux.sourceforge.net
7812S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007813F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007814F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02007815F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07007816F: fs/hostfs/
7817F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007818
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007819USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007820M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08007821M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007823F: Documentation/DocBook/uio-howto.tmpl
7824F: drivers/uio/
7825F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007826
Karel Zak256cccb2012-06-01 10:13:09 +02007827UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007828M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02007829L: util-linux@vger.kernel.org
7830W: http://en.wikipedia.org/wiki/Util-linux
7831T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007832S: Maintained
7833
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007834UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007835M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007836L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007837W: http://dev.gentoo.org/~spock/projects/uvesafb/
7838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007839F: Documentation/fb/uvesafb.txt
7840F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007841
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007842VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007843M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007845F: Documentation/filesystems/vfat.txt
7846F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007847
Alex Williamsoncba33452012-07-31 08:16:22 -06007848VFIO DRIVER
7849M: Alex Williamson <alex.williamson@redhat.com>
7850L: kvm@vger.kernel.org
7851S: Maintained
7852F: Documentation/vfio.txt
7853F: drivers/vfio/
7854F: include/linux/vfio.h
7855
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007856VIDEOBUF2 FRAMEWORK
7857M: Pawel Osciak <pawel@osciak.com>
7858M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007859M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007860L: linux-media@vger.kernel.org
7861S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007862F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007863F: include/media/videobuf2-*
7864
Amit Shah9a824462010-03-23 18:23:09 +05307865VIRTIO CONSOLE DRIVER
7866M: Amit Shah <amit.shah@redhat.com>
7867L: virtualization@lists.linux-foundation.org
7868S: Maintained
7869F: drivers/char/virtio_console.c
7870F: include/linux/virtio_console.h
7871
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307872VIRTIO CORE, NET AND BLOCK DRIVERS
7873M: Rusty Russell <rusty@rustcorp.com.au>
7874M: "Michael S. Tsirkin" <mst@redhat.com>
7875L: virtualization@lists.linux-foundation.org
7876S: Maintained
7877F: drivers/virtio/
7878F: drivers/net/virtio_net.c
7879F: drivers/block/virtio_blk.c
7880F: include/linux/virtio_*.h
7881
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007882VIRTIO HOST (VHOST)
7883M: "Michael S. Tsirkin" <mst@redhat.com>
7884L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007885L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00007886L: netdev@vger.kernel.org
7887S: Maintained
7888F: drivers/vhost/
7889F: include/linux/vhost.h
7890
Linus Torvalds1da177e2005-04-16 15:20:36 -07007891VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007892M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007893S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007894F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007895
Jean Delvare32c0a522005-09-22 21:47:58 +02007896VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007897M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01007898L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02007899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007900F: Documentation/i2c/busses/i2c-viapro
7901F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02007902
Harald Weltef0bf7f62009-06-17 20:22:39 +02007903VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007904M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007905M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007906S: Maintained
7907F: drivers/mmc/host/via-sdmmc.c
7908
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007909VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007910M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007911L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007912S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007913F: include/linux/via-core.h
7914F: include/linux/via-gpio.h
7915F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007916F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007917
Francois Romieu01f20732007-01-26 00:57:17 -08007918VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007919M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007920L: netdev@vger.kernel.org
7921S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007922F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007923
Patrick McHardybe7f8272007-10-23 20:26:36 -07007924VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007925M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007926L: netdev@vger.kernel.org
7927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007928F: drivers/net/macvlan.c
7929F: include/linux/if_*vlan.h
7930F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07007931
Florian Fainelli55e331c2009-06-16 15:33:53 -07007932VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007933M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08007934L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07007935S: Maintained
7936F: drivers/vlynq/vlynq.c
7937F: include/linux/vlynq.h
7938
Martyn Welch390beae2012-05-03 17:52:36 +01007939VME SUBSYSTEM
7940M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02007941M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01007942M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7943L: devel@driverdev.osuosl.org
7944S: Maintained
7945T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7946F: Documentation/vme_api.txt
7947F: drivers/staging/vme/
7948F: drivers/vme/
7949F: include/linux/vme*
7950
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007951VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08007952M: Shreyas Bhatewara <sbhatewara@vmware.com>
7953M: "VMware, Inc." <pv-drivers@vmware.com>
7954L: netdev@vger.kernel.org
7955S: Maintained
7956F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007957
Alok Kataria851b1642009-10-13 14:51:05 -07007958VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08007959M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07007960M: VMware PV-Drivers <pv-drivers@vmware.com>
7961L: linux-scsi@vger.kernel.org
7962S: Maintained
7963F: drivers/scsi/vmw_pvscsi.c
7964F: drivers/scsi/vmw_pvscsi.h
7965
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007966VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01007967M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007968M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007969W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00007970W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07007971T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007972S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007973F: drivers/regulator/
7974F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007975
Juerg Haefligerab413192006-09-24 20:54:04 +02007976VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007977M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02007978L: lm-sensors@lm-sensors.org
7979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007980F: Documentation/hwmon/vt1211
7981F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02007982
Roger Lucas1de9e372005-11-26 20:20:05 +01007983VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007984M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01007985L: lm-sensors@lm-sensors.org
7986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007987F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01007988
Tony Olech88095e72011-05-14 16:48:13 -04007989VUB300 USB to SDIO/SD/MMC bridge chip
7990M: Tony Olech <tony.olech@elandigitalsystems.com>
7991L: linux-mmc@vger.kernel.org
7992L: linux-usb@vger.kernel.org
7993S: Supported
7994F: drivers/mmc/host/vub300.c
7995
Linus Torvalds1da177e2005-04-16 15:20:36 -07007996W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07007997M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007999F: Documentation/w1/
8000F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008001
Charles Spirakis13927072006-07-05 18:05:15 +02008002W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008003M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008004L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008006F: Documentation/hwmon/w83791d
8007F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008008
Rudolf Marek61db0112006-12-12 18:18:30 +01008009W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008010M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008011L: lm-sensors@lm-sensors.org
8012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008013F: Documentation/hwmon/w83793
8014F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008015
Jean Delvaree3760b42010-10-28 20:31:49 +02008016W83795 HARDWARE MONITORING DRIVER
8017M: Jean Delvare <khali@linux-fr.org>
8018L: lm-sensors@lm-sensors.org
8019S: Maintained
8020F: drivers/hwmon/w83795.c
8021
Linus Torvalds1da177e2005-04-16 15:20:36 -07008022W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008023M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008025F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008026
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008027WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008028M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008029L: linux-watchdog@vger.kernel.org
8030W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008031T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008033F: Documentation/watchdog/
8034F: drivers/watchdog/
8035F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008036
Linus Torvalds1da177e2005-04-16 15:20:36 -07008037WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008038M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008039L: linux-scsi@vger.kernel.org
8040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008041F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008042
David Herrmannb22e00f2011-09-06 13:50:40 +02008043WIIMOTE HID DRIVER
8044M: David Herrmann <dh.herrmann@googlemail.com>
8045L: linux-input@vger.kernel.org
8046S: Maintained
8047F: drivers/hid/hid-wiimote*
8048
David Härdemane258b802009-09-21 17:04:53 -07008049WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008050M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008051S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008052F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008053
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008054WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008055M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008056M: linux-wimax@intel.com
8057L: wimax@linuxwimax.org
8058S: Supported
8059W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008060F: Documentation/wimax/README.wimax
8061F: include/linux/wimax.h
8062F: include/linux/wimax/debug.h
8063F: include/net/wimax.h
8064F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008065
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008066WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008067M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008069F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008070
Linus Torvalds1da177e2005-04-16 15:20:36 -07008071WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008072M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008073L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008074W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008076F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008077
Mark Brownfebf1df2008-04-02 00:51:09 -04008078WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008079M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8080M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008081L: linux-input@vger.kernel.org
8082T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8083W: http://opensource.wolfsonmicro.com/node/7
8084S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008085F: drivers/input/touchscreen/*wm97*
8086F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008087
Mark Brown055bcbc2010-08-13 14:18:12 +01008088WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008089M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008090L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008091T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008092T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008093W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008094S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008095F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008096F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008097F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008098F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008099F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008100F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008101F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008102F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008103F: drivers/input/misc/wm831x-on.c
8104F: drivers/input/touchscreen/wm831x-ts.c
8105F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008106F: drivers/mfd/arizona*
8107F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008108F: drivers/power/wm83*.c
8109F: drivers/rtc/rtc-wm83*.c
8110F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008111F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008112F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008113F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008114F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008115F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008116F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008117F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008118F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008119F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008120F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008121
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008122WORKQUEUE
8123M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008124T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8125S: Maintained
8126F: include/linux/workqueue.h
8127F: kernel/workqueue.c
8128F: Documentation/workqueue.txt
8129
Linus Torvalds1da177e2005-04-16 15:20:36 -07008130X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008131M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008132L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008133S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008134F: Documentation/networking/x25*
8135F: include/net/x25*
8136F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008137
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008138X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008139M: Thomas Gleixner <tglx@linutronix.de>
8140M: Ingo Molnar <mingo@redhat.com>
8141M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008142M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008143T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008145F: Documentation/x86/
8146F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008147
Matthew Garrettd0944852010-02-11 10:40:13 -05008148X86 PLATFORM DRIVERS
8149M: Matthew Garrett <mjg@redhat.com>
8150L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008151T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05008152S: Maintained
8153F: drivers/platform/x86
8154
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008155X86 MCE INFRASTRUCTURE
8156M: Tony Luck <tony.luck@intel.com>
8157M: Borislav Petkov <bp@amd64.org>
8158L: linux-edac@vger.kernel.org
8159S: Maintained
8160F: arch/x86/kernel/cpu/mcheck/*
8161
Ian Campbellc4468082011-04-27 15:26:46 -07008162XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008163M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008164M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008165L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8166L: virtualization@lists.linux-foundation.org
8167S: Supported
8168F: arch/x86/xen/
8169F: drivers/*/xen-*front.c
8170F: drivers/xen/
8171F: arch/x86/include/asm/xen/
8172F: include/xen/
8173
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008174XEN HYPERVISOR ARM
8175M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8176L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8177S: Supported
8178F: arch/arm/xen/
8179F: arch/arm/include/asm/xen/
8180
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008181XEN NETWORK BACKEND DRIVER
8182M: Ian Campbell <ian.campbell@citrix.com>
8183L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8184L: netdev@vger.kernel.org
8185S: Supported
8186F: drivers/net/xen-netback/*
8187
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008188XEN PCI SUBSYSTEM
8189M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008190L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008191S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008192F: arch/x86/pci/*xen*
8193F: drivers/pci/*xen*
8194
8195XEN SWIOTLB SUBSYSTEM
8196M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008197L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008198S: Supported
8199F: arch/x86/xen/*swiotlb*
8200F: drivers/xen/*swiotlb*
8201
Linus Torvalds1da177e2005-04-16 15:20:36 -07008202XFS FILESYSTEM
8203P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008204M: Ben Myers <bpm@sgi.com>
8205M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008206M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008207L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008208W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008209T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008210S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008211F: Documentation/filesystems/xfs.txt
8212F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008213
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008214XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008215M: Anirudha Sarangi <anirudh@xilinx.com>
8216M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008217S: Maintained
8218F: drivers/net/ethernet/xilinx/xilinx_axienet*
8219
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008220XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008221M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008222W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008224F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008225
Peter Korsgaard238b8722006-12-06 20:35:17 -08008226XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008227M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008228L: linux-serial@vger.kernel.org
8229S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008230F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008231
Linus Torvalds1da177e2005-04-16 15:20:36 -07008232YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008233M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008234L: linux-hams@vger.kernel.org
8235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008236F: drivers/net/hamradio/yam*
8237F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008238
Henkaf64a5e2005-10-12 15:02:56 +02008239YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008240M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008241L: usbb2k-api-dev@nongnu.org
8242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008243F: Documentation/input/yealink.txt
8244F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008245
Linus Torvalds1da177e2005-04-16 15:20:36 -07008246Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008247M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008248W: http://yaina.de/jreuter/
8249W: http://www.qsl.net/dl1bke/
8250L: linux-hams@vger.kernel.org
8251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008252F: Documentation/networking/z8530drv.txt
8253F: drivers/net/hamradio/*scc.c
8254F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008255
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008256ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008257M: Daniel Drake <dsd@gentoo.org>
8258M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008259W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008260L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008261L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008263F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008264
Linus Torvalds1da177e2005-04-16 15:20:36 -07008265ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008266L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008267L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008268W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008269T: Mercurial http://linuxtv.org/hg/v4l-dvb
8270S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008271F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008272
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008273ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008274M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008275S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008276F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008277
Linus Torvalds1da177e2005-04-16 15:20:36 -07008278THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008279M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008280L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008281Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008282T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008283S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008284F: *
8285F: */