blob: 2f66431bc69805ba93fd50663898e4fddd7ac1f8 [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 Whitcroft0a920b5b2007-06-01 00:46:48 -070034 generalized kernel feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Joe Perchesf70f8732009-06-16 15:34:08 -070040 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
Alan Coxc9ee1332006-05-20 15:00:12 -070053 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070054 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
Alan Coxc9ee1332006-05-20 15:00:12 -0700637. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
65 does not respond.
66
678. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Joe Perchesc7c4fb12009-10-26 16:49:48 -070069Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Joe Perchesc7c4fb12009-10-26 16:49:48 -070071 P: Person (obsolete)
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
Joe Perches8a6e2532010-03-05 13:43:11 -080075 Q: Patchwork web based patch tracking system site
Harry Weib153da62011-03-22 16:34:25 -070076 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
Joe Perchesc7c4fb12009-10-26 16:49:48 -070077 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
86 should be using that.
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99 K: Keyword perl extended regex pattern to match content in a
100 patch or file. For instance:
101 K: of_get_profile
102 matches patches or files that contain "of_get_profile"
103 K: \b(printk|pr_(info|err))\b
104 matches patches or files that contain one or more of the words
105 printk, pr_info or pr_err
106 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108Note: For the hard of thinking, this list is meant to remain in alphabetical
109order. If you could add yourselves to it in alphabetical order that would be
110so much easier [Ed]
111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700114 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700117M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -0700120F: drivers/net/ethernet/i825xx/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Steffen Klasserta6d89912007-08-10 14:05:27 -07001223C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700123M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700124L: netdev@vger.kernel.org
125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: Documentation/networking/vortex.txt
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700127F: drivers/net/ethernet/3com/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700130M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132S: Maintained
Jeff Kirsherca7a8e82011-03-30 03:47:06 -0700133F: drivers/net/ethernet/3com/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
adam radfordc4de0ce2010-03-08 12:40:36 -08001353WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
136M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800138W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800140F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
14253C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700143M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144L: linux-scsi@vger.kernel.org
145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700146F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
1486PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700149M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150L: linux-hams@vger.kernel.org
151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700152F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548169 10/100/1000 GIGABIT ETHERNET DRIVER
Francois Romieuc8a75b32011-04-17 17:46:40 -0700155M: Realtek linux nic maintainers <nic_swsd@realtek.com>
Joe Perches8b58be82009-07-29 15:04:30 -0700156M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700157L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158S: Maintained
Jeff Kirshera8fe65b2011-05-19 23:27:55 -0700159F: drivers/net/ethernet/realtek/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
1618250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -0800162M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163L: linux-serial@vger.kernel.org
164W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700165S: Maintained
Joe Perches08deed12012-03-23 15:01:57 -0700166T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800167F: drivers/tty/serial/8250*
Joe Perches679655d2009-04-07 20:44:32 -0700168F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
1708390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700171L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000172S: Orphan / Obsolete
Jeff Kirsher644570b2011-04-02 06:20:12 -0700173F: drivers/net/ethernet/8390/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700176M: Eric Van Hensbergen <ericvh@gmail.com>
177M: Ron Minnich <rminnich@sandia.gov>
178M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100179L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500180W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800181Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800182T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700184F: Documentation/filesystems/9p.txt
185F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800186
Antti Palosaari91952bc2012-10-01 12:28:46 -0300187A8293 MEDIA DRIVER
188M: Antti Palosaari <crope@iki.fi>
189L: linux-media@vger.kernel.org
190W: http://linuxtv.org/
191W: http://palosaari.fi/linux/
192Q: http://patchwork.linuxtv.org/project/linux-media/list/
193T: git git://linuxtv.org/anttip/media_tree.git
194S: Maintained
195F: drivers/media/dvb-frontends/a8293*
196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700197AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700198M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goede93d0cc52011-03-21 17:59:36 +0100206M: Hans de Goede <hdegoede@redhat.com>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700213L: lm-sensors@lm-sensors.org
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219L: linux-acenic@sunsite.dk
220S: Maintained
Jeff Kirsher531c4f82011-08-13 00:37:14 -0700221F: drivers/net/ethernet/alteon/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Peter Feuerere86435e2009-06-21 18:53:03 +0200223ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700224M: Peter Feuerer <peter@piie.net>
Matthew Garrettd09448532010-02-11 10:40:13 -0500225L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700226W: http://piie.net/?section=acerhdf
227S: Maintained
228F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200229
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000230ACER WMI LAPTOP EXTRAS
Carlos Corbachod9269a72011-05-02 09:57:18 +0100231M: Joey Lee <jlee@novell.com>
Matthew Garrettd09448532010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700234F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700237M: Len Brown <lenb@kernel.org>
Rafael J. Wysockiea26d0c2012-10-19 07:11:44 +0200238M: Rafael J. Wysocki <rjw@sisk.pl>
Len Brown6968e502005-12-30 00:32:49 -0500239L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400240W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800241Q: http://patchwork.kernel.org/project/linux-acpi/list/
Igor Murzovaaef2922012-03-30 22:40:12 +0400242T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
Len Brown8b59a452007-01-08 19:03:28 -0500243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700244F: drivers/acpi/
245F: drivers/pnp/pnpacpi/
246F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700247F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248
Len Brown8b59a452007-01-08 19:03:28 -0500249ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700250M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500251L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300252W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500253S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700254F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Len Brown8b59a452007-01-08 19:03:28 -0500256ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700262
Len Brown359acec2007-02-10 01:59:24 -0500263ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500269
Carlos Corbachobff431e2008-02-05 02:17:04 +0000270ACPI WMI DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -0500271L: platform-driver-x86@vger.kernel.org
Carlos Corbacho5b927252011-05-02 09:57:13 +0100272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700273F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000274
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100275AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700276M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200277W: http://wiki.parisc-linux.org/AD1889
278L: linux-parisc@vger.kernel.org
279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700280F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100281
Michael Hennerich527a1a82010-10-28 11:31:28 +0000282AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
283M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100284L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700285W: http://wiki.analog.com/AD5254
Michael Hennerich527a1a82010-10-28 11:31:28 +0000286S: Supported
287F: drivers/misc/ad525x_dpot.c
288
289AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
290M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100291L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700292W: http://wiki.analog.com/AD5398
Michael Hennerich527a1a82010-10-28 11:31:28 +0000293S: Supported
294F: drivers/regulator/ad5398.c
295
296AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
297M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100298L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700299W: http://wiki.analog.com/AD7142
Michael Hennerich527a1a82010-10-28 11:31:28 +0000300S: Supported
301F: drivers/input/misc/ad714x.c
302
303AD7877 TOUCHSCREEN DRIVER
304M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100305L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700306W: http://wiki.analog.com/AD7877
Michael Hennerich527a1a82010-10-28 11:31:28 +0000307S: Supported
308F: drivers/input/touchscreen/ad7877.c
309
310AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
311M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100312L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700313W: http://wiki.analog.com/AD7879
Michael Hennerich527a1a82010-10-28 11:31:28 +0000314S: Supported
315F: drivers/input/touchscreen/ad7879.c
316
Jiri Kosina1330b0d2011-10-31 17:11:41 -0700317ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
318M: Jiri Kosina <jkosina@suse.cz>
319S: Maintained
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200323L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: Documentation/hwmon/adm1025
326F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Corentin Labbecae2caa2007-02-14 21:15:04 +0100328ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700329M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330L: lm-sensors@lm-sensors.org
331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333
Michael Wucc0b88c2007-08-31 01:15:25 -0400334ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400335L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +0200336W: http://wireless.kernel.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400337S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400339
Michael Hennerich527a1a82010-10-28 11:31:28 +0000340ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
341M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100342L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700343W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000344S: Supported
345F: drivers/mfd/adp5520.c
346F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700347F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800348F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000349F: drivers/input/keyboard/adp5520-keys.c
350
351ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
352M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100353L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700354W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000355S: Supported
356F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800357F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000358
359ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
360M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100361L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700362W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000363S: Supported
364F: drivers/video/backlight/adp8860_bl.c
365
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100366ADS1015 HARDWARE MONITOR DRIVER
367M: Dirk Eibach <eibach@gdsys.de>
368L: lm-sensors@lm-sensors.org
369S: Maintained
370F: Documentation/hwmon/ads1015
371F: drivers/hwmon/ads1015.c
372F: include/linux/i2c/ads1015.h
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700375M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700377F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Jean Delvareb058b852009-12-09 20:36:08 +0100379ADT7475 HARDWARE MONITOR DRIVER
380M: Jean Delvare <khali@linux-fr.org>
381L: lm-sensors@lm-sensors.org
382S: Maintained
383F: Documentation/hwmon/adt7475
384F: drivers/hwmon/adt7475.c
385
Michael Hennerich527a1a82010-10-28 11:31:28 +0000386ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
387M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100388L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700389W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000390S: Supported
391F: drivers/input/misc/adxl34x.c
392
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400393ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700394M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400395L: linux-scsi@vger.kernel.org
396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700397F: Documentation/scsi/advansys.txt
398F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700403F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Antti Palosaari91952bc2012-10-01 12:28:46 -0300405AF9013 MEDIA DRIVER
406M: Antti Palosaari <crope@iki.fi>
407L: linux-media@vger.kernel.org
408W: http://linuxtv.org/
409W: http://palosaari.fi/linux/
410Q: http://patchwork.linuxtv.org/project/linux-media/list/
411T: git git://linuxtv.org/anttip/media_tree.git
412S: Maintained
413F: drivers/media/dvb-frontends/af9013*
414
415AF9033 MEDIA DRIVER
416M: Antti Palosaari <crope@iki.fi>
417L: linux-media@vger.kernel.org
418W: http://linuxtv.org/
419W: http://palosaari.fi/linux/
420Q: http://patchwork.linuxtv.org/project/linux-media/list/
421T: git git://linuxtv.org/anttip/media_tree.git
422S: Maintained
423F: drivers/media/dvb-frontends/af9033*
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200426L: linux-fsdevel@vger.kernel.org
427S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700428F: Documentation/filesystems/affs.txt
429F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700431AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700432M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700433L: linux-afs@lists.infradead.org
434S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700435F: fs/afs/
436F: include/net/af_rxrpc.h
437F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700440M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700441T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700443F: drivers/char/agp/
444F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448L: linux-scsi@vger.kernel.org
449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/scsi/aha152x*
451F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Hannes Reinecke64624d42007-10-19 10:32:29 +0200453AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200455L: linux-scsi@vger.kernel.org
456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/scsi/aic7xxx/
458F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200459
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700460AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700461M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700462L: linux-aio@kvack.org
463S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700464F: fs/aio.c
465F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700468M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700469L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470W: http://www.linux-usb.org/SpeedTouch/
471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700472F: drivers/usb/atm/speedtch.c
473F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Pierre Ossman272f1332007-05-14 21:25:26 +0200475ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700476M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700478F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200479
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000480ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700481M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100482L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700484F: Documentation/i2c/busses/i2c-ali1563
485F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700488M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700489M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500490M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700491S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700492L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700493F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Tobias Klauseradf92512011-02-09 10:58:29 +0100495ALTERA UART/JTAG UART SERIAL DRIVERS
496M: Tobias Klauser <tklauser@distanz.ch>
497L: linux-serial@vger.kernel.org
498L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
499S: Maintained
500F: drivers/tty/serial/altera_uart.c
501F: drivers/tty/serial/altera_jtaguart.c
502F: include/linux/altera_uart.h
503F: include/linux/altera_jtaguart.h
504
Andreas Herrmann512d1022011-05-25 20:43:31 +0200505AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100506M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200507L: lm-sensors@lm-sensors.org
508S: Maintained
509F: Documentation/hwmon/fam15h_power
510F: drivers/hwmon/fam15h_power.c
511
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700512AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700513M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700514L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700516F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700517
Jordan Crousef90b8112006-01-06 00:12:14 -0800518AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800519P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700520L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800521W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/char/hw_random/geode-rng.c
524F: drivers/crypto/geode*
525F: drivers/video/geode/
526F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800527
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200528AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700529M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200530L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100531T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200532S: Supported
Joe Perchesb2c16392011-12-08 20:21:40 -0800533F: drivers/iommu/amd_iommu*.[ch]
534F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200535
Peter Orubae7f5b302008-07-28 18:44:11 +0200536AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700537M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700538L: amd64-microcode@amd64.org
539S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700540F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200541
Stelian Pop284f42b2006-12-12 18:18:31 +0100542AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700543M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100544S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200545F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100546
Tom Tuckerf94b5332006-09-22 15:22:48 -0700547AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700548M: Tom Tucker <tom@opengridcomputing.com>
549M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700550L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700552F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700553
Michael Hennerich527a1a82010-10-28 11:31:28 +0000554ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200555M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100556L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000557L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700558W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000559S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100560F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200561F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000562F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000563F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100564F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000565
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400566ANALOG DEVICES INC ASOC DRIVERS
567L: uclinux-dist-devel@blackfin.uclinux.org
568L: alsa-devel@alsa-project.org (moderated for non-subscribers)
569W: http://blackfin.uclinux.org/
570S: Supported
571F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400572
Johannes Berg42269062006-07-25 16:15:50 +0200573AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700574M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000575L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700576L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700578F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200581M: Jiri Kosina <jkosina@suse.cz>
582S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700583F: arch/x86/kernel/apm_32.c
584F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200585F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700587APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700588M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700589L: linux-input@vger.kernel.org
590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700591F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700592
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700593APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200594M: Henrik Rydberg <rydberg@euromail.se>
595L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700597F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700600M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700602F: drivers/net/appletalk/
603F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Viresh Kumara4801672011-02-22 15:46:07 +0530605ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700606M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530607L: linux-ide@vger.kernel.org
608S: Maintained
609F: include/linux/pata_arasan_cf_data.h
610F: drivers/ata/pata_arasan_cf.c
611
Jaya Kumar1154ea72005-06-21 17:17:04 -0700612ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700613M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700615F: drivers/video/arcfb.c
616F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700619M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700621F: arch/arm/lib/floppydma.S
622F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Will Deacon6f965212011-07-01 14:38:53 +0100624ARM PMU PROFILING AND DEBUGGING
625M: Will Deacon <will.deacon@arm.com>
626S: Maintained
627F: arch/arm/kernel/perf_event*
628F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100629F: arch/arm/include/asm/pmu.h
630F: arch/arm/kernel/hw_breakpoint.c
631F: arch/arm/include/asm/hw_breakpoint.h
632
Russell Kingd4275352009-04-16 14:05:27 +0100633ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700634M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700635L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100636W: http://www.arm.linux.org.uk/
637S: Maintained
638F: arch/arm/
639
Stephen Boydd323c2432012-10-24 11:00:29 -0700640ARM SUB-ARCHITECTURES
641L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
642S: MAINTAINED
643F: arch/arm/mach-*/
644F: arch/arm/plat-*/
645T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
646
Russell Kingcefbf4e2009-11-22 17:40:28 +0000647ARM PRIMECELL AACI PL041 DRIVER
648M: Russell King <linux@arm.linux.org.uk>
649S: Maintained
650F: sound/arm/aaci.*
651
652ARM PRIMECELL CLCD PL110 DRIVER
653M: Russell King <linux@arm.linux.org.uk>
654S: Maintained
655F: drivers/video/amba-clcd.*
656
657ARM PRIMECELL KMI PL050 DRIVER
658M: Russell King <linux@arm.linux.org.uk>
659S: Maintained
660F: drivers/input/serio/ambakmi.*
661F: include/linux/amba/kmi.h
662
Russell King2761f5c2007-05-24 06:56:08 +0200663ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200664S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700665F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200666
Russell Kingcefbf4e2009-11-22 17:40:28 +0000667ARM PRIMECELL BUS SUPPORT
668M: Russell King <linux@arm.linux.org.uk>
669S: Maintained
670F: drivers/amba/
671F: include/linux/amba/bus.h
672
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800673ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700674M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700675L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800676S: Maintained
677
Sergey Lapin9c784f92008-08-03 02:29:48 +0100678ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700679M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700680L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100681S: Maintained
682
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700684M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700685L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800686S: Maintained
687
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800688ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700689M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800690M: Nicolas Ferre <nicolas.ferre@atmel.com>
691M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700692L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200693W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800694W: http://www.linux4sam.org
695S: Supported
696F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100697
Rob Herring986cf2e2011-06-22 11:28:53 -0500698ARM/CALXEDA HIGHBANK ARCHITECTURE
699M: Rob Herring <rob.herring@calxeda.com>
700L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
701S: Maintained
702F: arch/arm/mach-highbank/
703
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300704ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
705M: Anton Vorontsov <avorontsov@mvista.com>
706S: Maintained
707F: arch/arm/mach-cns3xxx/
708T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
709
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800710ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100711M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000712M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700713L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800714S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100715F: arch/arm/mach-ep93xx/
716F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800717
718ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700719M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700720L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800721S: Maintained
722
Russell Kingd4275352009-04-16 14:05:27 +0100723ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700724M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700725L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700726S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100727F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700728F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100729
Mike Rapoportd48134e2008-08-20 09:03:26 +0100730ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700731M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100733S: Maintained
734
Hubert Feurstein94150092009-10-07 08:36:07 +0100735ARM/CONTEC MICRO9 MACHINE SUPPORT
736M: Hubert Feurstein <hubert.feurstein@contec.at>
737S: Maintained
738F: arch/arm/mach-ep93xx/micro9.c
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700741M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742S: Maintained
743
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200744ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100745M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700746L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100747T: git git://git.berlios.de/gemini-board
748S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300749F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200750
Barry Songa990cbd2011-07-12 21:44:10 +0800751ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
752M: Barry Song <baohua.song@csr.com>
753L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
754S: Maintained
755F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800756F: drivers/dma/sirf-dma.c
757F: drivers/i2c/busses/i2c-sirf.c
758F: drivers/pinctrl/pinctrl-sirf.c
759F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800760
Russell Kingd4275352009-04-16 14:05:27 +0100761ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700762M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700763L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100764W: http://www.arm.linux.org.uk/
765S: Maintained
766F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700767F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100768
Russell Kinga9da4f72008-07-12 21:42:04 +0100769ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700770M: Daniel Ribeiro <drwyrm@gmail.com>
771M: Stefan Schmidt <stefan@openezx.org>
772M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200773L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100774W: http://www.openezx.org/
775S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200776T: topgit git://git.openezx.org/openezx.git
777F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100778
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200779ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100780M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700781L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100782S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700783T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300784F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200785
Russell Kingd4275352009-04-16 14:05:27 +0100786ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700787M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700788L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100789W: http://www.arm.linux.org.uk/
790S: Maintained
791F: arch/arm/include/asm/hardware/dec21285.h
792F: arch/arm/mach-footbridge/
793
Sascha Hauer86183a52008-07-24 23:50:35 +0200794ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700795M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700796L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200797S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700798T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100799F: arch/arm/mach-imx/
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100800F: arch/arm/plat-mxc/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700801F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200802
Shawn Guo8bcb97652011-10-07 22:24:18 +0800803ARM/FREESCALE IMX6
804M: Shawn Guo <shawn.guo@linaro.org>
805L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
806S: Maintained
807T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
808F: arch/arm/mach-imx/*imx6*
809
Shawn Guoa9866a02011-10-21 11:53:34 +0800810ARM/FREESCALE MXS ARM ARCHITECTURE
811M: Shawn Guo <shawn.guo@linaro.org>
812L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
813S: Maintained
814T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
815F: arch/arm/mach-mxs/
816
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800817ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700818M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700819L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800820S: Maintained
821
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100822ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700823M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700824L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100825S: Maintained
826
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200827ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700828M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100829M: Paul Parsons <lost.distance@yahoo.com>
830L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200831S: Maintained
832F: arch/arm/mach-pxa/hx4700.c
833F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100834F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200835
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100836ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700837M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200838W: www.jlime.com
839S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700840T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
841F: arch/arm/mach-sa1100/jornada720.c
842F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100843
Marek Vasut403d2972010-05-22 00:29:39 +0200844ARM/INCOME PXA270 SUPPORT
845M: Marek Vasut <marek.vasut@gmail.com>
846L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
847S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700848F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200849
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800850ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700851M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700852M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700853L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700854S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100855
856ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700857M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700858L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700859S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800860
861ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700862M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700863M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700864L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700865S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800866
867ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700868M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700869M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700870L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700871S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800872
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800873ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700874M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700875L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800876S: Maintained
877
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200878ARM/INTEL IXP4XX ARM ARCHITECTURE
879M: Imre Kaloz <kaloz@openwrt.org>
880M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100881L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200882S: Maintained
883F: arch/arm/mach-ixp4xx/
884
Joe Perches838553c2010-10-26 14:22:59 -0700885ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100886M: Jonathan Cameron <jic23@cam.ac.uk>
887L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
888S: Maintained
889F: arch/arm/mach-pxa/stargate2.c
890F: drivers/pcmcia/pxa2xx_stargate2.c
891
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800892ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700893M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700894M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700895L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700896S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800897
898ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700899M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800901S: Maintained
902
903ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700904M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700905L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800906S: Maintained
907
Philipp Zabel3b8861712008-07-09 21:27:15 +0100908ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700909M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100910S: Maintained
911
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200912ARM/Marvell Armada 370 and Armada XP SOC support
913M: Jason Cooper <jason@lakedaemon.net>
914M: Andrew Lunn <andrew@lunn.ch>
915M: Gregory Clement <gregory.clement@free-electrons.com>
916L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
917S: Maintained
918F: arch/arm/mach-mvebu/
919
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400920ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
921M: Jason Cooper <jason@lakedaemon.net>
922M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700923L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400924S: Maintained
925F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400926F: arch/arm/mach-kirkwood/
927F: arch/arm/mach-mv78xx0/
928F: arch/arm/mach-orion5x/
929F: arch/arm/plat-orion/
930
Alexander Clouterd69ac132011-04-14 15:22:02 -0700931ARM/Orion SoC/Technologic Systems TS-78xx platform support
932M: Alexander Clouter <alex@digriz.org.uk>
933L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
934W: http://www.digriz.org.uk/ts78xx/kernel
935S: Maintained
936F: arch/arm/mach-orion5x/ts78xx-*
937
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000938ARM/MICREL KS8695 ARCHITECTURE
939M: Greg Ungerer <gerg@uclinux.org>
940L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
941F: arch/arm/mach-ks8695
942S: Odd Fixes
943
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200944ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700945M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700946L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200947F: arch/arm/mach-pxa/mioa701.c
948S: Maintained
949
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100950ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700951M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100952S: Maintained
953
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100954ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700955M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200956M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700957M: STEricsson <STEricsson_nomadik_linux@list.st.com>
958L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
959S: Maintained
960F: arch/arm/mach-nomadik/
961F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100962F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200963T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100964
Andy Green9d762952009-05-19 06:41:42 -0300965ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700966M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300967L: openmoko-kernel@lists.openmoko.org (subscribers-only)
968W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
969S: Supported
970
Daniel Walker0c19d212009-12-07 16:53:51 -0800971ARM/QUALCOMM MSM MACHINE SUPPORT
972M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -0800973M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -0800974M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800975L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800976F: arch/arm/mach-msm/
977F: drivers/video/msm/
978F: drivers/mmc/host/msm_sdcc.c
979F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -0800980F: drivers/tty/serial/msm_serial.h
981F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -0700982F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -0700983F: drivers/*/pm8???-*
984F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -0800985T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -0800986S: Maintained
987
Dirk Opfer8459c152005-11-06 14:27:52 +0000988ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700989M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
990M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000991S: Maintained
992
Marek Vasut5d783a22009-07-16 13:26:48 +0200993ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700994M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200995L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100996W: http://hackndev.com
997S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700998F: arch/arm/mach-pxa/include/mach/palmtx.h
999F: arch/arm/mach-pxa/palmtx.c
1000F: arch/arm/mach-pxa/include/mach/palmt5.h
1001F: arch/arm/mach-pxa/palmt5.c
1002F: arch/arm/mach-pxa/include/mach/palmld.h
1003F: arch/arm/mach-pxa/palmld.c
1004F: arch/arm/mach-pxa/include/mach/palmte2.h
1005F: arch/arm/mach-pxa/palmte2.c
1006F: arch/arm/mach-pxa/include/mach/palmtc.h
1007F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001008
Joe Perchesb57fe922009-12-14 18:00:52 -08001009ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001010M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001011L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001012W: http://hackndev.com
1013S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001014F: arch/arm/mach-pxa/include/mach/palmtreo.h
1015F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001016
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001017ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001018M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001019L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001020W: http://hackndev.com
1021S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001022F: arch/arm/mach-pxa/include/mach/palmz72.h
1023F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001026M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1028S: Maintained
1029
1030ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001031M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001032L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033W: http://www.arm.linux.org.uk/
1034S: Maintained
1035
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001036ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001037M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001038L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001039S: Maintained
1040
Russell Kingd4275352009-04-16 14:05:27 +01001041ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001042M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001043L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001044W: http://www.arm.linux.org.uk/
1045S: Maintained
1046F: arch/arm/common/time-acorn.c
1047F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1048F: arch/arm/include/asm/hardware/ioc.h
1049F: arch/arm/include/asm/hardware/iomd.h
1050F: arch/arm/include/asm/hardware/memc.h
1051F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001052F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001053F: drivers/net/ethernet/i825xx/ether1*
1054F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001055F: drivers/scsi/arm/
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001058M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059W: http://www.shark-linux.de/shark.html
1060S: Maintained
1061
Ben Dooksb21477f2009-06-13 10:46:34 +01001062ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001063M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001064M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001065L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001066L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001067W: http://www.fluff.org/ben/linux/
1068S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001069F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001070F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001071F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001072F: arch/arm/mach-s3c24*/
1073F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001074F: drivers/*/*s3c2410*
1075F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001076F: drivers/spi/spi-s3c*
1077F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001079ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001080M: Kukjin Kim <kgene.kim@samsung.com>
1081L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1082L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1083S: Maintained
1084F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001085F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001086
Kyungmin Park10ffa962011-03-04 17:36:26 -08001087ARM/SAMSUNG MOBILE MACHINE SUPPORT
1088M: Kyungmin Park <kyungmin.park@samsung.com>
1089L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090S: Maintained
1091F: arch/arm/mach-s5pv210/mach-aquila.c
1092F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001093F: arch/arm/mach-exynos/mach-universal_c210.c
1094F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001095
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001096ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1097M: Kyungmin Park <kyungmin.park@samsung.com>
1098M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1099L: linux-arm-kernel@lists.infradead.org
1100L: linux-media@vger.kernel.org
1101S: Maintained
1102F: arch/arm/plat-s5p/dev-fimc*
1103F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001104F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001105
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001106ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1107M: Kyungmin Park <kyungmin.park@samsung.com>
1108M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001109M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001110L: linux-arm-kernel@lists.infradead.org
1111L: linux-media@vger.kernel.org
1112S: Maintained
1113F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001114F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001115
1116ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1117M: Kyungmin Park <kyungmin.park@samsung.com>
1118M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1119L: linux-arm-kernel@lists.infradead.org
1120L: linux-media@vger.kernel.org
1121S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001122F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001123
Paul Mundtd48d38e2010-02-08 12:50:24 +09001124ARM/SHMOBILE ARM ARCHITECTURE
1125M: Paul Mundt <lethal@linux-sh.org>
1126M: Magnus Damm <magnus.damm@gmail.com>
1127L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001128W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001129Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001130T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001131S: Supported
1132F: arch/arm/mach-shmobile/
1133F: drivers/sh/
1134
Dinh Nguyen66314222012-07-18 16:07:18 -06001135ARM/SOCFPGA ARCHITECTURE
1136M: Dinh Nguyen <dinguyen@altera.com>
1137S: Maintained
1138F: arch/arm/mach-socfpga/
1139
1140ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1141M: Dinh Nguyen <dinguyen@altera.com>
1142S: Maintained
1143F: drivers/clk/socfpga/
1144
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001145ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001146M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001147L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001148S: Maintained
1149
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001150ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001151M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001152L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1153S: Maintained
1154
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001155ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001156M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001157L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001158S: Maintained
1159
wanzongshun98ad6e32009-02-13 06:04:32 +01001160ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001161M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001162L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001163W: http://www.mcuos.com
1164S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001165F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001166F: drivers/input/keyboard/w90p910_keypad.c
1167F: drivers/input/touchscreen/w90p910_ts.c
1168F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001169F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001170F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001171F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001172F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001173F: drivers/usb/host/ehci-w90x900.c
1174F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001175
Linus Walleij54274d72010-04-04 10:58:03 +01001176ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001177M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001178L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179S: Supported
1180F: arch/arm/mach-u300/
1181F: drivers/i2c/busses/i2c-stu300.c
1182F: drivers/rtc/rtc-coh901331.c
1183F: drivers/watchdog/coh901327_wdt.c
1184F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001185F: drivers/mfd/ab3100*
1186F: drivers/rtc/rtc-ab3100.c
1187F: drivers/rtc/rtc-coh901331.c
1188T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001189
Linus Walleij87572882010-12-22 09:18:29 +01001190ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001191M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001192M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001193L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1194S: Maintained
1195F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001196F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001197F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001198F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001199F: drivers/mfd/abx500*
1200F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001201F: drivers/mfd/dbx500*
1202F: drivers/mfd/db8500*
1203F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001204F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001205F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001206T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001207
Russell Kingd4275352009-04-16 14:05:27 +01001208ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001209M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001210L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001211W: http://www.arm.linux.org.uk/
1212S: Maintained
1213F: arch/arm/vfp/
1214
Marek Vasute66b6d82010-03-26 06:51:32 +01001215ARM/VOIPAC PXA270 SUPPORT
1216M: Marek Vasut <marek.vasut@gmail.com>
1217L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1218S: Maintained
1219F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001220F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001221
Tony Prisk04529fe2012-07-24 04:19:37 +12001222ARM/VT8500 ARM ARCHITECTURE
1223M: Tony Prisk <linux@prisktech.co.nz>
1224L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1225S: Maintained
1226F: arch/arm/mach-vt8500/
1227F: drivers/video/vt8500lcdfb.*
1228F: drivers/video/wm8505fb*
1229F: drivers/video/wmt_ge_rops.*
1230F: drivers/tty/serial/vt8500_serial.c
1231F: drivers/rtc/rtc-vt8500-c
1232
Marek Vasute66b6d82010-03-26 06:51:32 +01001233ARM/ZIPIT Z2 SUPPORT
1234M: Marek Vasut <marek.vasut@gmail.com>
1235L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1236S: Maintained
1237F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001238F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001239
Catalin Marinas38074222012-03-05 11:49:34 +00001240ARM64 PORT (AARCH64 ARCHITECTURE)
1241M: Catalin Marinas <catalin.marinas@arm.com>
1242L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1243S: Maintained
1244F: arch/arm64/
1245
George Josephd58de032010-03-05 22:17:25 +01001246ASC7621 HARDWARE MONITOR DRIVER
1247M: George Joseph <george.joseph@fairview5.com>
1248L: lm-sensors@lm-sensors.org
1249S: Maintained
1250F: Documentation/hwmon/asc7621
1251F: drivers/hwmon/asc7621.c
1252
Corentin Charyb229ece2011-02-26 10:20:40 +01001253ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001254M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05001256L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001257W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001259F: drivers/platform/x86/asus*.c
1260F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001262ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001263M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001264L: lm-sensors@lm-sensors.org
1265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001266F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001267
Andrew Morton953a6472008-11-06 12:53:28 -08001268ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001269M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001270W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001272F: Documentation/crypto/async-tx-api.txt
1273F: crypto/async_tx/
1274F: drivers/dma/
1275F: include/linux/dmaengine.h
1276F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001277
Wolfram Sanga1867d32009-09-18 22:45:51 +02001278AT24 EEPROM DRIVER
1279M: Wolfram Sang <w.sang@pengutronix.de>
1280L: linux-i2c@vger.kernel.org
1281S: Maintained
1282F: drivers/misc/eeprom/at24.c
1283F: include/linux/i2c/at24.h
1284
Randy Dunlape7839f22008-10-12 16:11:45 -07001285ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001286M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001287W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001289F: Documentation/aoe/
1290F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Joe Perches9a10a872010-12-01 09:37:55 -08001292ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001293M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001294L: linux-wireless@vger.kernel.org
1295S: Supported
1296F: drivers/net/wireless/ath/*
1297
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001298ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001299M: Jiri Slaby <jirislaby@gmail.com>
1300M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001301M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001302L: linux-wireless@vger.kernel.org
1303L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001304W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001305S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001306F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001307
Kalle Valo12e62d62011-09-13 10:21:25 +03001308ATHEROS ATH6KL WIRELESS DRIVER
1309M: Kalle Valo <kvalo@qca.qualcomm.com>
1310L: linux-wireless@vger.kernel.org
1311W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1312T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1313S: Supported
1314F: drivers/net/wireless/ath/ath6kl/
1315
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001316ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001317M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1318M: Jouni Malinen <jouni@qca.qualcomm.com>
1319M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1320M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001321L: linux-wireless@vger.kernel.org
1322L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001323W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001324S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001325F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001326
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001327CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1328M: Christian Lamparter <chunkeey@googlemail.com>
1329L: linux-wireless@vger.kernel.org
1330W: http://wireless.kernel.org/en/users/Drivers/carl9170
1331S: Maintained
1332F: drivers/net/wireless/ath/carl9170/
1333
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001334ATK0110 HWMON DRIVER
1335M: Luca Tettamanti <kronos.it@gmail.com>
1336L: lm-sensors@lm-sensors.org
1337S: Maintained
1338F: drivers/hwmon/asus_atk0110.c
1339
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001340ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001341M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001343F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001344
Chris Snook7ae115b2008-09-09 03:26:57 -04001345ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001346M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001347M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001348L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001349W: http://sourceforge.net/projects/atl1
1350W: http://atl1.sourceforge.net
1351S: Maintained
Jeff Kirsher2b133ad62011-05-20 06:55:16 -07001352F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001355M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001356L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001357L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358W: http://linux-atm.sourceforge.net
1359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001360F: drivers/atm/
1361F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Pierre Ossman272f1332007-05-14 21:25:26 +02001363ATMEL AT91 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001364M: Ludovic Desroches <ludovic.desroches@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001365L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001366W: http://www.atmel.com/products/AT91/
1367W: http://www.at91.com/
1368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001369F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001370
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001371ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001372M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001373S: Maintained
1374F: drivers/mmc/host/atmel-mci.c
1375F: drivers/mmc/host/atmel-mci-regs.h
1376
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001377ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001378M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001379S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001380F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001381
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001382ATMEL DMA DRIVER
1383M: Nicolas Ferre <nicolas.ferre@atmel.com>
1384L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1385S: Supported
1386F: drivers/dma/at_hdmac.c
1387F: drivers/dma/at_hdmac_regs.h
1388F: arch/arm/mach-at91/include/mach/at_hdmac.h
1389
Josh Wu15515542012-03-23 17:56:29 +08001390ATMEL ISI DRIVER
1391M: Josh Wu <josh.wu@atmel.com>
1392L: linux-media@vger.kernel.org
1393S: Supported
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001394F: drivers/media/platform/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001395F: include/media/atmel-isi.h
1396
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001397ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001398M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001399L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001401F: drivers/video/atmel_lcdfb.c
1402F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001403
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001404ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001405M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001406S: Supported
Jeff Kirsher9f2f381f2011-06-18 01:52:36 -07001407F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001408
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001409ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001410M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001411S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001412F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001413
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001414ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1415M: Nicolas Ferre <nicolas.ferre@atmel.com>
1416L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1417S: Supported
1418F: drivers/misc/atmel_tclib.c
1419F: drivers/clocksource/tcb_clksrc.c
1420
Josh Wuff2675d2012-03-23 17:56:55 +08001421ATMEL TSADCC DRIVER
1422M: Josh Wu <josh.wu@atmel.com>
1423L: linux-input@vger.kernel.org
1424S: Supported
1425F: drivers/input/touchscreen/atmel_tsadcc.c
1426
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001427ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001428M: Nicolas Ferre <nicolas.ferre@atmel.com>
1429L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001430S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001431F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001434M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001435L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436W: http://www.thekelleys.org.uk/atmel
1437W: http://atmelwlandriver.sourceforge.net/
1438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001439F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Chris Wrighta92b7b82005-07-07 18:12:23 -07001441AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001442M: Al Viro <viro@zeniv.linux.org.uk>
1443M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001444L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001445W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001446T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001448F: include/linux/audit.h
1449F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001450
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001451AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001452M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001453W: http://miguelojeda.es/auxdisplay.htm
1454W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001456F: drivers/auxdisplay/
1457F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001458
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001459AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001460M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1461M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001462W: http://www.atmel.com/products/AVR32/
1463W: http://avr32linux.org/
1464W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001466F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001467
1468AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001469M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1470M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001472F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001475M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001477W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001479F: include/linux/ax25.h
1480F: include/net/ax25.h
1481F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001483B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001484M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001485L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001486L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001487W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001489F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001490
1491B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001492M: Larry Finger <Larry.Finger@lwfinger.net>
1493M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001494L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001495L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001496W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001498F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001499
Richard Purdie300abeb2007-02-07 22:21:07 +00001500BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001501M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001503F: drivers/video/backlight/
1504F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001505
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001506BATMAN ADVANCED
1507M: Marek Lindner <lindner_marek@yahoo.de>
1508M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001509M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001510L: b.a.t.m.a.n@lists.open-mesh.org
1511W: http://www.open-mesh.org/
1512S: Maintained
1513F: net/batman-adv/
1514
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001515BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001516M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001517L: linux-hams@vger.kernel.org
1518W: http://www.baycom.org/~tom/ham/ham.html
1519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001520F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001521
1522BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001523S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001524F: Documentation/filesystems/befs.txt
1525F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001526
1527BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001528M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001530F: Documentation/filesystems/bfs.txt
1531F: fs/bfs/
1532F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001533
Bryan Wu1394f032007-05-06 14:50:22 -07001534BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001535M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001536L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001537W: http://blackfin.uclinux.org
1538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001539F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001540
Bryan Wue190d6b2007-07-17 14:43:44 +08001541BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001542L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001543W: http://blackfin.uclinux.org
1544S: Supported
Jeff Kirsher7b35f0332011-06-18 00:01:26 -07001545F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001546
Mike Frysinger566da5b2007-06-11 15:31:30 +08001547BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001548M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001549L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001550W: http://blackfin.uclinux.org
1551S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001552F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001553
Mike Frysinger936ed492010-03-10 15:20:38 -08001554BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001555M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001556L: uclinux-dist-devel@blackfin.uclinux.org
1557W: http://blackfin.uclinux.org
1558S: Supported
1559F: drivers/mmc/host/bfin_sdh.c
1560
Bryan Wu1394f032007-05-06 14:50:22 -07001561BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001562M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001563L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001564W: http://blackfin.uclinux.org
1565S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001566F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001567
Bryan Wu1e6d3202007-07-15 02:50:02 +08001568BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001569M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001570L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001571W: http://blackfin.uclinux.org
1572S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001573F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001574
Bryan Wud24ecfc2007-05-01 23:26:32 +02001575BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001576M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001577L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001578W: http://blackfin.uclinux.org/
1579S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001580F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001581
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001582BLINKM RGB LED DRIVER
1583M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1584S: Maintained
1585F: drivers/leds/leds-blinkm.c
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001588M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001589T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001591F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Joern Engel2b54aae2008-02-06 01:38:02 -08001593BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001594M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001595L: linux-mtd@lists.infradead.org
1596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001597F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001598
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001599BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001600M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001601M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001602M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001603L: linux-bluetooth@vger.kernel.org
1604W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001605T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1606T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001608F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001611M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001612M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001613M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001614L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001615W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001616T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1617T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001619F: net/bluetooth/
1620F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001623M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001624M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001625L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001626W: http://sourceforge.net/projects/bonding/
1627S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001628F: drivers/net/bonding/
1629F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Gary Zambrano39105892006-06-22 17:26:20 -07001631BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001632M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001633L: netdev@vger.kernel.org
1634S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001635F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001636
Michael Chan948c51e2006-06-04 02:51:39 -07001637BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001638M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001639L: netdev@vger.kernel.org
1640S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001641F: drivers/net/ethernet/broadcom/bnx2.*
1642F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001643
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001644BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001645M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001646L: netdev@vger.kernel.org
1647S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001648F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001649
Stephen Warrenf680f252012-09-15 00:18:54 -06001650BROADCOM BCM2835 ARM ARCHICTURE
1651M: Stephen Warren <swarren@wwwdotorg.org>
1652L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1653T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1654S: Maintained
1655F: arch/arm/mach-bcm2835/
1656F: arch/arm/boot/dts/bcm2835*
1657F: arch/arm/configs/bcm2835_defconfig
1658F: drivers/*/*bcm2835*
1659
Michael Chan948c51e2006-06-04 02:51:39 -07001660BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001661M: Matt Carlson <mcarlson@broadcom.com>
1662M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001663L: netdev@vger.kernel.org
1664S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001665F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001666
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001667BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1668M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001669M: Roland Vossen <rvossen@broadcom.com>
1670M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001671M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1672M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001673L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001674L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001675S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001676F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001677
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001678BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1679M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1680L: linux-scsi@vger.kernel.org
1681S: Supported
1682F: drivers/scsi/bnx2fc/
1683
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001684BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1685M: Rafał Miłecki <zajec5@gmail.com>
1686L: linux-wireless@vger.kernel.org
1687S: Maintained
1688F: drivers/bcma/
1689F: include/linux/bcma/
1690
Jing Huang7725ccf2009-09-23 17:46:15 -07001691BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001692M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001693L: linux-scsi@vger.kernel.org
1694S: Supported
1695F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001696
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001697BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1698M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001699L: netdev@vger.kernel.org
1700S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001701F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001702
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001703BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001704M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001705L: linux-scsi@vger.kernel.org
1706S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001707F: block/bsg.c
1708F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001709
Clemens Ladischaf399172011-01-10 16:32:54 +01001710BT87X AUDIO DRIVER
1711M: Clemens Ladisch <clemens@ladisch.de>
1712L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1713T: git git://git.alsa-project.org/alsa-kernel.git
1714S: Maintained
1715F: Documentation/sound/alsa/Bt87x.txt
1716F: sound/pci/bt87x.c
1717
Michael Bueschff1d5c22008-07-25 01:46:10 -07001718BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001719M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001720W: http://bu3sch.de/btgpio.php
1721S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001722F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001723
Joe Percheseb1eb042009-01-21 10:49:16 -05001724BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001725M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001726L: linux-btrfs@vger.kernel.org
1727W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001728Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001729T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001731F: Documentation/filesystems/btrfs.txt
1732F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001735M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001736L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001737W: http://linuxtv.org
Joe Perches08deed12012-03-23 15:01:57 -07001738T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001740F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001741F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Clemens Ladischaf399172011-01-10 16:32:54 +01001743C-MEDIA CMI8788 DRIVER
1744M: Clemens Ladisch <clemens@ladisch.de>
1745L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1746T: git git://git.alsa-project.org/alsa-kernel.git
1747S: Maintained
1748F: sound/pci/oxygen/
1749
Mark Salter21413552011-10-04 11:21:42 -04001750C6X ARCHITECTURE
1751M: Mark Salter <msalter@redhat.com>
1752M: Aurelien Jacquiot <a-jacquiot@ti.com>
1753L: linux-c6x-dev@linux-c6x.org
1754W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1755S: Maintained
1756F: arch/c6x/
1757
David Howellsa5432f5a2009-04-20 15:46:45 +01001758CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001759M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01001760L: linux-cachefs@redhat.com
1761S: Supported
1762F: Documentation/filesystems/caching/cachefiles.txt
1763F: fs/cachefiles/
1764
Jonathan Corbet77d51402007-03-22 19:44:17 -03001765CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001766M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001767L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07001768T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001770F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001771F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001772
Joe Perches201b6ba2010-09-07 20:33:24 +00001773CAIF NETWORK LAYER
1774M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1775L: netdev@vger.kernel.org
1776S: Supported
1777F: Documentation/networking/caif/
1778F: drivers/net/caif/
1779F: include/linux/caif/
1780F: include/net/caif/
1781F: net/caif/
1782
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001783CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001784M: Muli Ben-Yehuda <muli@il.ibm.com>
1785M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001786L: discuss@x86-64.org
1787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001788F: arch/x86/kernel/pci-calgary_64.c
1789F: arch/x86/kernel/tce_64.c
1790F: arch/x86/include/asm/calgary.h
1791F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001792
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001793CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001794M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001795L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001796W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001797T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001798S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001799F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001800F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001801F: include/linux/can/core.h
1802F: include/linux/can/bcm.h
1803F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001804F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001805
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001806CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001807M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001808M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001809L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001810W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001811T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001812S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001813F: drivers/net/can/
1814F: include/linux/can/dev.h
1815F: include/linux/can/error.h
1816F: include/linux/can/netlink.h
1817F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001818
James Morris95d16c72012-03-16 12:05:48 +11001819CAPABILITIES
1820M: Serge Hallyn <serge.hallyn@canonical.com>
1821L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001822S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001823F: include/linux/capability.h
1824F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001825F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001826F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001827
Arnd Bergmannb8154542008-05-16 11:10:59 +02001828CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001829M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001830L: linuxppc-dev@lists.ozlabs.org
1831L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001832W: http://www.ibm.com/developerworks/power/cell/
1833S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001834F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001835F: arch/powerpc/include/asm/spu*.h
1836F: arch/powerpc/oprofile/*cell*
1837F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001838
Sage Weil9030aaf2009-10-06 11:31:15 -07001839CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001840M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001841L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001842W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001843T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001844S: Supported
1845F: Documentation/filesystems/ceph.txt
1846F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001847F: net/ceph
1848F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001849F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001850
David Vrabel18332a82008-09-17 16:34:44 +01001851CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001852L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001853S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001854F: Documentation/usb/WUSB-Design-overview.txt
1855F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001856F: drivers/usb/host/hwa-hc.c
1857F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001858F: drivers/usb/wusbcore/
1859F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001860
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001861CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001862M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001863W: http://miguelojeda.es/auxdisplay.htm
1864W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001866F: drivers/auxdisplay/cfag12864b.c
1867F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001868
1869CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001870M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001871W: http://miguelojeda.es/auxdisplay.htm
1872W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001874F: drivers/auxdisplay/cfag12864bfb.c
1875F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001876
Johannes Berg704232c2007-04-23 12:20:05 -07001877CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001878M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001879L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001880W: http://wireless.kernel.org/
1881T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1882T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001884F: include/linux/nl80211.h
1885F: include/net/cfg80211.h
1886F: net/wireless/*
1887X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001888
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001889CHAR and MISC DRIVERS
1890M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001891M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001892T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001893S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001894F: drivers/char/*
1895F: drivers/misc/*
1896
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001897CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001898M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001899S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001900F: scripts/checkpatch.pl
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001901
Harry Weif8407f262011-02-25 14:44:15 -08001902CHINESE DOCUMENTATION
1903M: Harry Wei <harryxiyou@gmail.com>
1904L: xiyoulinuxkernelgroup@googlegroups.com
1905L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1906S: Maintained
1907F: Documentation/zh_CN/
1908
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001909CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1910M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1911L: linux-usb@vger.kernel.org
1912S: Maintained
1913F: drivers/usb/chipidea/
1914
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001915CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001916M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001917M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001918M: Neel Patel <neepatel@cisco.com>
1919M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001920S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001921F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001922
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001923CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001924M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001925L: netdev@vger.kernel.org
1926S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001927F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001928
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001929CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001930M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001931L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001933F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001934
Timur Tabid9e9d822008-04-24 08:45:26 +10001935CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001936M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001937L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001938S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001939F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001940
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04001941CLEANCACHE API
1942M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
1943L: linux-kernel@vger.kernel.org
1944S: Maintained
1945F: mm/cleancache.c
1946F: include/linux/cleancache.h
1947
Russell Kingd4275352009-04-16 14:05:27 +01001948CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001949M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07001950S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01001951F: include/linux/clk.h
1952
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001953CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001954M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07001955M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
1956M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001957L: linux-scsi@vger.kernel.org
1958S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001959F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001960
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001961CMPC ACPI DRIVER
1962M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1963M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05001964L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001965S: Supported
1966F: drivers/platform/x86/classmate-laptop.c
1967
Nicolas Palix74425ee2010-06-06 17:15:01 +02001968COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02001969M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001970M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02001971M: Nicolas Palix <nicolas.palix@imag.fr>
1972L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02001973W: http://coccinelle.lip6.fr/
1974S: Supported
1975F: scripts/coccinelle/
1976F: scripts/coccicheck
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001979M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980M: coda@cs.cmu.edu
1981L: codalist@coda.cs.cmu.edu
1982W: http://www.coda.cs.cmu.edu/
1983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001984F: Documentation/filesystems/coda.txt
1985F: fs/coda/
1986F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
Mike Turquette7704add2012-05-02 18:37:45 -07001988COMMON CLK FRAMEWORK
1989M: Mike Turquette <mturquette@ti.com>
1990M: Mike Turquette <mturquette@linaro.org>
1991L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
1992T: git git://git.linaro.org/people/mturquette/linux.git
1993S: Maintained
1994F: drivers/clk/clk.c
1995F: drivers/clk/clk-*
1996F: include/linux/clk-pr*
1997
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001998COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001999M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002000L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002001L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002002W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002003Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002004T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002005S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002006F: Documentation/filesystems/cifs.txt
2007F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002010M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002011L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002013F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
2015COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002016M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002017L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002019F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002022M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002023L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002025F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002027COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002028M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002029L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002031F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002032
Simon Arlott949be0f2007-03-06 02:47:46 -08002033CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002034M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002035L: accessrunner-general@lists.sourceforge.net
2036W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002038F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002039
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002040CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002041M: Joel Becker <jlbec@evilplan.org>
2042T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002043S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002044F: fs/configfs/
2045F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002046
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002047CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002048M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002049L: netdev@vger.kernel.org
2050S: Maintained
2051F: drivers/connector/
2052
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002053CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002054M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002055M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002056L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002057L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002058T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002060F: include/linux/cgroup*
2061F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002062F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002063
Rudolf Marekbebe4672007-05-08 17:22:02 +02002064CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002065M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002066L: lm-sensors@lm-sensors.org
2067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002068F: Documentation/hwmon/coretemp
2069F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002072M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073W: http://www.fi.muni.cz/~kas/cosa/
2074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002075F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Florian Fainelli4371ee32009-06-01 02:43:17 -07002077CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002078M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002079L: netdev@vger.kernel.org
2080S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002081F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002082
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002084M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002085L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002086L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002088F: drivers/cpufreq/
2089F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002092M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002094F: arch/x86/kernel/cpuid.c
2095F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002097CPU POWER MONITORING SUBSYSTEM
2098M: Dominik Brodowski <linux@dominikbrodowski.net>
2099M: Thomas Renninger <trenn@suse.de>
2100S: Maintained
2101F: tools/power/cpupower
2102
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002103CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002104M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002105W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002106W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002107S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002108F: Documentation/cgroups/cpusets.txt
2109F: include/linux/cpuset.h
2110F: kernel/cpuset.c
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002113W: http://sourceforge.net/projects/cramfs/
2114S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002115F: Documentation/filesystems/cramfs.txt
2116F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002119M: Mikael Starvik <starvik@axis.com>
2120M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002121L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122W: http://developer.axis.com
2123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002124F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002125F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002128M: Herbert Xu <herbert@gondor.apana.org.au>
2129M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002131T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002133F: Documentation/crypto/
2134F: arch/*/crypto/
2135F: crypto/
2136F: drivers/crypto/
2137F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Neil Horman5b07bd52009-02-05 16:03:04 +11002139CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002140M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002141L: linux-crypto@vger.kernel.org
2142S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002143F: crypto/ansi_cprng.c
2144F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002145
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002146CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002147M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002149F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002150
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002151CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002152M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002153L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002154L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07002155T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002156W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002157W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002159F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002160F: drivers/media/pci/cx18/
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002161
Antti Palosaari91952bc2012-10-01 12:28:46 -03002162CXD2820R MEDIA DRIVER
2163M: Antti Palosaari <crope@iki.fi>
2164L: linux-media@vger.kernel.org
2165W: http://linuxtv.org/
2166W: http://palosaari.fi/linux/
2167Q: http://patchwork.linuxtv.org/project/linux-media/list/
2168T: git git://linuxtv.org/anttip/media_tree.git
2169S: Maintained
2170F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002171
Steve Wisee5ec3782008-05-20 14:06:33 -07002172CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002173M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002174L: netdev@vger.kernel.org
2175W: http://www.chelsio.com
2176S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002177F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002178
2179CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002180M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002181L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002182W: http://www.openfabrics.org
2183S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002184F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002185
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002186CXGB4 ETHERNET DRIVER (CXGB4)
2187M: Dimitris Michailidis <dm@chelsio.com>
2188L: netdev@vger.kernel.org
2189W: http://www.chelsio.com
2190S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002191F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002192
2193CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2194M: Steve Wise <swise@chelsio.com>
2195L: linux-rdma@vger.kernel.org
2196W: http://www.openfabrics.org
2197S: Supported
2198F: drivers/infiniband/hw/cxgb4/
2199
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002200CXGB4VF ETHERNET DRIVER (CXGB4VF)
2201M: Casey Leedom <leedom@chelsio.com>
2202L: netdev@vger.kernel.org
2203W: http://www.chelsio.com
2204S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002205F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002206
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002207STMMAC ETHERNET DRIVER
2208M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2209L: netdev@vger.kernel.org
2210W: http://www.stlinux.com
2211S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002212F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002215M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002216L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217W: http://www.arm.linux.org.uk/
2218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002219F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002222M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002223W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002225F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
2227CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002229S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002230F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002231F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
2233CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002235S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002236F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002238CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002239M: Javier Martinez Canillas <javier@dowhile0.org>
2240L: linux-input@vger.kernel.org
2241S: Maintained
2242F: drivers/input/touchscreen/cyttsp*
2243F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002244
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002246M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247W: http://yaina.de/jreuter/
2248W: http://www.qsl.net/dl1bke/
2249L: linux-hams@vger.kernel.org
2250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002251F: net/ax25/af_ax25.c
2252F: net/ax25/ax25_dev.c
2253F: net/ax25/ax25_ds_*
2254F: net/ax25/ax25_in.c
2255F: net/ax25/ax25_out.c
2256F: net/ax25/ax25_timer.c
2257F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002259DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002260L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002261S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002262F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002263F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002264
2265DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002266M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002267W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002268M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002270F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002273M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002274M: Ali Akcaagac <aliakc@web.de>
2275M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002277L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278L: http://lists.twibble.org/mailman/listinfo/dc395x/
2279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002280F: Documentation/scsi/dc395x.txt
2281F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002283DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002284M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002285L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002286W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002288F: include/linux/dccp.h
2289F: include/linux/tfrc.h
2290F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293W: http://linux-decnet.sourceforge.net
2294L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002295S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002296F: Documentation/networking/decnet.txt
2297F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002300M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002302F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002304DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002305M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05002306L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002308F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002311M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312W: http://www.debian.org/~dz/i8k/
2313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002314F: drivers/char/i8k.c
2315F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Doug Warzecha90563ec2005-09-06 15:17:15 -07002317DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002318M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002320F: Documentation/dcdbas.txt
2321F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002322
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002323DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002324M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002325S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002326F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002327
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002328DESIGNWARE USB3 DRD IP DRIVER
2329M: Felipe Balbi <balbi@ti.com>
2330L: linux-usb@vger.kernel.org
2331L: linux-omap@vger.kernel.org
2332T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2333S: Maintained
2334F: drivers/usb/dwc3/
2335
Kyungmin Park89d07762012-01-10 15:09:09 -08002336DEVICE FREQUENCY (DEVFREQ)
2337M: MyungJoo Ham <myungjoo.ham@samsung.com>
2338M: Kyungmin Park <kyungmin.park@samsung.com>
2339L: linux-kernel@vger.kernel.org
2340S: Maintained
2341F: drivers/devfreq/
2342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002344M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346S: Maintained
2347
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002348DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002349M: Alasdair Kergon <agk@redhat.com>
2350M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002351L: dm-devel@redhat.com
2352W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002353Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002354T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002356F: Documentation/device-mapper/
2357F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002358F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002359F: include/linux/device-mapper.h
2360F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002361
Guenter Roeck335d7c52011-01-26 11:45:49 -08002362DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002363M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002364L: linux-i2c@vger.kernel.org
2365S: Maintained
2366F: drivers/i2c/busses/i2c-diolan-u2c.c
2367
Randy Dunlape7839f22008-10-12 16:11:45 -07002368DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002369M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002371F: Documentation/filesystems/dnotify.txt
2372F: fs/notify/dnotify/
2373F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
2375DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002376M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2378W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2379W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2380S: Maintained
2381
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002382DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002383M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002385F: Documentation/filesystems/quota.txt
2386F: fs/quota/
2387F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Bernie Thompson702686a2012-03-01 13:52:13 -08002389DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2390M: Bernie Thompson <bernie@plugable.com>
2391L: linux-fbdev@vger.kernel.org
2392S: Maintained
2393W: http://plugable.com/category/projects/udlfb/
2394F: drivers/video/udlfb.c
2395F: include/video/udlfb.h
2396F: Documentation/fb/udlfb.txt
2397
Randy Dunlape7839f22008-10-12 16:11:45 -07002398DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002399M: Christine Caulfield <ccaulfie@redhat.com>
2400M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002401L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002402W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002403T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002404S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002405F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002406
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302407DMA BUFFER SHARING FRAMEWORK
2408M: Sumit Semwal <sumit.semwal@linaro.org>
2409S: Maintained
2410L: linux-media@vger.kernel.org
2411L: dri-devel@lists.freedesktop.org
2412L: linaro-mm-sig@lists.linaro.org
2413F: drivers/base/dma-buf*
2414F: include/linux/dma-buf*
2415F: Documentation/dma-buf-sharing.txt
2416T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2417
Dan Williamsb3e5f262007-08-07 10:26:35 -07002418DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002419M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002420M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002421S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002422F: drivers/dma/
2423F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302424T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2425T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002426
Juerg Haefligerb8250372007-06-09 10:11:16 -04002427DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002428M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002429L: lm-sensors@lm-sensors.org
2430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002431F: Documentation/hwmon/dme1737
2432F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002433
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002434DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002435M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002436L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002437S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002438F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002439
Joe Perches7d2c86b2009-04-07 20:59:01 -07002440DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002441M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002442L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002443T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002445F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002448M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449L: blinux-list@redhat.com
2450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002451F: drivers/char/dtlk.c
2452F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002454DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002455M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002456L: linux-scsi@vger.kernel.org
2457W: http://www.adaptec.com/
2458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002459F: drivers/scsi/dpt*
2460F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002461
Philipp Reisnerb411b362009-09-25 16:07:19 -07002462DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002463P: Philipp Reisner
2464P: Lars Ellenberg
2465M: drbd-dev@lists.linbit.com
2466L: drbd-user@lists.linbit.com
2467W: http://www.drbd.org
2468T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2469T: git git://git.drbd.org/drbd-8.3.git
2470S: Supported
2471F: drivers/block/drbd/
2472F: lib/lru_cache.c
2473F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002474
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002475DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002476M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002477T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002479F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002480F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002481F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002482F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002483F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002484F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002485F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
2487DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002488M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002489L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002490T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002492F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002493F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Chris Wilson8daf7472010-09-28 14:07:26 +01002495INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002496M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002497L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002498L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002499T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002500S: Supported
2501F: drivers/gpu/drm/i915
2502F: include/drm/i915*
2503
Kyungmin Park398a6d42011-11-02 11:33:16 +09002504DRM DRIVERS FOR EXYNOS
2505M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002506M: Joonyoung Shim <jy0922.shim@samsung.com>
2507M: Seung-Woo Kim <sw0312.kim@samsung.com>
2508M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002509L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002510T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002511S: Supported
2512F: drivers/gpu/drm/exynos
2513F: include/drm/exynos*
2514
Thierry Redingbd3b49f2012-11-28 20:45:28 +01002515DRM DRIVERS FOR NVIDIA TEGRA
2516M: Thierry Reding <thierry.reding@avionic-design.de>
2517L: dri-devel@lists.freedesktop.org
2518L: linux-tegra@vger.kernel.org
2519T: git git://gitorious.org/thierryreding/linux.git
2520S: Maintained
2521F: drivers/gpu/drm/tegra/
2522F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2523
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002525M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002526L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002528F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
Antti Palosaari91952bc2012-10-01 12:28:46 -03002530DVB_USB_AF9015 MEDIA DRIVER
2531M: Antti Palosaari <crope@iki.fi>
2532L: linux-media@vger.kernel.org
2533W: http://linuxtv.org/
2534W: http://palosaari.fi/linux/
2535Q: http://patchwork.linuxtv.org/project/linux-media/list/
2536T: git git://linuxtv.org/anttip/media_tree.git
2537S: Maintained
2538F: drivers/media/usb/dvb-usb-v2/af9015*
2539
2540DVB_USB_AF9035 MEDIA DRIVER
2541M: Antti Palosaari <crope@iki.fi>
2542L: linux-media@vger.kernel.org
2543W: http://linuxtv.org/
2544W: http://palosaari.fi/linux/
2545Q: http://patchwork.linuxtv.org/project/linux-media/list/
2546T: git git://linuxtv.org/anttip/media_tree.git
2547S: Maintained
2548F: drivers/media/usb/dvb-usb-v2/af9035*
2549
2550DVB_USB_ANYSEE MEDIA DRIVER
2551M: Antti Palosaari <crope@iki.fi>
2552L: linux-media@vger.kernel.org
2553W: http://linuxtv.org/
2554W: http://palosaari.fi/linux/
2555Q: http://patchwork.linuxtv.org/project/linux-media/list/
2556T: git git://linuxtv.org/anttip/media_tree.git
2557S: Maintained
2558F: drivers/media/usb/dvb-usb-v2/anysee*
2559
2560DVB_USB_AU6610 MEDIA DRIVER
2561M: Antti Palosaari <crope@iki.fi>
2562L: linux-media@vger.kernel.org
2563W: http://linuxtv.org/
2564W: http://palosaari.fi/linux/
2565Q: http://patchwork.linuxtv.org/project/linux-media/list/
2566T: git git://linuxtv.org/anttip/media_tree.git
2567S: Maintained
2568F: drivers/media/usb/dvb-usb-v2/au6610*
2569
2570DVB_USB_CE6230 MEDIA DRIVER
2571M: Antti Palosaari <crope@iki.fi>
2572L: linux-media@vger.kernel.org
2573W: http://linuxtv.org/
2574W: http://palosaari.fi/linux/
2575Q: http://patchwork.linuxtv.org/project/linux-media/list/
2576T: git git://linuxtv.org/anttip/media_tree.git
2577S: Maintained
2578F: drivers/media/usb/dvb-usb-v2/ce6230*
2579
Michael Krufkyd099dea2012-10-02 00:56:20 -03002580DVB_USB_CXUSB MEDIA DRIVER
2581M: Michael Krufky <mkrufky@linuxtv.org>
2582L: linux-media@vger.kernel.org
2583W: http://linuxtv.org/
2584W: http://github.com/mkrufky
2585Q: http://patchwork.linuxtv.org/project/linux-media/list/
2586T: git git://linuxtv.org/media_tree.git
2587S: Maintained
2588F: drivers/media/usb/dvb-usb-v2/cxusb*
2589
Antti Palosaari91952bc2012-10-01 12:28:46 -03002590DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2591M: Antti Palosaari <crope@iki.fi>
2592L: linux-media@vger.kernel.org
2593W: http://linuxtv.org/
2594W: http://palosaari.fi/linux/
2595Q: http://patchwork.linuxtv.org/project/linux-media/list/
2596T: git git://linuxtv.org/anttip/media_tree.git
2597S: Maintained
2598F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2599
2600DVB_USB_EC168 MEDIA DRIVER
2601M: Antti Palosaari <crope@iki.fi>
2602L: linux-media@vger.kernel.org
2603W: http://linuxtv.org/
2604W: http://palosaari.fi/linux/
2605Q: http://patchwork.linuxtv.org/project/linux-media/list/
2606T: git git://linuxtv.org/anttip/media_tree.git
2607S: Maintained
2608F: drivers/media/usb/dvb-usb-v2/ec168*
2609
Michael Krufky8856f5f2012-10-02 00:55:50 -03002610DVB_USB_MXL111SF MEDIA DRIVER
2611M: Michael Krufky <mkrufky@linuxtv.org>
2612L: linux-media@vger.kernel.org
2613W: http://linuxtv.org/
2614W: http://github.com/mkrufky
2615Q: http://patchwork.linuxtv.org/project/linux-media/list/
2616T: git git://linuxtv.org/mkrufky/mxl111sf.git
2617S: Maintained
2618F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2619
Antti Palosaari91952bc2012-10-01 12:28:46 -03002620DVB_USB_RTL28XXU MEDIA DRIVER
2621M: Antti Palosaari <crope@iki.fi>
2622L: linux-media@vger.kernel.org
2623W: http://linuxtv.org/
2624W: http://palosaari.fi/linux/
2625Q: http://patchwork.linuxtv.org/project/linux-media/list/
2626T: git git://linuxtv.org/anttip/media_tree.git
2627S: Maintained
2628F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2629
2630DVB_USB_V2 MEDIA DRIVER
2631M: Antti Palosaari <crope@iki.fi>
2632L: linux-media@vger.kernel.org
2633W: http://linuxtv.org/
2634W: http://palosaari.fi/linux/
2635Q: http://patchwork.linuxtv.org/project/linux-media/list/
2636T: git git://linuxtv.org/anttip/media_tree.git
2637S: Maintained
2638F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2639F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2640
Jason Baronac0ac382011-08-11 14:36:43 -04002641DYNAMIC DEBUG
2642M: Jason Baron <jbaron@redhat.com>
2643S: Maintained
2644F: lib/dynamic_debug.c
2645F: include/linux/dynamic_debug.h
2646
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002647DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002648M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002649S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002650F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002651
Antti Palosaari91952bc2012-10-01 12:28:46 -03002652E4000 MEDIA DRIVER
2653M: Antti Palosaari <crope@iki.fi>
2654L: linux-media@vger.kernel.org
2655W: http://linuxtv.org/
2656W: http://palosaari.fi/linux/
2657Q: http://patchwork.linuxtv.org/project/linux-media/list/
2658T: git git://linuxtv.org/anttip/media_tree.git
2659S: Maintained
2660F: drivers/media/tuners/e4000*
2661
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002663M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002664L: linux-eata@i-connect.net
2665L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002667F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
2669EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002670M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671L: linux-scsi@vger.kernel.org
2672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002673F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
2675EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002676M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002677L: linux-eata@i-connect.net
2678L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002680F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
2682EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002683M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002684L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685W: http://ebtables.sourceforge.net/
2686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002687F: include/linux/netfilter_bridge/ebt_*.h
2688F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
Antti Palosaari91952bc2012-10-01 12:28:46 -03002690EC100 MEDIA DRIVER
2691M: Antti Palosaari <crope@iki.fi>
2692L: linux-media@vger.kernel.org
2693W: http://linuxtv.org/
2694W: http://palosaari.fi/linux/
2695Q: http://patchwork.linuxtv.org/project/linux-media/list/
2696T: git git://linuxtv.org/anttip/media_tree.git
2697S: Maintained
2698F: drivers/media/dvb-frontends/ec100*
2699
Michael Halcrow237fead2006-10-04 02:16:22 -07002700ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002701M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002702M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002703L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002704W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002705S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002706F: Documentation/filesystems/ecryptfs.txt
2707F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002708
Alan Coxda9bb1d2006-01-18 17:44:13 -08002709EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002710M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002711L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002712W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002713S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002714F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002715F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002716F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002717
Borislav Petkovc476c232009-05-20 20:31:58 +02002718EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002719M: Doug Thompson <dougthompson@xmission.com>
2720M: Borislav Petkov <borislav.petkov@amd.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002721L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002722W: bluesmoke.sourceforge.net
2723S: Supported
2724F: drivers/edac/amd64_edac*
2725
Dave Peterson0e438e32006-03-26 01:38:55 -08002726EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002727M: Mark Gross <mark.gross@intel.com>
2728M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002729L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002730W: bluesmoke.sourceforge.net
2731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002732F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002733
2734EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002735M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002736L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002737W: bluesmoke.sourceforge.net
2738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002739F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002740
Douglas Thompson6bc78402007-07-19 01:50:12 -07002741EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002742M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002743L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002744W: bluesmoke.sourceforge.net
2745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002746F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002747
2748EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002749M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002750L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002751W: bluesmoke.sourceforge.net
2752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002753F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002754
2755EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002756M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002757L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002758W: bluesmoke.sourceforge.net
2759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002760F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002761
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002762EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002763M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002764L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002765W: bluesmoke.sourceforge.net
2766S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002767F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002768
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002769EDAC-I7300
2770M: Mauro Carvalho Chehab <mchehab@redhat.com>
2771L: linux-edac@vger.kernel.org
2772W: bluesmoke.sourceforge.net
2773S: Maintained
2774F: drivers/edac/i7300_edac.c
2775
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002776EDAC-I7CORE
2777M: Mauro Carvalho Chehab <mchehab@redhat.com>
2778L: linux-edac@vger.kernel.org
2779W: bluesmoke.sourceforge.net
2780S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002781F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002782
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002783EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002784M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302785M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002786L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002787W: bluesmoke.sourceforge.net
2788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002789F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002790
2791EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002792M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002793L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002794W: bluesmoke.sourceforge.net
2795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002796F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002797
Dave Peterson0e438e32006-03-26 01:38:55 -08002798EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002799M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002800L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002801W: bluesmoke.sourceforge.net
2802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002803F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002804
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002805EDAC-SBRIDGE
2806M: Mauro Carvalho Chehab <mchehab@redhat.com>
2807L: linux-edac@vger.kernel.org
2808W: bluesmoke.sourceforge.net
2809S: Maintained
2810F: drivers/edac/sb_edac.c
2811
Clemens Ladischaf399172011-01-10 16:32:54 +01002812EDIROL UA-101/UA-1000 DRIVER
2813M: Clemens Ladisch <clemens@ladisch.de>
2814L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2815T: git git://git.alsa-project.org/alsa-kernel.git
2816S: Maintained
2817F: sound/usb/misc/ua101.c
2818
Matt Fleming1f7df952012-10-03 10:04:02 +01002819EXTENSIBLE FIRMWARE INTERFACE (EFI)
2820M: Matt Fleming <matt.fleming@intel.com>
2821L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002822T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002823S: Maintained
2824F: Documentation/x86/efi-stub.txt
2825F: arch/ia64/kernel/efi.c
2826F: arch/x86/boot/compressed/eboot.[ch]
2827F: arch/x86/include/asm/efi.h
2828F: arch/x86/platform/efi/*
2829F: drivers/firmware/efivars.c
2830F: include/linux/efi*.h
2831
Peter Jones85a00d92010-09-22 13:05:04 -07002832EFIFB FRAMEBUFFER DRIVER
2833L: linux-fbdev@vger.kernel.org
2834M: Peter Jones <pjones@redhat.com>
2835S: Maintained
2836F: drivers/video/efifb.c
2837
Josh Triplett0bee8d22006-07-30 03:03:58 -07002838EFS FILESYSTEM
2839W: http://aeschi.ch.eu.org/efs/
2840S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002841F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002842
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002843EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002844M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2845M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002846L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002847S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002848F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002849
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002850EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002851M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002852L: netdev@vger.kernel.org
2853S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002854F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002855
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002856EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002857M: Paul Gortmaker <paul.gortmaker@windriver.com>
2858M: Matt Mackall <mpm@selenic.com>
2859M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002860L: linux-embedded@vger.kernel.org
2861S: Maintained
2862
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002863EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002864M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002865L: linux-scsi@vger.kernel.org
2866W: http://sourceforge.net/projects/lpfcxxxx
2867S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002868F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002869
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002870ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002871M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002872S: Maintained
2873F: drivers/misc/cb710/
2874F: drivers/mmc/host/cb710-mmc.*
2875F: include/linux/cb710.h
2876
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002877ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2878M: Maxim Levitsky <maximlevitsky@gmail.com>
2879S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002880F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002881
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002883M: Christopher Hoover <ch@murgatroid.com>
2884M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002886F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002888EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002889M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002890S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002891T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002892F: drivers/video/s1d13xxxfb.c
2893F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002894
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002896M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002897L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002899F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
2901ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002902M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002903L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002904L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002905W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002907F: include/linux/netfilter_bridge/
2908F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
2910ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002911M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07002913F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
2915EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002916M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002917L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002919F: Documentation/filesystems/ext2.txt
2920F: fs/ext2/
2921F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
2923EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002924M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002925M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002926M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002927L: linux-ext4@vger.kernel.org
2928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002929F: Documentation/filesystems/ext3.txt
2930F: fs/ext3/
2931F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002932
2933EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002934M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002935M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002936L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002937W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002938Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002940F: Documentation/filesystems/ext4.txt
2941F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
Mimi Zoharc5532b02011-08-17 18:52:24 -04002943Extended Verification Module (EVM)
2944M: Mimi Zohar <zohar@us.ibm.com>
2945S: Supported
2946F: security/integrity/evm/
2947
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09002948EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
2949M: MyungJoo Ham <myungjoo.ham@samsung.com>
2950M: Chanwoo Choi <cw00.choi@samsung.com>
2951L: linux-kernel@vger.kernel.org
2952S: Maintained
2953F: drivers/extcon/
2954F: Documentation/extcon/
2955
Jingoo Han0a799512012-02-06 11:30:39 +09002956EXYNOS DP DRIVER
2957M: Jingoo Han <jg1.han@samsung.com>
2958L: linux-fbdev@vger.kernel.org
2959S: Maintained
2960F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07002961F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09002962
Donghwa Lee33ad3912012-03-06 11:44:58 +09002963EXYNOS MIPI DISPLAY DRIVERS
2964M: Inki Dae <inki.dae@samsung.com>
2965M: Donghwa Lee <dh09.lee@samsung.com>
2966M: Kyungmin Park <kyungmin.park@samsung.com>
2967L: linux-fbdev@vger.kernel.org
2968S: Maintained
2969F: drivers/video/exynos/exynos_mipi*
2970F: include/video/exynos_mipi*
2971
Jean Delvaree53004e2006-01-09 23:26:14 +01002972F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002973M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002974L: lm-sensors@lm-sensors.org
2975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002976F: Documentation/hwmon/f71805f
2977F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002978
Michael Büscheea977e2012-04-02 12:14:32 -03002979FC0011 TUNER DRIVER
2980M: Michael Buesch <m@bues.ch>
2981L: linux-media@vger.kernel.org
2982S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03002983F: drivers/media/tuners/fc0011.h
2984F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03002985
Antti Palosaari91952bc2012-10-01 12:28:46 -03002986FC2580 MEDIA DRIVER
2987M: Antti Palosaari <crope@iki.fi>
2988L: linux-media@vger.kernel.org
2989W: http://linuxtv.org/
2990W: http://palosaari.fi/linux/
2991Q: http://patchwork.linuxtv.org/project/linux-media/list/
2992T: git git://linuxtv.org/anttip/media_tree.git
2993S: Maintained
2994F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
Eric Paris88b2dbd2010-08-18 12:25:50 -04002996FANOTIFY
2997M: Eric Paris <eparis@redhat.com>
2998S: Maintained
2999F: fs/notify/fanotify/
3000F: include/linux/fanotify.h
3001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003003M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004W: http://www.farsite.co.uk/
3005S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003006F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007
Akinobu Mitac5408b82007-04-23 14:41:20 -07003008FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003009M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003010S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003011F: Documentation/fault-injection/
3012F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003013
Robert Lovecae727d2010-02-16 12:16:00 -08003014FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3015M: Robert Love <robert.w.love@intel.com>
3016L: devel@open-fcoe.org
3017W: www.Open-FCoE.org
3018S: Supported
3019F: drivers/scsi/libfc/
3020F: drivers/scsi/fcoe/
3021F: include/scsi/fc/
3022F: include/scsi/libfc.h
3023F: include/scsi/libfcoe.h
3024
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003025FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003026M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003027L: linux-fsdevel@vger.kernel.org
3028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003029F: include/linux/fcntl.h
3030F: include/linux/fs.h
3031F: fs/fcntl.c
3032F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003033
3034FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003035M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003036L: linux-fsdevel@vger.kernel.org
3037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003038F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003039
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003040FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003041M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003042L: lm-sensors@lm-sensors.org
3043S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003044F: drivers/hwmon/f75375s.c
3045F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003046
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003047FIREWIRE AUDIO DRIVERS
3048M: Clemens Ladisch <clemens@ladisch.de>
3049L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3050T: git git://git.alsa-project.org/alsa-kernel.git
3051S: Maintained
3052F: sound/firewire/
3053
Chris Boota511ce32012-04-14 17:50:35 -07003054FIREWIRE SBP-2 TARGET
3055M: Chris Boot <bootc@bootc.net>
3056L: linux-scsi@vger.kernel.org
3057L: target-devel@vger.kernel.org
3058L: linux1394-devel@lists.sourceforge.net
3059T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3060S: Maintained
3061F: drivers/target/sbp/
3062
Joe Perches7d2c86b2009-04-07 20:59:01 -07003063FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003064M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003065L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003066W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003067T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003069F: drivers/firewire/
3070F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003071F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003072
3073FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003074M: Ming Lei <ming.lei@canonical.com>
3075L: linux-kernel@vger.kernel.org
3076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003077F: Documentation/firmware_class/
3078F: drivers/base/firmware*.c
3079F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003080
Jiri Kosina8206f662012-05-18 13:52:29 +02003081FLOPPY DRIVER
3082M: Jiri Kosina <jkosina@suse.cz>
3083T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3084S: Odd fixes
3085F: drivers/block/floppy.c
3086
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003087FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003088M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003089W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003091F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003092
3093FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003094L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003095S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003096F: drivers/net/wan/dlci.c
3097F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003098
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003100M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003101L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003103Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003104T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003106F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003107F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003108F: drivers/video/
3109F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003110F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111
Zhang Wei173acc72008-03-01 07:42:48 -07003112FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003113M: Li Yang <leoli@freescale.com>
3114M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003115L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003117F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003118
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003119FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003120M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003121L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003122L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003124F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003125
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003126FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003127M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003128L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003129L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003131F: arch/arm/plat-mxc/include/mach/imxfb.h
3132F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003133
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003134FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003135M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3136M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003137L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003138L: netdev@vger.kernel.org
3139S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003140F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003141F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003142
Timur Tabid9e9d822008-04-24 08:45:26 +10003143FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003144M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003145L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003146S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003147F: arch/powerpc/sysdev/qe_lib/
3148F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003149
Joe Perchesb55ef9292009-10-26 16:49:46 -07003150FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003151M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003152L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003153L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003154S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003155F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003156
Li Yangbeaf53b2007-05-25 13:54:02 +08003157FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003158M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003159L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003160L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003161S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003162F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003163
Timur Tabid9e9d822008-04-24 08:45:26 +10003164FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003165M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003166L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003167S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003168F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003169
3170FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003171M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003172L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003173L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003174S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003175F: sound/soc/fsl/fsl*
3176F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003177
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003179M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003182F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183
Pavel Machek71038f52009-01-15 13:51:02 -08003184FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003185M: Pavel Machek <pavel@ucw.cz>
3186M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003187L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003188S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003189F: Documentation/power/freezing-of-tasks.txt
3190F: include/linux/freezer.h
3191F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003192
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003193FRONTSWAP API
3194M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3195L: linux-kernel@vger.kernel.org
3196S: Maintained
3197F: mm/frontswap.c
3198F: include/linux/frontswap.h
3199
David Howellsa5432f5a2009-04-20 15:46:45 +01003200FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003201M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01003202L: linux-cachefs@redhat.com
3203S: Supported
3204F: Documentation/filesystems/caching/
3205F: fs/fscache/
3206F: include/linux/fscache*.h
3207
David Howells5ab7ffe2007-04-10 15:10:45 +01003208FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003209M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003211F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
Jonathan Woithe20b93732008-06-11 10:14:56 +09303213FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303214M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05003215L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003217F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303218
Heungjun Kim4da621b62011-11-11 08:05:33 -03003219FUJITSU M-5MO LS CAMERA ISP DRIVER
3220M: Kyungmin Park <kyungmin.park@samsung.com>
3221M: Heungjun Kim <riverful.kim@samsung.com>
3222L: linux-media@vger.kernel.org
3223S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003224F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b62011-11-11 08:05:33 -03003225F: include/media/m5mols.h
3226
Robert Gerlach2d24c492012-01-18 14:26:22 +01003227FUJITSU TABLET EXTRAS
3228M: Robert Gerlach <khnz@gmx.de>
3229L: platform-driver-x86@vger.kernel.org
3230S: Maintained
3231F: drivers/platform/x86/fujitsu-tablet.c
3232
Miklos Szeredi04578f12005-09-09 13:10:22 -07003233FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003234M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003235L: fuse-devel@lists.sourceforge.net
3236W: http://fuse.sourceforge.net/
3237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003238F: fs/fuse/
3239F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003240
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003242M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003244S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003245F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
3247GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003248M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249L: linux-scsi@vger.kernel.org
3250W: http://www.icp-vortex.com/
3251S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003252F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003254GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003255M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003257F: drivers/i2c/busses/i2c-gpio.c
3258F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003259
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003260GENERIC GPIO I2C MULTIPLEXER DRIVER
3261M: Peter Korsgaard <peter.korsgaard@barco.com>
3262L: linux-i2c@vger.kernel.org
3263S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003264F: drivers/i2c/muxes/i2c-mux-gpio.c
3265F: include/linux/i2c-mux-gpio.h
3266F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003267
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003268GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003269M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003272F: drivers/net/wan/c101.c
3273F: drivers/net/wan/hd6457*
3274F: drivers/net/wan/hdlc*
3275F: drivers/net/wan/n2.c
3276F: drivers/net/wan/pc300too.c
3277F: drivers/net/wan/pci200syn.c
3278F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003280GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003281M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003282L: linux-arch@vger.kernel.org
3283T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3284S: Maintained
3285F: include/asm-generic
3286
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003287GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003288M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003289L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003290S: Supported
3291F: drivers/uio/uio_pci_generic.c
3292
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003293GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003294M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003295L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003296W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003297T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3298T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003299S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003300F: Documentation/filesystems/gfs2*.txt
3301F: fs/gfs2/
3302F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003303
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003304GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003305M: Hansjoerg Lipp <hjlipp@web.de>
3306M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003307L: gigaset307x-common@lists.sourceforge.net
3308W: http://gigaset307x.sourceforge.net/
3309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003310F: Documentation/isdn/README.gigaset
3311F: drivers/isdn/gigaset/
3312F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003313
Grant Likelya0dc00b2011-02-12 01:48:14 -07003314GPIO SUBSYSTEM
3315M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003316M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003317S: Maintained
3318T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003319F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003320F: drivers/gpio/
3321F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003322F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003323
Harry Wei71a6d0a2011-05-11 15:13:33 -07003324GRE DEMULTIPLEXER DRIVER
3325M: Dmitry Kozlov <xeb@mail.ru>
3326L: netdev@vger.kernel.org
3327S: Maintained
3328F: net/ipv4/gre.c
3329F: include/net/gre.h
3330
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003331GRETH 10/100/1G Ethernet MAC device driver
3332M: Kristoffer Glembo <kristoffer@gaisler.com>
3333L: netdev@vger.kernel.org
3334S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003335F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003336
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003337GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003338M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003339L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003340T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003341S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003342F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003343
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003344GSPCA GL860 SUBDRIVER
3345M: Olivier Lorin <o.lorin@laposte.net>
3346L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003347T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003348S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003349F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003350
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003351GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003352M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003353L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003354T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003355S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003356F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003357
3358GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003359M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003360L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003361T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003362S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003363F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003364
Brian Johnson261982f2009-07-19 15:58:56 -03003365GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003366M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003367L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003368T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Brian Johnson261982f2009-07-19 15:58:56 -03003369S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003370F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003371
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003372GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003373M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003374L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003375T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003376S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003377F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003378
3379GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003380M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003381L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003382T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003383S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003384F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003385
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003386STK1160 USB VIDEO CAPTURE DRIVER
3387M: Ezequiel Garcia <elezegarcia@gmail.com>
3388L: linux-media@vger.kernel.org
3389T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3390S: Maintained
3391F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003392
Harry Wei71a6d0a2011-05-11 15:13:33 -07003393HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3394M: Frank Seidel <frank@f-seidel.de>
3395L: platform-driver-x86@vger.kernel.org
3396W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3397S: Maintained
3398F: drivers/platform/x86/hdaps.c
3399
3400HWPOISON MEMORY FAILURE HANDLING
3401M: Andi Kleen <andi@firstfloor.org>
3402L: linux-mm@kvack.org
3403T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3404S: Maintained
3405F: mm/memory-failure.c
3406F: mm/hwpoison-inject.c
3407
3408HYPERVISOR VIRTUAL CONSOLE DRIVER
3409L: linuxppc-dev@lists.ozlabs.org
3410S: Odd Fixes
3411F: drivers/tty/hvc/
3412
Michael Buesch844dd052006-06-26 00:24:59 -07003413HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003414M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003415M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003416L: lm-sensors@lm-sensors.org
3417W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003418T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003419T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003420S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003421F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003422F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003423F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003424
3425HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003426M: Matt Mackall <mpm@selenic.com>
3427M: Herbert Xu <herbert@gondor.apana.org.au>
3428S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003429F: Documentation/hw_random.txt
3430F: drivers/char/hw_random/
3431F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003432
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003433HARDWARE SPINLOCK CORE
3434M: Ohad Ben-Cohen <ohad@wizery.com>
3435S: Maintained
3436F: Documentation/hwspinlock.txt
3437F: drivers/hwspinlock/hwspinlock_*
3438F: include/linux/hwspinlock.h
3439
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003441L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003443F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
Antti Palosaari91952bc2012-10-01 12:28:46 -03003445HD29L2 MEDIA DRIVER
3446M: Antti Palosaari <crope@iki.fi>
3447L: linux-media@vger.kernel.org
3448W: http://linuxtv.org/
3449W: http://palosaari.fi/linux/
3450Q: http://patchwork.linuxtv.org/project/linux-media/list/
3451T: git git://linuxtv.org/anttip/media_tree.git
3452S: Maintained
3453F: drivers/media/dvb-frontends/hd29l2*
3454
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003455HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003456M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003457L: iss_storagedev@hp.com
3458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003459F: Documentation/blockdev/cpqarray.txt
3460F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003461
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003462HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003463M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003464L: iss_storagedev@hp.com
3465S: Supported
3466F: Documentation/scsi/hpsa.txt
3467F: drivers/scsi/hpsa*.[ch]
3468F: include/linux/cciss*.h
3469
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003470HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003471M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003472L: iss_storagedev@hp.com
3473S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003474F: Documentation/blockdev/cciss.txt
3475F: drivers/block/cciss*
3476F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003477
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003479L: linux-fsdevel@vger.kernel.org
3480S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003481F: Documentation/filesystems/hfs.txt
3482F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483
3484HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003485M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486L: linux-nvidia@lists.surfsouth.com
3487W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003489F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003491HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003492M: Pavel Machek <pavel@ucw.cz>
3493M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003494L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003495S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003496F: arch/x86/power/
3497F: drivers/base/power/
3498F: kernel/power/
3499F: include/linux/suspend.h
3500F: include/linux/freezer.h
3501F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003502F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003503
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003504HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003505M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003506L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003507T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003509F: drivers/hid/
3510F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003511
Ingo Molnar38bed542007-02-22 09:09:34 +01003512HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003513M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003514T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003516F: Documentation/timers/
3517F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003518F: kernel/time/clockevents.c
3519F: kernel/time/tick*.*
3520F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003521F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003522F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003523
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003526S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003527F: drivers/net/hamradio/dmascc.c
3528F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003530HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003531M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003532W: http://www.highpoint-tech.com
3533S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003534F: Documentation/scsi/hptiop.txt
3535F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003536
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003538M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539L: linux-hippi@sunsite.dk
3540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003541F: include/linux/hippidevice.h
3542F: include/linux/if_hippi.h
3543F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003544F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
Jouni Malinenff1d2762005-05-12 22:54:16 -04003546HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003547M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003548L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003549L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003550W: http://hostap.epitest.fi/
3551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003552F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003553
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003554HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05003555L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003556S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003557F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003558
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003559HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003560M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003561S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003562F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003563
Joe Perches7d2c86b2009-04-07 20:59:01 -07003564HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003565M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003567F: Documentation/timers/hpet.txt
3568F: drivers/char/hpet.c
3569F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003570
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003571HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003572M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003574F: arch/x86/kernel/hpet.c
3575F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003576
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003578M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003581F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582
Joe Perches7d2c86b2009-04-07 20:59:01 -07003583HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003584M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003585W: http://www.pharscape.org
3586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003587F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003588
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003589HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003590M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003591L: linux-input@vger.kernel.org
3592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003593F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003594
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003596M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003598F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003600Hyper-V CORE AND DRIVERS
3601M: K. Y. Srinivasan <kys@microsoft.com>
3602M: Haiyang Zhang <haiyangz@microsoft.com>
3603L: devel@linuxdriverproject.org
3604S: Maintained
3605F: drivers/hv/
3606F: drivers/hid/hid-hyperv.c
3607F: drivers/net/hyperv/
3608F: drivers/staging/hv/
3609
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003610I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003611M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003612L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003614F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003615
Jean Delvare5b543962005-08-15 19:51:02 +02003616I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003617M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
3618M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Wolfram Sangd7a5e242012-01-12 20:32:05 +01003619M: "Wolfram Sang (embedded platforms)" <w.sang@pengutronix.de>
Jean Delvare846557d2008-10-30 15:55:47 +01003620L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003621W: http://i2c.wiki.kernel.org/
3622T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003623T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003625F: Documentation/i2c/
3626F: drivers/i2c/
3627F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003628F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629
Till Harbaume8c76ee2007-05-01 23:26:35 +02003630I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003631M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003632L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003633W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003635F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003636
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003638M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003640F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641
3642i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003643M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003644T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645S: Maintained
3646
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003648M: Tony Luck <tony.luck@intel.com>
3649M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003651T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003653F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
Kent Yoder956c2032012-09-07 04:17:01 +08003655IBM Power in-Nest Crypto Acceleration
3656M: Kent Yoder <key@linux.vnet.ibm.com>
3657L: linux-crypto@vger.kernel.org
3658S: Supported
3659F: drivers/crypto/nx/
3660
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003661IBM Power 842 compression accelerator
3662M: Robert Jennings <rcj@linux.vnet.ibm.com>
3663S: Supported
3664F: drivers/crypto/nx/nx-842.c
3665F: include/linux/nx842.h
3666
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003668M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003670F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
Santiago Leon9d348af2010-09-03 18:29:53 +00003672IBM Power Virtual Ethernet Device Driver
3673M: Santiago Leon <santil@linux.vnet.ibm.com>
3674L: netdev@vger.kernel.org
3675S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003676F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003677
Robert Jennings4b7652c2012-07-31 12:34:36 -05003678IBM Power Virtual SCSI/FC Device Drivers
3679M: Robert Jennings <rcj@linux.vnet.ibm.com>
3680L: linux-scsi@vger.kernel.org
3681S: Supported
3682F: drivers/scsi/ibmvscsi/
3683X: drivers/scsi/ibmvscsi/ibmvstgt.c
3684
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685IBM ServeRAID RAID DRIVER
3686P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003687M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003689S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003690F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003692ICH LPC AND GPIO DRIVER
3693M: Peter Tyser <ptyser@xes-inc.com>
3694S: Maintained
3695F: drivers/mfd/lpc_ich.c
3696F: drivers/gpio/gpio-ich.c
3697
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003698IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003699M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003701Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003702T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003704F: Documentation/ide/
3705F: drivers/ide/
3706F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707
Ike Panhc6cb8c132011-08-25 22:28:45 +08003708IDEAPAD LAPTOP EXTRAS DRIVER
3709M: Ike Panhc <ike.pan@canonical.com>
3710L: platform-driver-x86@vger.kernel.org
3711W: http://launchpad.net/ideapad-laptop
3712S: Maintained
3713F: drivers/platform/x86/ideapad-laptop.c
3714
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003715IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003716M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003717L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003719F: Documentation/cdrom/ide-cd
3720F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721
Andy Henroid27471fd2008-10-09 11:45:22 -07003722IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003723M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003724L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003725S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003726F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003727
Sergey Lapin02cf2282009-06-08 12:18:50 +00003728IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003729M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003730M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003731L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003732W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003733T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003734S: Maintained
3735F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003736F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003737F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003738
Ameya Palande9545f862012-01-10 09:00:58 -08003739IIO SUBSYSTEM AND DRIVERS
3740M: Jonathan Cameron <jic23@cam.ac.uk>
3741L: linux-iio@vger.kernel.org
3742S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003743F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003744F: drivers/staging/iio/
3745
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003746IKANOS/ADI EAGLE ADSL USB DRIVER
3747M: Matthieu Castet <castet.matthieu@free.fr>
3748M: Stanislaw Gruszka <stf_xl@wp.pl>
3749S: Maintained
3750F: drivers/usb/atm/ueagle-atm.c
3751
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003752INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003753M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003754S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003755F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003756
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003758L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003759S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003760F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761
3762INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003763M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003764M: Sean Hefty <sean.hefty@intel.com>
3765M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003766L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003767W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003768Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003769T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003771F: Documentation/infiniband/
3772F: drivers/infiniband/
3773F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774
Robert Lovec9f04f52005-07-15 12:21:07 -04003775INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003776M: John McCutchan <john@johnmccutchan.com>
3777M: Robert Love <rlove@rlove.org>
3778M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003780F: Documentation/filesystems/inotify.txt
3781F: fs/notify/inotify/
3782F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003783
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003784INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003785M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3786M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003787L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003788Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003789T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003791F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003792F: include/linux/input.h
3793F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003794
Henrik Rydberg3267a872010-06-24 19:10:40 -07003795INPUT MULTITOUCH (MT) PROTOCOL
3796M: Henrik Rydberg <rydberg@euromail.se>
3797L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003798T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003799S: Maintained
3800F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003801F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003802K: \b(ABS|SYN)_MT_
3803
Dave Jiang4ac13e12011-07-29 17:16:55 -07003804INTEL C600 SERIES SAS CONTROLLER DRIVER
3805M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003806M: Lukasz Dorau <lukasz.dorau@intel.com>
3807M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003808M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003809L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003810T: git git://git.code.sf.net/p/intel-sas/isci
3811S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003812F: drivers/scsi/isci/
3813F: firmware/isci/
3814
Len Brown26717172010-03-08 14:07:30 -05003815INTEL IDLE DRIVER
3816M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003817L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003818T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003819S: Supported
3820F: drivers/idle/intel_idle.c
3821
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003822INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003823M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003824L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003826F: Documentation/fb/intelfb.txt
3827F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003828
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003830M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003831L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003833F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303835INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003836M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05003837L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303838W: http://www.lesswatts.org/projects/acpi/
3839S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003840F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303841
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003843M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003845F: arch/x86/kernel/microcode_core.c
3846F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003848INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003849M: Dan Williams <djbw@fb.com>
3850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003851F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003852
David Woodhouse6c8909b2008-10-18 16:12:17 +01003853INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003854M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003855L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003856T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003857S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07003858F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07003859F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003860
Dan Williamsb3e5f262007-08-07 10:26:35 -07003861INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07003862M: Dan Williams <djbw@fb.com>
3863S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003864F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003865
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003866INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003867M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003869F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3870F: arch/arm/mach-ixp4xx/include/mach/npe.h
3871F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3872F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07003873F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07003874F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003875
Michael Buesch844dd052006-06-26 00:24:59 -07003876INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003877M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003879F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003880
Jeff Kirsher0d164402010-10-05 01:15:17 +00003881INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003882M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3883M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3884M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003885M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3886M: Don Skidmore <donald.c.skidmore@intel.com>
3887M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003888M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003889M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003890M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003891L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003892W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003893T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
3894T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003896F: Documentation/networking/e100.txt
3897F: Documentation/networking/e1000.txt
3898F: Documentation/networking/e1000e.txt
3899F: Documentation/networking/igb.txt
3900F: Documentation/networking/igbvf.txt
3901F: Documentation/networking/ixgb.txt
3902F: Documentation/networking/ixgbe.txt
3903F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07003904F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905
Len Brown6dccf9c2011-07-12 22:29:32 -04003906INTEL MRST PMU DRIVER
3907M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003908L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04003909S: Supported
3910F: arch/x86/platform/mrst/pmu.*
3911
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003912INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
3913M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07003914L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003916F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07003917F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04003918F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06003919
Shane Wang4bd96a72010-03-10 14:36:10 +08003920INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07003921M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
3922M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08003923M: Shane Wang <shane.wang@intel.com>
3924L: tboot-devel@lists.sourceforge.net
3925W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07003926T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08003927S: Supported
3928F: Documentation/intel_txt.txt
3929F: include/linux/tboot.h
3930F: arch/x86/kernel/tboot.c
3931
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003932INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003933M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003934M: linux-wimax@intel.com
3935L: wimax@linuxwimax.org
3936S: Supported
3937W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003938F: Documentation/wimax/README.i2400m
3939F: drivers/net/wimax/i2400m/
3940F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003941
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003942INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
3943M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003944L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01003945S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08003946F: drivers/net/wireless/iwlegacy/
3947
Zhu Yib481de92007-09-25 17:54:57 -07003948INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07003949M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003950M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003951M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003952L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003953W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07003954T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07003955S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003956F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003957
Tomas Winklerde8fe022012-05-09 16:39:02 +03003958INTEL MANAGEMENT ENGINE (mei)
3959M: Tomas Winkler <tomas.winkler@intel.com>
3960L: linux-kernel@vger.kernel.org
3961S: Supported
3962F: include/linux/mei.h
3963F: drivers/misc/mei/*
3964F: Documentation/mei/*
3965
Ralf Baechlecb109a02007-08-30 23:56:30 -07003966IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003967M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968L: linux-mips@linux-mips.org
3969S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07003970F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971
Ralf Baechlecb109a02007-08-30 23:56:30 -07003972IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003973M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01003974L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003975S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003976F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003977
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003978IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003979M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003981F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982
Francois Romieu1202d6f2007-09-17 17:13:55 -07003983IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003984M: Francois Romieu <romieu@fr.zoreil.com>
3985M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003986L: netdev@vger.kernel.org
3987S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07003988F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003989
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003990IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04003991M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003992L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07003993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003994F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003995
Corey Minyard4409ebe2006-04-20 02:43:12 -07003996IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003997M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003998L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003999W: http://openipmi.sourceforge.net/
4000S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004001F: Documentation/IPMI.txt
4002F: drivers/char/ipmi/
4003F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004004
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004005IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004006M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004007L: linux-scsi@vger.kernel.org
4008W: http://www.adaptec.com/
4009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004010F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004011
4012IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004013M: Wensong Zhang <wensong@linux-vs.org>
4014M: Simon Horman <horms@verge.net.au>
4015M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004016L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004017L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004019F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004020F: include/net/ip_vs.h
4021F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004022F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023
Randy Dunlape7839f22008-10-12 16:11:45 -07004024IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004025M: Jiri Kosina <jkosina@suse.cz>
4026M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004027S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004028F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004029
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004030IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004031M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004032L: netdev@vger.kernel.org
4033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004034F: include/linux/ipx.h
4035F: include/net/ipx.h
4036F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004037
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004039M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004040L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004041L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004043S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004044T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004045F: Documentation/networking/irda.txt
4046F: drivers/net/irda/
4047F: include/net/irda/
4048F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004050IRQ SUBSYSTEM
4051M: Thomas Gleixner <tglx@linutronix.de>
4052S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004053T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004054F: kernel/irq/
4055
Grant Likely7ab3a832012-02-14 14:06:47 -07004056IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4057M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4058M: Grant Likely <grant.likely@secretlab.ca>
4059T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4060S: Maintained
4061F: Documentation/IRQ-domain.txt
4062F: include/linux/irqdomain.h
4063F: kernel/irq/irqdomain.c
4064
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004065ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004066M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004068F: Documentation/isapnp.txt
4069F: drivers/pnp/isapnp/
4070F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004071
Harry Wei71a6d0a2011-05-11 15:13:33 -07004072iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4073M: Peter Jones <pjones@redhat.com>
4074M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4075S: Maintained
4076F: drivers/firmware/iscsi_ibft*
4077
Mike Christie14816b1e2007-11-28 16:22:06 -08004078ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004079M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004080L: open-iscsi@googlegroups.com
4081W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004082T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004084F: drivers/scsi/*iscsi*
4085F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004086
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004088M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004089L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004090L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004092T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004094F: Documentation/isdn/
4095F: drivers/isdn/
4096F: include/linux/isdn.h
4097F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098
4099ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004100M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004101L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102W: http://www.melware.de
4103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004104F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105
Jean Delvared6248702010-03-05 22:17:20 +01004106IT87 HARDWARE MONITORING DRIVER
4107M: Jean Delvare <khali@linux-fr.org>
4108L: lm-sensors@lm-sensors.org
4109S: Maintained
4110F: Documentation/hwmon/it87
4111F: drivers/hwmon/it87.c
4112
Hans Verkuil91821ff2007-12-02 09:35:33 -03004113IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004114M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004115L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004116L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07004117T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004118W: http://www.ivtvdriver.org
4119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004120F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004121F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004122F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004123
Guenter Roeck4453d732010-08-09 17:21:08 -07004124JC42.4 TEMPERATURE SENSOR DRIVER
4125M: Guenter Roeck <linux@roeck-us.net>
4126L: lm-sensors@lm-sensors.org
4127S: Maintained
4128F: drivers/hwmon/jc42.c
4129F: Documentation/hwmon/jc42
4130
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004131JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004132M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004133L: jfs-discussion@lists.sourceforge.net
4134W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004135T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004137F: Documentation/filesystems/jfs.txt
4138F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004139
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004140JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004141M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004142L: netdev@vger.kernel.org
4143S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004144F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004145
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004147M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004148L: linux-mtd@lists.infradead.org
4149W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004151F: fs/jffs2/
4152F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153
Josh Triplettde456d32006-07-30 03:04:00 -07004154JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004155M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004156M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004157L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004158S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004159F: fs/jbd/
4160F: include/linux/ext3_jbd.h
4161F: include/linux/jbd.h
4162
4163JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4164M: "Theodore Ts'o" <tytso@mit.edu>
4165L: linux-ext4@vger.kernel.org
4166S: Maintained
4167F: fs/jbd2/
4168F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004169
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004170JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004171M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004172L: linux-serial@vger.kernel.org
4173S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004174F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004175
Clemens Ladischaf399172011-01-10 16:32:54 +01004176K10TEMP HARDWARE MONITORING DRIVER
4177M: Clemens Ladisch <clemens@ladisch.de>
4178L: lm-sensors@lm-sensors.org
4179S: Maintained
4180F: Documentation/hwmon/k10temp
4181F: drivers/hwmon/k10temp.c
4182
Rudolf Marek4660cb32006-10-08 22:01:26 +02004183K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004184M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004185L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004187F: Documentation/hwmon/k8temp
4188F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189
4190KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004191M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004192L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004193S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004194F: Documentation/kbuild/kconfig-language.txt
4195F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196
Vivek Goyalea6c2082006-05-20 14:59:55 -07004197KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004198M: Vivek Goyal <vgoyal@redhat.com>
4199M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004200L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004201W: http://lse.sourceforge.net/kdump/
4202S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004203F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004204
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004206M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004207L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004209F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210
Michal Marek70fb7ba2010-01-29 14:22:43 +01004211KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004212M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004213T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4214T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004215L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004217F: Documentation/kbuild/
4218F: Makefile
4219F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004220F: scripts/basic/
4221F: scripts/mk*
4222F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223
4224KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004225L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004226W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004227S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004229KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004230M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004231L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232W: http://nfs.sourceforge.net/
NeilBrown98fac23f2007-01-26 00:56:57 -08004233S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004234F: fs/nfsd/
4235F: include/linux/nfsd/
4236F: fs/lockd/
4237F: fs/nfs_common/
4238F: net/sunrpc/
4239F: include/linux/lockd/
4240F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241
Avi Kivity426d62e2006-12-13 00:34:03 -08004242KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07004243M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004244M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004245L: kvm@vger.kernel.org
4246W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004247S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004248F: Documentation/*/kvm.txt
4249F: arch/*/kvm/
4250F: arch/*/include/asm/kvm*
4251F: include/linux/kvm*
4252F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004253
Joerg Roedelad8003d2008-09-10 20:01:07 +02004254KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004255M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004256L: kvm@vger.kernel.org
4257W: http://kvm.qumranet.com
4258S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004259F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004260F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004261
Hollis Blanchard513014b2008-04-16 23:28:08 -05004262KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004263M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004264L: kvm-ppc@vger.kernel.org
4265W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004267F: arch/powerpc/include/asm/kvm*
4268F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004269
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004270KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004271M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004272L: kvm-ia64@vger.kernel.org
4273W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004275F: Documentation/ia64/kvm.txt
4276F: arch/ia64/include/asm/kvm*
4277F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004278
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004279KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004280M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004281M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004282M: linux390@de.ibm.com
4283L: linux-s390@vger.kernel.org
4284W: http://www.ibm.com/developerworks/linux/linux390/
4285S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004286F: Documentation/s390/kvm.txt
4287F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004288F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004289F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004290
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004291KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004292M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004293W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004294L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004296F: include/linux/kexec.h
4297F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004298
David Howellse9714612010-03-29 23:42:09 +01004299KEYS/KEYRINGS:
4300M: David Howells <dhowells@redhat.com>
4301L: keyrings@linux-nfs.org
4302S: Maintained
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07004303F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004304F: include/linux/key.h
4305F: include/linux/key-type.h
4306F: include/keys/
4307F: security/keys/
4308
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004309KEYS-TRUSTED
4310M: David Safford <safford@watson.ibm.com>
4311M: Mimi Zohar <zohar@us.ibm.com>
4312L: linux-security-module@vger.kernel.org
4313L: keyrings@linux-nfs.org
4314S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07004315F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004316F: include/keys/trusted-type.h
4317F: security/keys/trusted.c
4318F: security/keys/trusted.h
4319
4320KEYS-ENCRYPTED
4321M: Mimi Zohar <zohar@us.ibm.com>
4322M: David Safford <safford@watson.ibm.com>
4323L: linux-security-module@vger.kernel.org
4324L: keyrings@linux-nfs.org
4325S: Supported
Randy Dunlapd410fa4e2011-05-19 15:59:38 -07004326F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004327F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004328F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004329
Jason Wessel5b778da2010-05-20 21:04:28 -05004330KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004331M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004332W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004333L: kgdb-bugreport@lists.sourceforge.net
4334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004335F: Documentation/DocBook/kgdb.tmpl
4336F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004337F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004338F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004339F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004340F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004341
Pekka Enberg456db8c2008-04-28 22:47:29 +03004342KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004343M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004344M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004345S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004346F: Documentation/kmemcheck.txt
4347F: arch/x86/include/asm/kmemcheck.h
4348F: arch/x86/mm/kmemcheck/
4349F: include/linux/kmemcheck.h
4350F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004351
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004352KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004353M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004354S: Maintained
4355F: Documentation/kmemleak.txt
4356F: include/linux/kmemleak.h
4357F: mm/kmemleak.c
4358F: mm/kmemleak-test.c
4359
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004360KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004361M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4362M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4363M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004364M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004366F: Documentation/kprobes.txt
4367F: include/linux/kprobes.h
4368F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004369
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004370KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004371M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004372W: http://miguelojeda.es/auxdisplay.htm
4373W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004375F: Documentation/auxdisplay/ks0108
4376F: drivers/auxdisplay/ks0108.c
4377F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004378
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004381S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004382F: Documentation/networking/lapb-module.txt
4383F: include/*/lapb.h
4384F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385
4386LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004387M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388L: linux-scsi@vger.kernel.org
4389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004390F: Documentation/scsi/53c700.txt
4391F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392
Richard Purdie263de9b2006-05-15 09:44:16 -07004393LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004394M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004395M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004396L: linux-leds@vger.kernel.org
4397T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004399F: drivers/leds/
4400F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004401
Jean Delvareb0461a42011-06-15 15:08:46 -07004402LEGACY EEPROM DRIVER
4403M: Jean Delvare <khali@linux-fr.org>
4404S: Maintained
4405F: Documentation/misc-devices/eeprom
4406F: drivers/misc/eeprom/eeprom.c
4407
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004409M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410L: legousb-devel@lists.sourceforge.net
4411W: http://legousb.sourceforge.net/
4412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004413F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414
Michael Krufky055616a2012-10-02 00:56:06 -03004415LG2160 MEDIA DRIVER
4416M: Michael Krufky <mkrufky@linuxtv.org>
4417L: linux-media@vger.kernel.org
4418W: http://linuxtv.org/
4419W: http://github.com/mkrufky
4420Q: http://patchwork.linuxtv.org/project/linux-media/list/
4421T: git git://linuxtv.org/mkrufky/tuners.git
4422S: Maintained
4423F: drivers/media/dvb-frontends/lg2160.*
4424
Michael Krufky6f0e7722012-10-02 00:56:00 -03004425LGDT3305 MEDIA DRIVER
4426M: Michael Krufky <mkrufky@linuxtv.org>
4427L: linux-media@vger.kernel.org
4428W: http://linuxtv.org/
4429W: http://github.com/mkrufky
4430Q: http://patchwork.linuxtv.org/project/linux-media/list/
4431T: git git://linuxtv.org/mkrufky/tuners.git
4432S: Maintained
4433F: drivers/media/dvb-frontends/lgdt3305.*
4434
Rusty Russell568a17f2007-10-25 14:12:24 +10004435LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004436M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004437L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004438W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004439S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004440F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004441F: arch/x86/lguest/
4442F: drivers/lguest/
4443F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004444F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004445
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004447M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448W: http://www.ibm.com/linux/ltc/projects/ppc
4449S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004450F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004452LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004453M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4454M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004456L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004457Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004458T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004460F: Documentation/powerpc/
4461F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462
4463LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004464M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004466L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004468F: arch/powerpc/platforms/powermac/
4469F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470
Grant Likely77a76362008-07-12 12:11:43 -06004471LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004472M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004473L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004474T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004476F: arch/powerpc/platforms/512x/
4477F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478
4479LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004480M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004481M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004483L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004484T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004486F: arch/powerpc/platforms/40x/
4487F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
Grant Likely260c02a2007-10-02 12:15:34 +10004489LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004490M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004491W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004492L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004493T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004495F: arch/powerpc/*/*virtex*
4496F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497
Tom Rinie93adf12005-07-26 12:49:53 -07004498LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004499M: Vitaly Bordug <vitb@kernel.crashing.org>
4500M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004501W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004502L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004503S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004504F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004505
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004507M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004508W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004509L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004510S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004511F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004512F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513
Olof Johanssonab06ff32006-09-06 14:44:54 -05004514LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004515M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004516L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004517S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004518F: arch/powerpc/platforms/pasemi/
4519F: drivers/*/*pasemi*
4520F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004521
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004523M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004524L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525S: Supported
4526
Harry Weia23ce6d2011-02-11 16:52:20 +01004527LIS3LV02D ACCELEROMETER DRIVER
4528M: Eric Piel <eric.piel@tremplin-utc.net>
4529S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004530F: Documentation/misc-devices/lis3lv02d
4531F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004532F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004533
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004534LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004535M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004537F: include/linux/llc.h
4538F: include/net/llc*
4539F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004540
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004541LM73 HARDWARE MONITOR DRIVER
4542M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4543L: lm-sensors@lm-sensors.org
4544S: Maintained
4545F: drivers/hwmon/lm73.c
4546
Jean Delvare156e2d12011-07-25 21:46:11 +02004547LM78 HARDWARE MONITOR DRIVER
4548M: Jean Delvare <khali@linux-fr.org>
4549L: lm-sensors@lm-sensors.org
4550S: Maintained
4551F: Documentation/hwmon/lm78
4552F: drivers/hwmon/lm78.c
4553
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004555M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004556L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004558F: Documentation/hwmon/lm83
4559F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560
4561LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004562M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004563L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004565F: Documentation/hwmon/lm90
4566F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004568LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004569M: Peter Zijlstra <peterz@infradead.org>
4570M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004571T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004573F: Documentation/lockdep*.txt
4574F: Documentation/lockstat.txt
4575F: include/linux/lockdep.h
4576F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004577
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004578LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004579M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004580L: linux-ntfs-dev@lists.sourceforge.net
4581W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004583F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004584F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585
Joern Engelef6ada32009-11-20 22:17:12 +01004586LogFS
4587M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304588M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004589L: logfs@logfs.org
4590W: logfs.org
4591S: Maintained
4592F: fs/logfs/
4593
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004594LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004595M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004596M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004597L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004598L: linux-scsi@vger.kernel.org
4599W: http://www.lsilogic.com/support
4600S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004601F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004602
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004604M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605L: linux-scsi@vger.kernel.org
4606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004607F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608
Guenter Roecke5f5c992010-06-25 11:59:54 -07004609LTC4261 HARDWARE MONITOR DRIVER
4610M: Guenter Roeck <linux@roeck-us.net>
4611L: lm-sensors@lm-sensors.org
4612S: Maintained
4613F: Documentation/hwmon/ltc4261
4614F: drivers/hwmon/ltc4261.c
4615
Mike Frysinger81365c32008-10-29 14:01:12 -07004616LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004617M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004618M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004619M: Cyril Hrubis <chrubis@suse.cz>
4620M: Caspar Zhang <caspar@casparzhang.com>
4621M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004622L: ltp-list@lists.sourceforge.net (subscribers-only)
4623W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004624T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004625T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004626S: Maintained
4627
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004628M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004629M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004630L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004631L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4632W: http://www.linux-m32r.org/
4633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004634F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004635
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004637M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638L: linux-m68k@lists.linux-m68k.org
4639W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004640T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004642F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004643F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644
4645M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004646M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004648L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004650F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651
4652M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004653M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654W: http://www.tazenda.demon.co.uk/phil/linux-hp
4655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004656F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657
Jiri Benc64a327a2007-05-05 11:47:08 -07004658MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004659M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004660L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004661W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004662T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4663T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004665F: Documentation/networking/mac80211-injection.txt
4666F: include/net/mac80211.h
4667F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004668
Stefano Brivio1036d862007-12-23 04:46:27 +01004669MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004670M: Stefano Brivio <stefano.brivio@polimi.it>
4671M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004672L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004673W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004674T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4675T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004677F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004678
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004679MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004680M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004681L: netdev@vger.kernel.org
4682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004683F: drivers/net/macvlan.c
4684F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004685
Michael Kerriskfaf16682005-07-31 22:34:47 -07004686MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004687M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004688W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004689L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004690S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004691
stephen hemminger44c14c12012-04-02 12:59:47 +00004692MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4693M: Mirko Lindner <mlindner@marvell.com>
4694M: Stephen Hemminger <shemminger@vyatta.com>
4695L: netdev@vger.kernel.org
4696S: Maintained
4697F: drivers/net/ethernet/marvell/sk*
4698
Stefano Brivio74cda162007-11-19 20:27:46 +01004699MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004700M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004701L: libertas-dev@lists.infradead.org
4702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004703F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004704
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004705MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004706M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004707L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004708S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004709F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004710F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711
Bing Zhaofcad5842011-07-13 13:11:58 -07004712MARVELL MWIFIEX WIRELESS DRIVER
4713M: Bing Zhao <bzhao@marvell.com>
4714L: linux-wireless@vger.kernel.org
4715S: Maintained
4716F: drivers/net/wireless/mwifiex/
4717
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004718MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004719M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004720L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004721S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004722F: drivers/net/wireless/mwl8k.c
4723
Pierre Ossman2a695672009-03-16 19:52:26 +01004724MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004725M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004726S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004727F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004728
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004730L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004731S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004732F: drivers/video/matrox/matroxfb_*
4733F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734
Guenter Roeckca462082012-06-01 23:28:23 -07004735MAX16065 HARDWARE MONITOR DRIVER
4736M: Guenter Roeck <linux@roeck-us.net>
4737L: lm-sensors@lm-sensors.org
4738S: Maintained
4739F: Documentation/hwmon/max16065
4740F: drivers/hwmon/max16065.c
4741
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004742MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004743M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004744L: lm-sensors@lm-sensors.org
4745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004746F: Documentation/hwmon/max6650
4747F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004748
Joe Perches127c49a2009-04-08 08:34:04 -07004749MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004750M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004751P: LinuxTV.org Project
4752L: linux-media@vger.kernel.org
4753W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004754Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches08deed12012-03-23 15:01:57 -07004755T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Joe Perches127c49a2009-04-08 08:34:04 -07004756S: Maintained
4757F: Documentation/dvb/
4758F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004759F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004760F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004761F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004762F: include/media/
4763F: include/linux/dvb/
4764F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004765
4766MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004767M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004768L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004769W: http://megaraid.lsilogic.com
4770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004771F: Documentation/scsi/megaraid.txt
4772F: drivers/scsi/megaraid.*
4773F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004774
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004775MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777W: http://www.linux-mm.org
4778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004779F: include/linux/mm.h
4780F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004781
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004782MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08004783M: Johannes Weiner <hannes@cmpxchg.org>
4784M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07004785M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004786M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08004787L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004788L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004790F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07004791F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004792
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004794M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004796W: http://www.linux-mtd.infradead.org/
4797Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004798T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004800F: drivers/mtd/
4801F: include/linux/mtd/
4802F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803
Michal Simekc6375b02009-03-27 14:25:52 +01004804MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004805M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02004806L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01004807W: http://www.monstr.eu/fdt/
4808T: git git://git.monstr.eu/linux-2.6-microblaze.git
4809S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004810F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811
4812MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02004813M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004815F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816
4817MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004818M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01004820W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00004821T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01004822Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00004823S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004824F: Documentation/mips/
4825F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004828M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004830F: include/linux/module.h
4831F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832
4833MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08004835S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004836F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004837F: drivers/media/pci/meye/
Joe Perches679655d2009-04-07 20:44:32 -07004838F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839
Pavel Pisac58ff042007-05-16 01:10:41 +02004840MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004841M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004842L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004843S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004844F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004845
Jiri Slabyb9705b62008-04-30 00:53:48 -07004846MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004847M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004849F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07004850F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004851
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004852MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07004853M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05004854L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004856F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004857
Anisse Astier0f1006b2009-12-17 11:28:49 +01004858MSI WMI SUPPORT
4859M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd09448532010-02-11 10:40:13 -05004860L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004861S: Supported
4862F: drivers/platform/x86/msi-wmi.c
4863
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004864MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004865M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004866T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004867S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004868F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004869
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004870MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004871M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004872L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004873T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004875F: drivers/mmc/
4876F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004877
David Brownell15a05802007-08-08 09:12:54 -07004878MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06004879S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004880F: drivers/mmc/host/mmc_spi.c
4881F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004882
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004884M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004886F: Documentation/sound/oss/MultiSound
4887F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888
Jiri Slabyd7354102006-12-08 02:38:35 -08004889MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004890S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07004891F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07004892F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004893
Felipe Balbi550a7372008-07-24 12:27:36 +03004894MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004895M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004896L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03004897T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004899F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004900
Michael Krufkyea0af5f2012-10-02 00:55:41 -03004901MXL5007T MEDIA DRIVER
4902M: Michael Krufky <mkrufky@linuxtv.org>
4903L: linux-media@vger.kernel.org
4904W: http://linuxtv.org/
4905W: http://github.com/mkrufky
4906Q: http://patchwork.linuxtv.org/project/linux-media/list/
4907T: git git://linuxtv.org/mkrufky/tuners.git
4908S: Maintained
4909F: drivers/media/tuners/mxl5007t.*
4910
Brice Goglin2d3cf582008-05-17 12:45:36 +02004911MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004912M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004913L: netdev@vger.kernel.org
4914W: http://www.myri.com/scs/download-Myri10GE.html
4915S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07004916F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004917
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04004919S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07004920F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921
Daniel Mack23dc05a2011-05-18 11:28:38 +02004922NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
4923M: Daniel Mack <zonque@gmail.com>
4924S: Maintained
4925L: alsa-devel@alsa-project.org
4926W: http://www.native-instruments.com
4927F: sound/usb/caiaq/
4928
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004930M: Petr Vandrovec <petr@vandrovec.name>
4931S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004932F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933
4934NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004935M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936L: linux-scsi@vger.kernel.org
4937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004938F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004940NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004941M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004942L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004943W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004944S: Supported
4945F: drivers/infiniband/hw/nes/
4946
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004947NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05004948M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07004949L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004951F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004952
Jon Masonb2f5a052010-07-15 08:47:27 +00004953NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00004954M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07004955L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07004956S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004957F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00004958F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07004959F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07004960
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962P: Harald Welte
4963P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01004964M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07004965M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07004966L: netfilter-devel@vger.kernel.org
4967L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004968L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969W: http://www.netfilter.org/
4970W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02004971T: git git://1984.lsi.us.es/nf
4972T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004974F: include/linux/netfilter*
4975F: include/linux/netfilter/
4976F: include/net/netfilter/
4977F: net/*/netfilter.c
4978F: net/*/netfilter/
4979F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980
Paul Moore4cc67732006-09-25 15:57:13 -07004981NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00004982M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07004983W: http://netlabel.sf.net
4984L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00004985S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004986F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004987F: include/net/netlabel.h
4988F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004989
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004991M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004993W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004995F: include/linux/netrom.h
4996F: include/net/netrom.h
4997F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004999NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005000M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005002F: Documentation/blockdev/nbd.txt
5003F: drivers/block/nbd.c
5004F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005
Neil Horman6e436502009-10-05 03:56:55 +00005006NETWORK DROP MONITOR
5007M: Neil Horman <nhorman@tuxdriver.com>
5008L: netdev@vger.kernel.org
5009S: Maintained
5010W: https://fedorahosted.org/dropwatch/
5011F: net/core/drop_monitor.c
5012
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005014M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005015L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005016W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00005017W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005018T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5019T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005021F: net/
5022F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005023F: include/linux/in.h
5024F: include/linux/net.h
5025F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026
5027NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005028M: "David S. Miller" <davem@davemloft.net>
5029M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005030M: James Morris <jmorris@namei.org>
5031M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5032M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005033L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005034T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005036F: net/ipv4/
5037F: net/ipv6/
5038F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005039F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040
David S. Miller73b76562012-10-16 14:08:40 -04005041NETWORKING [IPSEC]
5042M: Steffen Klassert <steffen.klassert@secunet.com>
5043M: Herbert Xu <herbert@gondor.apana.org.au>
5044M: "David S. Miller" <davem@davemloft.net>
5045L: netdev@vger.kernel.org
5046T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5047S: Maintained
5048F: net/xfrm/
5049F: net/key/
5050F: net/ipv4/xfrm*
5051F: net/ipv6/xfrm*
5052F: include/uapi/linux/xfrm.h
5053F: include/net/xfrm.h
5054
James Morris10e2ff12007-08-25 14:41:28 -07005055NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005056M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005057L: netdev@vger.kernel.org
5058S: Maintained
5059
John W. Linville29f8f632006-01-18 14:52:48 -08005060NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005061M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005062L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005063Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005064T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005065S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005066F: net/mac80211/
5067F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005068F: net/wireless/
5069F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005070F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005071F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005072F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005073
Joe Perches788873a2009-04-16 09:38:45 +00005074NETWORKING DRIVERS
5075L: netdev@vger.kernel.org
5076W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005077T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5078T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005079S: Odd Fixes
5080F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005081F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005082F: include/linux/netdevice.h
5083F: include/linux/arcdevice.h
5084F: include/linux/etherdevice.h
5085F: include/linux/fcdevice.h
5086F: include/linux/fddidevice.h
5087F: include/linux/hippidevice.h
5088F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005089
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005090NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005091M: Sony Chacko <sony.chacko@qlogic.com>
5092M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005093L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005094W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005095S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005096F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005097
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005098NFC SUBSYSTEM
5099M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5100M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5101M: Samuel Ortiz <sameo@linux.intel.com>
5102L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005103L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005104S: Maintained
5105F: net/nfc/
5106F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005107F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005108F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005110NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005111M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005112L: linux-nfs@vger.kernel.org
5113W: http://client.linux-nfs.org
5114T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005116F: fs/lockd/
5117F: fs/nfs/
5118F: fs/nfs_common/
5119F: net/sunrpc/
5120F: include/linux/lockd/
5121F: include/linux/nfs*
5122F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123
5124NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005125M: Jan-Pascal van Best <janpascal@vanbest.org>
5126M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005127L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005129F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005131NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005132M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005133L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005134W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005135T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005136S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005137F: Documentation/filesystems/nilfs2.txt
5138F: fs/nilfs2/
5139F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005140
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005142M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005145F: Documentation/scsi/NinjaSCSI.txt
5146F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147
5148NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005149M: GOTO Masanori <gotom@debian.or.jp>
5150M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005153F: Documentation/scsi/NinjaSCSI.txt
5154F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005157M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005159W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005160T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005161S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005162F: Documentation/filesystems/ntfs.txt
5163F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005165NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005166M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005167L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005169F: drivers/video/riva/
5170F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171
Tony Lindgrenf5525782009-05-28 13:23:53 -07005172OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005173M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005174L: linux-omap@vger.kernel.org
5175W: http://www.muru.com/linux/omap/
5176W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005177Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005178T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005179S: Maintained
Felipe Contreras4e04d5a32009-09-21 17:04:25 -07005180F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005181F: drivers/i2c/busses/i2c-omap.c
5182F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005183
5184OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005185M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005186L: linux-omap@vger.kernel.org
5187S: Maintained
5188F: arch/arm/*omap*/*clock*
5189
5190OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005191M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005192L: linux-omap@vger.kernel.org
5193S: Maintained
5194F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005195F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005196
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005197OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5198M: Rajendra Nayak <rnayak@ti.com>
5199M: Paul Walmsley <paul@pwsan.com>
5200L: linux-omap@vger.kernel.org
5201S: Maintained
5202F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5203F: arch/arm/mach-omap2/powerdomain44xx.c
5204F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5205F: arch/arm/mach-omap2/clockdomain44xx.c
5206
Tony Lindgrenf5525782009-05-28 13:23:53 -07005207OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005208M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005209M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005210L: alsa-devel@alsa-project.org (subscribers-only)
5211L: linux-omap@vger.kernel.org
5212S: Maintained
5213F: sound/soc/omap/
5214
5215OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005216M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005217L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005218L: linux-omap@vger.kernel.org
5219S: Maintained
5220F: drivers/video/omap/
5221
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005222OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005223M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005224L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005225L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005226S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005227F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005228F: Documentation/arm/OMAP/DSS
5229
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005230OMAP HARDWARE SPINLOCK SUPPORT
5231M: Ohad Ben-Cohen <ohad@wizery.com>
5232L: linux-omap@vger.kernel.org
5233S: Maintained
5234F: drivers/hwspinlock/omap_hwspinlock.c
5235F: arch/arm/mach-omap2/hwspinlock.c
5236
Tony Lindgrenf5525782009-05-28 13:23:53 -07005237OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005238M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005239L: linux-omap@vger.kernel.org
5240S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005241F: drivers/mmc/host/omap.c
5242
5243OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305244M: Venkatraman S <svenkatr@ti.com>
5245L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005246L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305247S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005248F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005249
5250OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005251M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005252S: Maintained
5253F: drivers/char/hw_random/omap-rng.c
5254
Paul Walmsleyf400c822010-12-06 19:08:54 -07005255OMAP HWMOD SUPPORT
5256M: Benoît Cousson <b-cousson@ti.com>
5257M: Paul Walmsley <paul@pwsan.com>
5258L: linux-omap@vger.kernel.org
5259S: Maintained
5260F: arch/arm/mach-omap2/omap_hwmod.c
5261F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5262
5263OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5264M: Benoît Cousson <b-cousson@ti.com>
5265L: linux-omap@vger.kernel.org
5266S: Maintained
5267F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5268
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005269OMAP IMAGE SIGNAL PROCESSOR (ISP)
5270M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5271L: linux-media@vger.kernel.org
5272S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005273F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005274
Tony Lindgrenf5525782009-05-28 13:23:53 -07005275OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005276M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005277L: linux-usb@vger.kernel.org
5278L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005279T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005280S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005281F: drivers/usb/*/*omap*
5282F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005283
Kevin Hilman6d994712012-07-16 10:05:07 -07005284OMAP GPIO DRIVER
5285M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5286M: Kevin Hilman <khilman@ti.com>
5287L: linux-omap@vger.kernel.org
5288S: Maintained
5289F: drivers/gpio/gpio-omap.c
5290
Bob Copeland0ad122d2008-07-25 19:45:18 -07005291OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005292M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005293L: linux-karma-devel@lists.sourceforge.net
5294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005295F: Documentation/filesystems/omfs.txt
5296F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005297
Harald Weltec1986ee2005-11-13 16:06:29 -08005298OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005299M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005301F: drivers/char/pcmcia/cm4000_cs.c
5302F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005303
Harald Welte77c44ab2005-11-13 16:06:26 -08005304OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005305M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005307F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005308
Jonathan Corbet77d51402007-03-22 19:44:17 -03005309OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005310M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005311L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005312T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005313S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005314F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005315
Thomas Gleixner431bca72007-05-02 09:31:35 +02005316ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005317M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005318L: linux-mtd@lists.infradead.org
5319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005320F: drivers/mtd/onenand/
5321F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005322
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005324M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325L: osst-users@lists.sourceforge.net
5326L: linux-scsi@vger.kernel.org
5327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005328F: drivers/scsi/osst*
5329F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005331OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005332M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005333L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005335F: Documentation/i2c/busses/i2c-ocores
5336F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005337
Grant Likely860c44c2009-10-26 16:49:49 -07005338OPEN FIRMWARE AND FLATTENED DEVICE TREE
5339M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005340M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005341L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005342W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005343T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005344S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005345F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005346F: drivers/of
5347F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005348F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005349K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005350K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005351
Jonas Bonn19f9d392011-06-04 22:00:38 +03005352OPENRISC ARCHITECTURE
5353M: Jonas Bonn <jonas@southpole.se>
5354W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005355L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005356S: Maintained
5357T: git git://openrisc.net/~jonas/linux
5358F: arch/openrisc
5359
Jesse Grossccb13522011-10-25 19:26:31 -07005360OPENVSWITCH
5361M: Jesse Gross <jesse@nicira.com>
5362L: dev@openvswitch.org
5363W: http://openvswitch.org
5364T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5365S: Maintained
5366F: net/openvswitch/
5367
Clemens Ladischaf399172011-01-10 16:32:54 +01005368OPL4 DRIVER
5369M: Clemens Ladisch <clemens@ladisch.de>
5370L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5371T: git git://git.alsa-project.org/alsa-kernel.git
5372S: Maintained
5373F: sound/drivers/opl4/
5374
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07005376M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377L: oprofile-list@lists.sf.net
5378S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005379F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005380F: arch/*/oprofile/
5381F: drivers/oprofile/
5382F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005384ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005385M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005386M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005387L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5388W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005389T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005390S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005391F: Documentation/filesystems/ocfs2.txt
5392F: Documentation/filesystems/dlmfs.txt
5393F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005394
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005396L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005397W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005398W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005399S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005400F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005402OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005403M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005404M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005405L: osd-dev@open-osd.org
5406W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005407T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005408S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005409F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005410F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005411F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005412
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005413P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005414M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005415L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005416W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005418F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005419
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005420PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005421M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005422L: netdev@vger.kernel.org
5423S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005424F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005425
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005426PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005427M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005428L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005430F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005431
Steffen Klassert48fc2672010-08-13 10:10:46 -04005432PADATA PARALLEL EXECUTION MECHANISM
5433M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005434L: linux-crypto@vger.kernel.org
5435S: Maintained
5436F: kernel/padata.c
5437F: include/linux/padata.h
5438F: Documentation/padata.txt
5439
Harald Welte709ee532008-09-23 17:46:57 +02005440PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005441M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05005442L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005444F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005445
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005446PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005447M: David Howells <dhowells@redhat.com>
5448M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005449L: linux-am33-list@redhat.com (moderated for non-subscribers)
5450W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005452F: Documentation/mn10300/
5453F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005454
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005456L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005457S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005458F: drivers/parport/
5459F: include/linux/parport*.h
5460F: drivers/char/ppdev.c
5461F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005463PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005464M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005465M: Chris Wright <chrisw@sous-sol.org>
5466M: Alok Kataria <akataria@vmware.com>
5467M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005468L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005469S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005470F: Documentation/ia64/paravirt_ops.txt
5471F: arch/*/kernel/paravirt*
5472F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005473
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005475M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005476L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477W: http://www.torque.net/linux-pp.html
5478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005479F: Documentation/blockdev/paride.txt
5480F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481
5482PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005483M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005484M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005485L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005487Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005488T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005490F: arch/parisc/
5491F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492
Jim Cromie1662d322006-10-06 00:43:59 -07005493PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005494M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005495L: lm-sensors@lm-sensors.org
5496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005497F: Documentation/hwmon/pc87360
5498F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005499
5500PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005501M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005503F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005504
Jean Delvare1ad107f2010-08-14 21:09:00 +02005505PC87427 HARDWARE MONITORING DRIVER
5506M: Jean Delvare <khali@linux-fr.org>
5507L: lm-sensors@lm-sensors.org
5508S: Maintained
5509F: Documentation/hwmon/pc87427
5510F: drivers/hwmon/pc87427.c
5511
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005512PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005513M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005514S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005515F: drivers/leds/leds-pca9532.c
5516F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005517
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005518PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005519M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005520L: linux-i2c@vger.kernel.org
5521S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005522F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005523
Wolfram Sanga1867d32009-09-18 22:45:51 +02005524PCA9564/PCA9665 I2C BUS DRIVER
5525M: Wolfram Sang <w.sang@pengutronix.de>
5526L: linux-i2c@vger.kernel.org
5527S: Maintained
5528F: drivers/i2c/algos/i2c-algo-pca.c
5529F: drivers/i2c/busses/i2c-pca-*
5530F: include/linux/i2c-algo-pca.h
5531F: include/linux/i2c-pca-platform.h
5532
Khalid Aziz3971dae2012-04-12 12:49:13 -07005533PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005534M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005535S: Maintained
5536F: drivers/firmware/pcdp.*
5537
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005538PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005539M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005540L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005541S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005542F: Documentation/PCI/pci-error-recovery.txt
5543F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005544
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005546M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005547L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005548Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005549T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005551F: Documentation/PCI/
5552F: drivers/pci/
5553F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005556P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005557L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005558W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005559T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005561F: Documentation/pcmcia/
5562F: drivers/pcmcia/
5563F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564
5565PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005566M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005567L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005569F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570
Steffen Klassert48fc2672010-08-13 10:10:46 -04005571PCRYPT PARALLEL CRYPTO ENGINE
5572M: Steffen Klassert <steffen.klassert@secunet.com>
5573L: linux-crypto@vger.kernel.org
5574S: Maintained
5575F: crypto/pcrypt.c
5576F: include/crypto/pcrypt.h
5577
Tejun Heoe72df0b2010-12-10 17:02:49 +01005578PER-CPU MEMORY ALLOCATOR
5579M: Tejun Heo <tj@kernel.org>
5580M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005581T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5582S: Maintained
5583F: include/linux/percpu*.h
5584F: mm/percpu*.c
5585F: arch/*/include/asm/percpu.h
5586
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005587PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005588M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005590F: include/linux/delayacct.h
5591F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005592
Ingo Molnar57c0c152009-09-21 12:20:38 +02005593PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005594M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5595M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005596M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005597M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005598T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005599S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005600F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005601F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005602F: arch/*/kernel/perf_event*.c
5603F: arch/*/kernel/*/perf_event*.c
5604F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005605F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005606F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005607F: arch/*/kernel/perf_callchain.c
5608F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005609
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005610PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005611M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005612L: linux-abi-devel@lists.sourceforge.net
5613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005614F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005615
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005616PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005617M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005618S: Supported
5619F: Documentation/networking/phonet.txt
5620F: include/linux/phonet.h
5621F: include/net/phonet/
5622F: net/phonet/
5623
Linus Torvalds1da177e2005-04-16 15:20:36 -07005624PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005625M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626L: linux-mtd@lists.infradead.org
5627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005628F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629
Bruno Prémontefdbb102012-07-30 21:39:03 +02005630PICOLCD HID DRIVER
5631M: Bruno Prémont <bonbons@linux-vserver.org>
5632L: linux-input@vger.kernel.org
5633S: Maintained
5634F: drivers/hid/hid-picolcd*
5635
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005636PICOXCELL SUPPORT
5637M: Jamie Iles <jamie@jamieiles.com>
5638L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5639T: git git://github.com/jamieiles/linux-2.6-ji.git
5640S: Supported
5641F: arch/arm/mach-picoxcell
5642F: drivers/*/picoxcell*
5643F: drivers/*/*/picoxcell*
5644
Linus Walleij2744e8a2011-05-02 20:50:54 +02005645PIN CONTROL SUBSYSTEM
5646M: Linus Walleij <linus.walleij@linaro.org>
5647S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005648F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005649F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005650
Viresh Kumardeda8282012-03-28 22:27:07 +05305651PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005652M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305653L: spear-devel@list.st.com
5654L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5655W: http://www.st.com/spear
5656S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005657F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305658
Peter Osterlund249a6772005-09-27 21:45:30 -07005659PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005660M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005662F: drivers/block/pktcdvd.c
5663F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005664
GuanXuetaob31d8272011-01-16 00:35:49 +08005665PKUNITY SOC DRIVERS
5666M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5667W: http://mprc.pku.edu.cn/~guanxuetao/linux
5668S: Maintained
5669T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5670F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005671F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005672F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005673F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005674
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005675PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005676M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005677L: lm-sensors@lm-sensors.org
5678W: http://www.lm-sensors.org/
5679W: http://www.roeck-us.net/linux/drivers/
5680T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5681S: Maintained
5682F: Documentation/hwmon/pmbus
5683F: drivers/hwmon/pmbus/
5684F: include/linux/i2c/pmbus.h
5685
Anil Ravindranath89a36812009-08-25 17:35:18 -07005686PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005687M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005688L: linux-scsi@vger.kernel.org
5689W: http://www.pmc-sierra.com/
5690S: Supported
5691F: drivers/scsi/pmcraid.*
5692
jack wangdbf9bfe2009-10-14 16:19:21 +08005693PMC SIERRA PM8001 DRIVER
5694M: jack_wang@usish.com
5695M: lindar_liu@usish.com
5696L: linux-scsi@vger.kernel.org
5697S: Supported
5698F: drivers/scsi/pm8001/
5699
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005701M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005702T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005704F: fs/timerfd.c
5705F: include/linux/timer*
5706F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707
Anton Vorontsov3be86142007-07-15 04:43:36 +04005708POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005709M: Anton Vorontsov <cbou@mail.ru>
5710M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005711T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005713F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005714F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005715
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005717M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005718M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005720F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721
Vitaly Wool999445d2007-01-04 13:07:03 +01005722PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005723M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005724L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005726F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005727
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005729M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730L: linux-ppp@vger.kernel.org
5731S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005732F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733
5734PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005735M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005737F: net/atm/pppoatm.c
5738F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739
5740PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07005741M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005743F: drivers/net/ppp/pppoe.c
5744F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005745
James Chapmana6d23702007-06-27 15:53:17 -07005746PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07005747M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07005748S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07005749F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07005750F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07005751
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005752PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005753M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005754W: http://wiki.enneenne.com/index.php/LinuxPPS_support
5755L: linuxpps@ml.enneenne.com (subscribers-only)
5756S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07005757F: Documentation/pps/
5758F: drivers/pps/
5759F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005760
Harry Wei71a6d0a2011-05-11 15:13:33 -07005761PPTP DRIVER
5762M: Dmitry Kozlov <xeb@mail.ru>
5763L: netdev@vger.kernel.org
5764S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005765F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07005766W: http://sourceforge.net/projects/accel-pptp
5767
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07005769M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770L: kpreempt-tech@lists.sourceforge.net
5771W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
5772S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005773F: Documentation/preempt-locking.txt
5774F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775
5776PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005777M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005778L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04005779W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04005780S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07005781F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005783PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005784M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005785L: linux-ide@vger.kernel.org
5786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005787F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01005788
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005789PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005790M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005791L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005792L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005793S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07005794F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09005795
Geoff Levandf58a9d12006-11-23 00:46:51 +01005796PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00005797M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005798L: linuxppc-dev@lists.ozlabs.org
5799L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00005800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005801F: arch/powerpc/boot/ps3*
5802F: arch/powerpc/include/asm/lv1call.h
5803F: arch/powerpc/include/asm/ps3*.h
5804F: arch/powerpc/platforms/ps3/
5805F: drivers/*/ps3*
5806F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00005807F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07005808F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00005809F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01005810
Jim Pariscffb4add2009-01-06 11:32:10 +00005811PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005812M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005813L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00005814S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07005815F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00005816
Anton Vorontsov8defe592012-08-03 18:07:20 -07005817PSTORE FILESYSTEM
5818M: Anton Vorontsov <cbouatmailru@gmail.com>
5819M: Colin Cross <ccross@android.com>
5820M: Kees Cook <keescook@chromium.org>
5821M: Tony Luck <tony.luck@intel.com>
5822S: Maintained
5823T: git git://git.infradead.org/users/cbou/linux-pstore.git
5824F: fs/pstore/
5825F: include/linux/pstore*
5826F: drivers/firmware/efivars.c
5827F: drivers/acpi/apei/erst.c
5828
Richard Cochran7fbc4152012-03-10 01:55:53 +00005829PTP HARDWARE CLOCK SUPPORT
5830M: Richard Cochran <richardcochran@gmail.com>
5831S: Maintained
5832W: http://linuxptp.sourceforge.net/
5833F: Documentation/ABI/testing/sysfs-ptp
5834F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07005835F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00005836F: drivers/net/phy/dp83640*
5837F: drivers/ptp/*
5838F: include/linux/ptp_cl*
5839
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005840PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005841M: Roland McGrath <roland@redhat.com>
5842M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07005843S: Maintained
5844F: include/asm-generic/syscall.h
5845F: include/linux/ptrace.h
5846F: include/linux/regset.h
5847F: include/linux/tracehook.h
5848F: kernel/ptrace.c
5849
Michael Krufky83202042006-07-03 00:24:18 -07005850PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005851M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03005852L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005853L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07005854W: http://www.isely.net/pvrusb2/
Joe Perches08deed12012-03-23 15:01:57 -07005855T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Michael Krufky83202042006-07-03 00:24:18 -07005856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005857F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03005858F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07005859
Thierry Reding200efed2012-03-27 13:16:18 +02005860PWM SUBSYSTEM
5861M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005862L: linux-kernel@vger.kernel.org
5863S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02005864W: http://gitorious.org/linux-pwm
5865T: git git://gitorious.org/linux-pwm/linux-pwm.git
5866F: Documentation/pwm.txt
5867F: Documentation/devicetree/bindings/pwm/
5868F: include/linux/pwm.h
5869F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005870F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07005871F: drivers/video/backlight/pwm_bl.c
5872F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01005873
Eric Miao30ec2612008-06-12 15:21:41 -07005874PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005875M: Eric Miao <eric.y.miao@gmail.com>
5876M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005877M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005878L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005879T: git git://github.com/hzhuang1/linux.git
5880T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005882F: arch/arm/mach-pxa/
5883F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08005884F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07005885F: drivers/usb/gadget/pxa2*
5886F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01005887F: sound/arm/pxa*
5888F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005890MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005891M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08005892M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005893L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005894T: git git://github.com/hzhuang1/linux.git
5895T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005896S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08005897F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08005898
Pierre Ossman272f1332007-05-14 21:25:26 +02005899PXA MMCI DRIVER
5900S: Orphan
5901
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005902PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005903M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08005904L: rtc-linux@googlegroups.com
5905S: Maintained
5906
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005907QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04005908M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07005909L: linux-rdma@vger.kernel.org
5910S: Supported
5911F: drivers/infiniband/hw/qib/
5912
Jes Sorensen5e9772b2010-06-30 15:37:38 +02005913QLOGIC QLA1280 SCSI DRIVER
5914M: Michael Reed <mdr@sgi.com>
5915L: linux-scsi@vger.kernel.org
5916S: Maintained
5917F: drivers/scsi/qla1280.[ch]
5918
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005920M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005921M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922L: linux-scsi@vger.kernel.org
5923S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005924F: Documentation/scsi/LICENSE.qla2xxx
5925F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926
Ravi Anand883c98f2010-04-28 11:45:49 +05305927QLOGIC QLA4XXX iSCSI DRIVER
5928M: Ravi Anand <ravi.anand@qlogic.com>
5929M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5930M: iscsi-driver@qlogic.com
5931L: linux-scsi@vger.kernel.org
5932S: Supported
5933F: drivers/scsi/qla4xxx/
5934
Ron Mercer5a4faa872006-07-25 00:40:21 -07005935QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00005936M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005937M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07005938M: linux-driver@qlogic.com
5939L: netdev@vger.kernel.org
5940S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005941F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005942F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07005943
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005944QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00005945M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07005946M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005947M: linux-driver@qlogic.com
5948L: netdev@vger.kernel.org
5949S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005950F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005951
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005952QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00005953M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005954M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07005955M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005956L: netdev@vger.kernel.org
5957S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005958F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005959
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005961M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962W: http://www.alarsen.net/linux/qnx4fs/
5963S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005964F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07005965F: include/linux/qnx4_fs.h
5966F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967
Antti Palosaari91952bc2012-10-01 12:28:46 -03005968QT1010 MEDIA DRIVER
5969M: Antti Palosaari <crope@iki.fi>
5970L: linux-media@vger.kernel.org
5971W: http://linuxtv.org/
5972W: http://palosaari.fi/linux/
5973Q: http://patchwork.linuxtv.org/project/linux-media/list/
5974T: git git://linuxtv.org/anttip/media_tree.git
5975S: Maintained
5976F: drivers/media/tuners/qt1010*
5977
Richard Kuo4f4567c2011-10-31 18:56:38 -05005978QUALCOMM HEXAGON ARCHITECTURE
5979M: Richard Kuo <rkuo@codeaurora.org>
5980L: linux-hexagon@vger.kernel.org
5981S: Supported
5982F: arch/hexagon/
5983
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005984RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07005985M: Yehuda Sadeh <yehuda@inktank.com>
5986M: Sage Weil <sage@inktank.com>
5987M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005988M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07005989W: http://ceph.com/
5990T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005991S: Supported
5992F: drivers/block/rbd.c
5993F: drivers/block/rbd_types.h
5994
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005996M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005997L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005999F: drivers/video/aty/radeon*
6000F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001
6002RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006003M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006004L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006006F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007
Randy Dunlape7839f22008-10-12 16:11:45 -07006008RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006009P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006010M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006011M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006012M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006013L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006014L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006015W: http://rt2x00.serialmonkey.com/
6016S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006017T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006018F: drivers/net/wireless/rt2x00/
6019
Nick Piggin9db55792008-02-08 04:19:49 -08006020RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006021M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006023F: Documentation/blockdev/ramdisk.txt
6024F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006025
Matt Mackall9e95ce22005-04-16 15:25:56 -07006026RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006027M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006029F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006030
Matt Porter394b7012005-11-07 01:00:15 -08006031RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006032M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006033M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006035F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006036
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006037RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006038L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006039S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006040F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006041
6042RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006043M: Josh Triplett <josh@freedesktop.org>
6044M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006045S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006046T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006047F: Documentation/RCU/torture.txt
6048F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006049
Florian Fainellic1f766b2008-02-06 22:39:44 +01006050RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006051M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006052S: Maintained
6053
Florian Fainellidb17f3952007-12-19 11:30:30 +01006054RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006055M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f3952007-12-19 11:30:30 +01006056L: netdev@vger.kernel.org
6057S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006058F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f3952007-12-19 11:30:30 +01006059
Andy Grovera09ed662009-02-24 15:30:41 +00006060RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006061M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006062L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006063S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006064F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006065
Josh Triplett595182b2006-10-04 02:17:21 -07006066READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006067M: Dipankar Sarma <dipankar@in.ibm.com>
6068M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006069W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006070S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006071T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006072F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006073X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006074F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006075F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006076X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006077
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006078REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006079M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo764654932006-12-10 02:19:06 -08006080L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006081Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006083F: Documentation/rtc.txt
6084F: drivers/rtc/
6085F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006086
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006088L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006090F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006091
Mark Brownb83a3132011-05-11 19:59:58 +02006092REGISTER MAP ABSTRACTION
6093M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6094T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6095S: Supported
6096F: drivers/base/regmap/
6097F: include/linux/regmap.h
6098
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006099REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6100M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006101T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006102S: Maintained
6103F: drivers/remoteproc/
6104F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006105F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006106
Ivo van Doorne08976452008-04-12 19:23:55 +02006107RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006108M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006109L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006110W: http://wireless.kernel.org/
6111T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6112T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006113S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006114F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006115F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006116
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006117RICOH SMARTMEDIA/XD DRIVER
6118M: Maxim Levitsky <maximlevitsky@gmail.com>
6119S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006120F: drivers/mtd/nand/r852.c
6121F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006122
Maxim Levitsky92634122011-03-25 01:56:59 -07006123RICOH R5C592 MEMORYSTICK DRIVER
6124M: Maxim Levitsky <maximlevitsky@gmail.com>
6125S: Maintained
6126F: drivers/memstick/host/r592.*
6127
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128ROCKETPORT DRIVER
6129P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130W: http://www.comtrol.com
6131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006132F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006133F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134
6135ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006136M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006138W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006140F: include/linux/rose.h
6141F: include/net/rose.h
6142F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143
Antti Palosaari91952bc2012-10-01 12:28:46 -03006144RTL2830 MEDIA DRIVER
6145M: Antti Palosaari <crope@iki.fi>
6146L: linux-media@vger.kernel.org
6147W: http://linuxtv.org/
6148W: http://palosaari.fi/linux/
6149Q: http://patchwork.linuxtv.org/project/linux-media/list/
6150T: git git://linuxtv.org/anttip/media_tree.git
6151S: Maintained
6152F: drivers/media/dvb-frontends/rtl2830*
6153
Larry Finger59840482008-11-12 17:13:09 -06006154RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006155M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006156L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006157W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006158T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006159S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006160F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006161
Larry Finger59840482008-11-12 17:13:09 -06006162RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006163M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006164M: Hin-Tak Leung <htl10@users.sourceforge.net>
6165M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006166L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006167W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006168T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006169S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006170F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006171
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006172RTL8192CE WIRELESS DRIVER
6173M: Larry Finger <Larry.Finger@lwfinger.net>
6174M: Chaoming Li <chaoming_li@realsil.com.cn>
6175L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006176W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006177T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6178S: Maintained
6179F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006180F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006181
6182S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006183M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006184L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006186F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006187
Linus Torvalds1da177e2005-04-16 15:20:36 -07006188S390
Joe Perches8b58be82009-07-29 15:04:30 -07006189M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6190M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006192L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006193W: http://www.ibm.com/developerworks/linux/linux390/
6194S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006195F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006196F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006197F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006198F: Documentation/s390/
6199F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006200
6201S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006202M: Ursula Braun <ursula.braun@de.ibm.com>
6203M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006204M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006205L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006206W: http://www.ibm.com/developerworks/linux/linux390/
6207S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006208F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006209
Felix Beckfeed9b62009-03-26 15:24:23 +01006210S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006211M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006212M: linux390@de.ibm.com
6213L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006214W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006215S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006216F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006217
Heiko Carstens5238da42006-02-11 17:56:01 -08006218S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006219M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006220M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006221L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006222W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006224F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225
Ursula Braundd96df22007-09-19 13:09:02 +02006226S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006227M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006228M: linux390@de.ibm.com
6229L: linux-s390@vger.kernel.org
6230W: http://www.ibm.com/developerworks/linux/linux390/
6231S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006232F: drivers/s390/net/*iucv*
6233F: include/net/iucv/
6234F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006235
Ben Dooks4dde7f72008-06-30 22:40:38 +01006236S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006237M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006238L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006239S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006240F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006241
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006243M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006244L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006245T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246W: http://www.mihu.de/linux/saa7146
6247S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006248F: drivers/media/common/saa7146/
6249F: drivers/media/pci/saa7146/
6250F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251
Corentin Chary92304a42011-12-05 12:38:35 -05006252SAMSUNG LAPTOP DRIVER
6253M: Corentin Chary <corentincj@iksaif.net>
6254L: platform-driver-x86@vger.kernel.org
6255S: Maintained
6256F: drivers/platform/x86/samsung-laptop.c
6257
Mark Brown4a109cc2010-09-24 10:50:46 +01006258SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006259M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006260L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6261S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006262F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006263
Jingoo Han0d89a282011-12-19 11:09:35 +09006264SAMSUNG FRAMEBUFFER DRIVER
6265M: Jingoo Han <jg1.han@samsung.com>
6266L: linux-fbdev@vger.kernel.org
6267S: Maintained
6268F: drivers/video/s3c-fb.c
6269
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006270SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6271M: Sangbeom Kim <sbkim73@samsung.com>
6272L: linux-kernel@vger.kernel.org
6273S: Supported
6274F: drivers/mfd/sec*.c
6275F: drivers/regulator/s2m*.c
6276F: drivers/regulator/s5m*.c
6277F: drivers/rtc/rtc-sec.c
6278F: include/linux/mfd/samsung/
6279
Alan Coxca749e22011-03-18 13:56:14 +00006280SERIAL DRIVERS
6281M: Alan Cox <alan@linux.intel.com>
6282L: linux-serial@vger.kernel.org
6283S: Maintained
6284F: drivers/tty/serial
6285
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306286SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006287M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306288S: Maintained
6289F: include/linux/dw_dmac.h
6290F: drivers/dma/dw_dmac_regs.h
6291F: drivers/dma/dw_dmac.c
6292
Thomas Gleixner88606e82010-12-14 21:37:13 +01006293TIMEKEEPING, NTP
6294M: John Stultz <johnstul@us.ibm.com>
6295M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006296T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006297S: Supported
6298F: include/linux/clocksource.h
6299F: include/linux/time.h
6300F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006301F: kernel/time/clocksource.c
6302F: kernel/time/time*.c
6303F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006304F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006305
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006306TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006307M: Huang Shijie <shijie8@gmail.com>
6308M: Kang Yong <kangyong@telegent.com>
6309M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006310S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006311F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006312
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006314M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006316F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317
6318SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006319M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006320M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006321T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006323F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006324F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325
Chen Liqin6bcf6732009-06-13 15:24:33 +08006326SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006327M: Chen Liqin <liqin.chen@sunplusct.com>
6328M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006329W: http://www.sunplusct.com
6330S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006331F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006332
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006334M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006335L: linux-scsi@vger.kernel.org
6336W: http://www.kernel.dk
6337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006338F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339
Roland Dreierfb50a832010-10-07 09:54:53 -07006340SCSI RDMA PROTOCOL (SRP) INITIATOR
6341M: David Dillow <dillowda@ornl.gov>
6342L: linux-rdma@vger.kernel.org
6343S: Supported
6344W: http://www.openfabrics.org
6345Q: http://patchwork.kernel.org/project/linux-rdma/list/
6346T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6347F: drivers/infiniband/ulp/srp/
6348F: include/scsi/srp.h
6349
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006351M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006352L: linux-scsi@vger.kernel.org
6353W: http://www.torque.net/sg
6354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006355F: drivers/scsi/sg.c
6356F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357
6358SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006359M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006360L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006361T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6362T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6363T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006365F: drivers/scsi/
6366F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367
6368SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006369M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370L: linux-scsi@vger.kernel.org
6371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006372F: Documentation/scsi/st.txt
6373F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006374
6375SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006376M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006377M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006378L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006379W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006381F: Documentation/networking/sctp.txt
6382F: include/linux/sctp.h
6383F: include/net/sctp/
6384F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385
6386SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006387M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006388S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006389F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006390F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006391F: drivers/watchdog/scx200_wdt.c
6392F: drivers/i2c/busses/scx200*
6393F: drivers/mtd/maps/scx200_docflash.c
6394F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006395
6396SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006397M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006399F: drivers/char/scx200_gpio.c
6400F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006401
6402SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006403M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006405F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406
Sascha Sommer6a369132008-07-15 14:21:29 +02006407SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006408M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006409L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006411F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006412
Randy Dunlape7839f22008-10-12 16:11:45 -07006413SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006414M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006415L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006416T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6417S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006418F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006419F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006420
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006421SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006422M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006423L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006424L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006426F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427
Ben Dooks0d1bb412009-06-14 13:52:37 +01006428SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006429M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006430L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006431S: Maintained
6432F: drivers/mmc/host/sdhci-s3c.c
6433
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006434SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006435M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006436L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006437L: linux-mmc@vger.kernel.org
6438S: Maintained
6439F: drivers/mmc/host/sdhci-spear.c
6440
James Morris8711cca2008-12-04 03:19:45 +11006441SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006442M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006443L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006444T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006445W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006446S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006447F: security/
James Morris8711cca2008-12-04 03:19:45 +11006448
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006450M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451S: Supported
6452
6453SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006454M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006455M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006456M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006457L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006458W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006459T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006461F: include/linux/selinux*
6462F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006463F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464
John Johansenc1c124e2010-07-29 14:48:09 -07006465APPARMOR SECURITY MODULE
6466M: John Johansen <john.johansen@canonical.com>
6467L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6468W: apparmor.wiki.kernel.org
6469T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6470S: Supported
6471F: security/apparmor/
6472
Jiri Slabycef2cf02007-05-08 00:31:45 -07006473SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006474M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006476F: drivers/misc/phantom.c
6477F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006478
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006479SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006480M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006482T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006483S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006484F: drivers/ata/
6485F: include/linux/ata.h
6486F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306488SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006489M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006490L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006491W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006492S: Supported
6493F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306494
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006495SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006496M: Sathya Perla <sathya.perla@emulex.com>
6497M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6498M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006499L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006500W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006501S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006502F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006503
Ben Hutchings8ceee662008-04-27 12:55:59 +01006504SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006505M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006506M: Ben Hutchings <bhutchings@solarflare.com>
6507L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006508S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006509F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006510
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006511SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006512M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006514F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006515
6516SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006517M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006518L: linux-ia64@vger.kernel.org
6519S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006520F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006521F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006522F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006523
Linus Torvalds1da177e2005-04-16 15:20:36 -07006524SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006525M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526L: linux-visws-devel@lists.sf.net
6527W: http://linux-visws.sf.net
6528S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006529F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530
Jack Steiner75312612008-08-15 00:40:42 -07006531SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006532M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006534F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006535
Len Brown6349d992009-08-14 15:07:14 -04006536SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006537M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006538L: sfi-devel@simplefirmware.org
6539W: http://simplefirmware.org/
6540T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006541S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006542F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006543F: drivers/sfi/
6544F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006545
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546SIMTEC EB110ATX (Chalice CATS)
6547P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006548P: Vincent Sanders <vince@simtec.co.uk>
6549M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550W: http://www.simtec.co.uk/products/EB110ATX/
6551S: Supported
6552
6553SIMTEC EB2410ITX (BAST)
6554P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006555P: Vincent Sanders <vince@simtec.co.uk>
6556M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557W: http://www.simtec.co.uk/products/EB2410ITX/
6558S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006559F: arch/arm/mach-s3c2410/mach-bast.c
6560F: arch/arm/mach-s3c2410/bast-ide.c
6561F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006563TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006564M: Sekhar Nori <nsekhar@ti.com>
6565M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306566L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306567T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006568Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006569S: Supported
6570F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006571F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006572
Francois Romieu92aab3c2005-07-30 13:11:18 +02006573SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006574M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006575L: netdev@vger.kernel.org
6576S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006577F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006578
Linus Torvalds1da177e2005-04-16 15:20:36 -07006579SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006580M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006582L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006584F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006585
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006586SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006587M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006588L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006590F: Documentation/i2c/busses/i2c-sis96x
6591F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006592
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006594M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006597F: Documentation/fb/sisfb.txt
6598F: drivers/video/sis/
6599F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006600
6601SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006602M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603W: http://www.winischhofer.at/linuxsisusbvga.shtml
6604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006605F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006606
Christoph Lameter415ad262007-07-26 10:40:56 -07006607SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006608M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006609M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006610M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07006611L: linux-mm@kvack.org
6612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006613F: include/linux/sl?b*.h
6614F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07006615
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006616SLEEPABLE READ-COPY UPDATE (SRCU)
6617M: Lai Jiangshan <laijs@cn.fujitsu.com>
6618M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6619W: http://www.rdrop.com/users/paulmck/RCU/
6620S: Supported
6621T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6622F: include/linux/srcu*
6623F: kernel/srcu*
6624
Casey Schaufler66372842012-05-23 18:34:52 -07006625SMACK SECURITY MODULE
6626M: Casey Schaufler <casey@schaufler-ca.com>
6627L: linux-security-module@vger.kernel.org
6628W: http://schaufler-ca.com
6629T: git git://git.gitorious.org/smack-next/kernel.git
6630S: Maintained
6631F: Documentation/security/Smack.txt
6632F: security/smack/
6633
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006635M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006636S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006637F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006639SMM665 HARDWARE MONITOR DRIVER
6640M: Guenter Roeck <linux@roeck-us.net>
6641L: lm-sensors@lm-sensors.org
6642S: Maintained
6643F: Documentation/hwmon/smm665
6644F: drivers/hwmon/smm665.c
6645
Steve Glendinning9df73052010-08-14 21:08:54 +02006646SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006647M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02006648L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006649S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02006650F: Documentation/hwmon/emc2103
6651F: drivers/hwmon/emc2103.c
6652
Hans de Goedea98d5062011-03-21 17:59:36 +01006653SMSC SCH5627 HARDWARE MONITOR DRIVER
6654M: Hans de Goede <hdegoede@redhat.com>
6655L: lm-sensors@lm-sensors.org
6656S: Supported
6657F: Documentation/hwmon/sch5627
6658F: drivers/hwmon/sch5627.c
6659
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006660SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006661M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006662L: lm-sensors@lm-sensors.org
6663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006664F: Documentation/hwmon/smsc47b397
6665F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006666
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006667SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006668M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006669L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006671F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07006672F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00006673
Steve Glendinning2cb37722008-12-11 20:54:30 -08006674SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006675M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08006676L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006677S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07006678F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08006679
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006680SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006681M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006682L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01006683S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01006684F: drivers/video/smscufx.c
6685
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006686SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07006687M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006688L: linux-altix@sgi.com
6689L: linux-ia64@vger.kernel.org
6690W: http://www.sgi.com/altix
6691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006692F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006693
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006694SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006695M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006696L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006697T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02006698S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006699F: include/media/soc*
6700F: drivers/media/i2c/soc_camera/
6701F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03006702
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006703SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006704M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006706F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006707
Linus Torvalds1da177e2005-04-16 15:20:36 -07006708SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006709M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006710L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08006711S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006712F: drivers/md/
6713F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006714
Linus Torvalds1da177e2005-04-16 15:20:36 -07006715SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006716M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07006717L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006718S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07006719F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720
Michael Buesch61e115a2007-09-18 15:12:50 -04006721SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02006722M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04006723L: netdev@vger.kernel.org
6724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006725F: drivers/ssb/
6726F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04006727
Linus Torvalds1da177e2005-04-16 15:20:36 -07006728SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006729M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05006730L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01006731W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006733F: Documentation/laptops/sony-laptop.txt
6734F: drivers/char/sonypi.c
6735F: drivers/platform/x86/sony-laptop.c
6736F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006737
Alex Dubovbaf85322008-02-09 10:20:54 -08006738SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006739M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08006740W: http://tifmxx.berlios.de/
6741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006742F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08006743
Linus Torvalds1da177e2005-04-16 15:20:36 -07006744SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07006745M: Jaroslav Kysela <perex@perex.cz>
6746M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07006747L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07006748W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02006749T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07006750T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006751S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07006752F: Documentation/sound/
6753F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07006754F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755
Mark Brownbd903bd2008-11-19 19:16:05 +00006756SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01006757M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006758M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00006759T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07006760L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01006761W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006762S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006763F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01006764F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02006765
Sam Ravnborg473321f2009-01-04 15:47:49 -08006766SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07006767M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006768L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006769Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07006770T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6771T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006773F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07006774F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006775
David S. Miller6404fcc2010-03-16 01:00:17 -07006776SPARC SERIAL DRIVERS
6777M: "David S. Miller" <davem@davemloft.net>
6778L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07006779T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
6780T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07006781S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05006782F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006783F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006784F: drivers/tty/serial/sunhv.c
6785F: drivers/tty/serial/sunsab.c
6786F: drivers/tty/serial/sunsab.h
6787F: drivers/tty/serial/sunsu.c
6788F: drivers/tty/serial/sunzilog.c
6789F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07006790
Christopher Li389325b2012-04-05 14:25:14 -07006791SPARSE CHECKER
6792M: "Christopher Li" <sparse@chrisli.org>
6793L: linux-sparse@vger.kernel.org
6794W: https://sparse.wiki.kernel.org/
6795T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
6796T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
6797S: Maintained
6798F: include/linux/compiler.h
6799
viresh kumarfc0c1952010-04-01 12:31:21 +01006800SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006801M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306802M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006803L: spear-devel@list.st.com
6804L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006805W: http://www.st.com/spear
6806S: Maintained
6807F: arch/arm/plat-spear/
6808
Viresh Kumar71e09a92012-04-20 22:39:48 +05306809SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006810M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306811M: Shiraz Hashim <shiraz.hashim@st.com>
6812L: spear-devel@list.st.com
6813L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6814W: http://www.st.com/spear
6815S: Maintained
6816F: arch/arm/mach-spear13xx/
6817
viresh kumarfc0c1952010-04-01 12:31:21 +01006818SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006819M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306820M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006821L: spear-devel@list.st.com
6822L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006823W: http://www.st.com/spear
6824S: Maintained
6825F: arch/arm/mach-spear3xx/
6826
6827SPEAR6XX MACHINE SUPPORT
6828M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05306829M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006830M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006831L: spear-devel@list.st.com
6832L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006833W: http://www.st.com/spear
6834S: Maintained
6835F: arch/arm/mach-spear6xx/
6836
6837SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006838M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006839L: spear-devel@list.st.com
6840L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01006841W: http://www.st.com/spear
6842S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05306843F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01006844
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006845SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07006846M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006847L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08006848Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06006849T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006851F: Documentation/spi/
6852F: drivers/spi/
6853F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006854
Jim Lewis2752e4012006-09-29 02:01:19 -07006855SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07006856M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
6857M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e4012006-09-29 02:01:19 -07006858L: netdev@vger.kernel.org
6859S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006860F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006861F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07006862
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006863SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006864M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006865L: linuxppc-dev@lists.ozlabs.org
6866L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006867W: http://www.ibm.com/developerworks/power/cell/
6868S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006869F: Documentation/filesystems/spufs.txt
6870F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006871
Phillip Lougherfc555842009-01-05 08:46:29 +00006872SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006873M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00006874L: squashfs-devel@lists.sourceforge.net (subscribers-only)
6875W: http://squashfs.org.uk
6876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006877F: Documentation/filesystems/squashfs.txt
6878F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00006879
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07006881M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006883F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006884
Linus Torvalds26e9a392008-10-17 09:50:12 -07006885STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08006886M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08006887L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08006888S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006889
Linus Torvalds26e9a392008-10-17 09:50:12 -07006890STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08006891M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07006892T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07006893L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08006894S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006895F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07006896
Joe Perchesc8c8b102011-07-05 09:42:12 -07006897STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
6898M: Henk de Groot <pe1dnn@amsat.org>
6899S: Odd Fixes
6900F: drivers/staging/wlags49_h2/
6901F: drivers/staging/wlags49_h25/
6902
Joe Perchesc9555152011-07-05 09:42:01 -07006903STAGING - ASUS OLED
6904M: Jakub Schmidtke <sjakub@gmail.com>
6905S: Odd Fixes
6906F: drivers/staging/asus_oled/
6907
Joe Perchesebd3d012011-07-05 09:42:02 -07006908STAGING - COMEDI
6909M: Ian Abbott <abbotti@mev.co.uk>
6910M: Mori Hess <fmhess@users.sourceforge.net>
6911S: Odd Fixes
6912F: drivers/staging/comedi/
6913
Joe Perches8ca572c2011-07-05 09:42:03 -07006914STAGING - CRYSTAL HD VIDEO DECODER
6915M: Naren Sankar <nsankar@broadcom.com>
6916M: Jarod Wilson <jarod@wilsonet.com>
6917M: Scott Davilla <davilla@4pi.com>
6918M: Manu Abraham <abraham.manu@gmail.com>
6919S: Odd Fixes
6920F: drivers/staging/crystalhd/
6921
Joe Perches0f16ffc2011-07-05 09:42:04 -07006922STAGING - ECHO CANCELLER
6923M: Steve Underwood <steveu@coppice.org>
6924M: David Rowe <david@rowetel.com>
6925S: Odd Fixes
6926F: drivers/staging/echo/
6927
Mark Einon8dc2bbe72011-08-29 18:42:37 +01006928STAGING - ET131X NETWORK DRIVER
6929M: Mark Einon <mark.einon@gmail.com>
6930S: Odd Fixes
6931F: drivers/staging/et131x/
6932
Joe Perchesa0138162011-07-05 15:21:34 -07006933STAGING - FLARION FT1000 DRIVERS
6934M: Marek Belisko <marek.belisko@gmail.com>
6935S: Odd Fixes
6936F: drivers/staging/ft1000/
6937
Joe Perchesec3fab92011-07-05 09:42:05 -07006938STAGING - FRONTIER TRANZPORT AND ALPHATRACK
6939M: David Täht <d@teklibre.com>
6940S: Odd Fixes
6941F: drivers/staging/frontier/
6942
Joe Perches6c1bb422011-07-05 09:42:07 -07006943STAGING - INDUSTRIAL IO
6944M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07006945L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07006946S: Odd Fixes
6947F: drivers/staging/iio/
6948
Joe Perchesa0138162011-07-05 15:21:34 -07006949STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
6950M: Jarod Wilson <jarod@wilsonet.com>
6951W: http://www.lirc.org/
6952S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006953F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07006954
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006955STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02006956M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02006957M: Marc Dietrich <marvin24@gmx.de>
6958L: ac100@lists.launchpad.net (moderated for non-subscribers)
6959S: Maintained
6960F: drivers/staging/nvec/
6961
Joe Perchesa0138162011-07-05 15:21:34 -07006962STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
6963M: Andres Salomon <dilinger@queued.net>
6964M: Chris Ball <cjb@laptop.org>
6965M: Jon Nettleton <jon.nettleton@gmail.com>
6966W: http://wiki.laptop.org/go/DCON
6967S: Odd Fixes
6968F: drivers/staging/olpc_dcon/
6969
Chris Kelly94cfdd12012-03-14 10:55:42 +00006970STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00006971M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00006972M: Chris Kelly <ckelly@ozmodevices.com>
6973S: Maintained
6974F: drivers/staging/ozwpan/
6975
Joe Perchesa0138162011-07-05 15:21:34 -07006976STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07006977M: Willy Tarreau <willy@meta-x.org>
6978S: Odd Fixes
6979F: drivers/staging/panel/
6980
Joe Perchesa0138162011-07-05 15:21:34 -07006981STAGING - REALTEK RTL8712U DRIVERS
6982M: Larry Finger <Larry.Finger@lwfinger.net>
6983M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
6984S: Odd Fixes
6985F: drivers/staging/rtl8712/
6986
Joe Perches9629fa82011-07-05 09:42:09 -07006987STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
6988M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
6989S: Odd Fixes
6990F: drivers/staging/sm7xx/
6991
Joe Perchesa0138162011-07-05 15:21:34 -07006992STAGING - SOFTLOGIC 6x10 MPEG CODEC
6993M: Ben Collins <bcollins@bluecherry.net>
6994S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08006995F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07006996
6997STAGING - SPEAKUP CONSOLE SPEECH DRIVER
6998M: William Hubbs <w.d.hubbs@gmail.com>
6999M: Chris Brannon <chris@the-brannons.com>
7000M: Kirk Reiser <kirk@braille.uwo.ca>
7001M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7002L: speakup@braille.uwo.ca
7003W: http://www.linux-speakup.org/
7004S: Odd Fixes
7005F: drivers/staging/speakup/
7006
7007STAGING - TI DSP BRIDGE DRIVERS
7008M: Omar Ramirez Luna <omar.ramirez@ti.com>
7009S: Odd Fixes
7010F: drivers/staging/tidspbridge/
7011
Joe Perchesa0138162011-07-05 15:21:34 -07007012STAGING - USB ENE SM/MS CARD READER DRIVER
7013M: Al Cho <acho@novell.com>
7014S: Odd Fixes
7015F: drivers/staging/keucr/
7016
Joe Perchesb3e871c2011-07-05 09:42:10 -07007017STAGING - VIA VT665X DRIVERS
7018M: Forest Bond <forest@alittletooquiet.net>
7019S: Odd Fixes
7020F: drivers/staging/vt665?/
7021
Joe Perches81a9a522011-07-05 09:42:11 -07007022STAGING - WINBOND IS89C35 WLAN USB DRIVER
7023M: Pavel Machek <pavel@ucw.cz>
7024S: Odd Fixes
7025F: drivers/staging/winbond/
7026
Joe Perches709bcb02011-07-05 09:42:13 -07007027STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007028M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007029S: Odd Fixes
7030F: drivers/staging/xgifb/
7031
Linus Torvalds1da177e2005-04-16 15:20:36 -07007032STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007033M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007034S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007035F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007037SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007038M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007039W: http://sammy.net/sun3/
7040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007041F: arch/m68k/kernel/*sun3*
7042F: arch/m68k/sun3*/
7043F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007044F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007045
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007046SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007047M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007048L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007049W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007050Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007051T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007052S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007053F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007054F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007055F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007056
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007057SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007058M: Len Brown <len.brown@intel.com>
7059M: Pavel Machek <pavel@ucw.cz>
7060M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007061L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007062S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007063F: Documentation/power/
7064F: arch/x86/kernel/acpi/
7065F: drivers/base/power/
7066F: kernel/power/
7067F: include/linux/suspend.h
7068F: include/linux/freezer.h
7069F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070
7071SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007072M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007073L: linux-video@atrey.karlin.mff.cuni.cz
7074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007075F: Documentation/svga.txt
7076F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007077
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007078SWIOTLB SUBSYSTEM
7079M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7080L: linux-kernel@vger.kernel.org
7081S: Supported
7082F: lib/swiotlb.c
7083F: arch/*/kernel/pci-swiotlb.c
7084F: include/linux/swiotlb.h
7085
Linus Torvalds1da177e2005-04-16 15:20:36 -07007086SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007087M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007089F: Documentation/filesystems/sysv-fs.txt
7090F: fs/sysv/
7091F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007092
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007093TARGET SUBSYSTEM
7094M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7095L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007096L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007097L: http://groups.google.com/group/linux-iscsi-target-dev
7098W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007099T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007100S: Supported
7101F: drivers/target/
7102F: include/target/
7103F: Documentation/target/
7104
Alan Cox4e688522008-04-30 00:52:11 -07007105TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007106M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007108F: Documentation/accounting/taskstats*
7109F: include/linux/taskstats*
7110F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007111
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007112TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007113M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007114L: netdev@vger.kernel.org
7115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007116F: include/linux/pkt_cls.h
7117F: include/net/pkt_cls.h
7118F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007119
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007120TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007121M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7122M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007123W: http://tcp-lp-mod.sourceforge.net/
7124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007125F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007126
Antti Palosaari91952bc2012-10-01 12:28:46 -03007127TDA10071 MEDIA DRIVER
7128M: Antti Palosaari <crope@iki.fi>
7129L: linux-media@vger.kernel.org
7130W: http://linuxtv.org/
7131W: http://palosaari.fi/linux/
7132Q: http://patchwork.linuxtv.org/project/linux-media/list/
7133T: git git://linuxtv.org/anttip/media_tree.git
7134S: Maintained
7135F: drivers/media/dvb-frontends/tda10071*
7136
7137TDA18212 MEDIA DRIVER
7138M: Antti Palosaari <crope@iki.fi>
7139L: linux-media@vger.kernel.org
7140W: http://linuxtv.org/
7141W: http://palosaari.fi/linux/
7142Q: http://patchwork.linuxtv.org/project/linux-media/list/
7143T: git git://linuxtv.org/anttip/media_tree.git
7144S: Maintained
7145F: drivers/media/tuners/tda18212*
7146
7147TDA18218 MEDIA DRIVER
7148M: Antti Palosaari <crope@iki.fi>
7149L: linux-media@vger.kernel.org
7150W: http://linuxtv.org/
7151W: http://palosaari.fi/linux/
7152Q: http://patchwork.linuxtv.org/project/linux-media/list/
7153T: git git://linuxtv.org/anttip/media_tree.git
7154S: Maintained
7155F: drivers/media/tuners/tda18218*
7156
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007157TDA18271 MEDIA DRIVER
7158M: Michael Krufky <mkrufky@linuxtv.org>
7159L: linux-media@vger.kernel.org
7160W: http://linuxtv.org/
7161W: http://github.com/mkrufky
7162Q: http://patchwork.linuxtv.org/project/linux-media/list/
7163T: git git://linuxtv.org/mkrufky/tuners.git
7164S: Maintained
7165F: drivers/media/tuners/tda18271*
7166
Michael Krufkye48307a2012-10-02 00:56:33 -03007167TDA827x MEDIA DRIVER
7168M: Michael Krufky <mkrufky@linuxtv.org>
7169L: linux-media@vger.kernel.org
7170W: http://linuxtv.org/
7171W: http://github.com/mkrufky
7172Q: http://patchwork.linuxtv.org/project/linux-media/list/
7173T: git git://linuxtv.org/mkrufky/tuners.git
7174S: Maintained
7175F: drivers/media/tuners/tda8290.*
7176
Michael Krufky66cf9212012-10-02 00:56:28 -03007177TDA8290 MEDIA DRIVER
7178M: Michael Krufky <mkrufky@linuxtv.org>
7179L: linux-media@vger.kernel.org
7180W: http://linuxtv.org/
7181W: http://github.com/mkrufky
7182Q: http://patchwork.linuxtv.org/project/linux-media/list/
7183T: git git://linuxtv.org/mkrufky/tuners.git
7184S: Maintained
7185F: drivers/media/tuners/tda8290.*
7186
Jiri Pirko3d249d42011-11-11 22:16:48 +00007187TEAM DRIVER
7188M: Jiri Pirko <jpirko@redhat.com>
7189L: netdev@vger.kernel.org
7190S: Supported
7191F: drivers/net/team/
7192F: include/linux/if_team.h
7193
Erik Gilling84b94142010-06-09 15:35:53 -07007194TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007195M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007196L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007197Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7198T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007199S: Supported
7200F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007201F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007202F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007203
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007204TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007205M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007206L: netdev@vger.kernel.org
7207S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007208F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007209
Alan Cox4e688522008-04-30 00:52:11 -07007210Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007211M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007212S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007213F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007214
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007215TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007216M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007217M: Max Filippov <jcmvbkbc@gmail.com>
7218L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007220F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007221
7222THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007223M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007224L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05007225L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007226W: http://ibm-acpi.sourceforge.net
7227W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007228T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007230F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007231
Alex Dubov4020f2d2006-10-04 02:15:37 -07007232TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007233M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007235F: drivers/misc/tifm*
7236F: drivers/mmc/host/tifm_sd.c
7237F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007238
M R Swami Reddy152ad442012-04-02 20:02:31 +05307239TI LM49xxx FAMILY ASoC CODEC DRIVERS
7240M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307241M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307242L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7243S: Maintained
7244F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307245F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307246
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007247TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007248M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007249L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7250S: Maintained
7251F: sound/soc/codecs/twl4030*
7252
Luciano Coelho90921012011-11-20 21:40:41 +02007253TI WILINK WIRELESS DRIVERS
7254M: Luciano Coelho <coelho@ti.com>
7255L: linux-wireless@vger.kernel.org
7256W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7257W: http://wireless.kernel.org/en/users/Drivers/wl1251
7258T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7259S: Maintained
7260F: drivers/net/wireless/ti/
7261F: include/linux/wl12xx.h
7262
Per Lidene86eaa32006-01-12 16:45:18 +01007263TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007264M: Jon Maloy <jon.maloy@ericsson.com>
7265M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007266L: netdev@vger.kernel.org (core kernel code)
7267L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007268W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007270F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007271F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007272
Chris Metcalf867e3592010-05-28 23:09:12 -04007273TILE ARCHITECTURE
7274M: Chris Metcalf <cmetcalf@tilera.com>
7275W: http://www.tilera.com/scm/
7276S: Supported
7277F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007278F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007279F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007280F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007281
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007283M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007284L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007285W: http://sourceforge.net/projects/tlan/
7286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007287F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007288F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007289
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007290TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007291M: Kentaro Takeda <takedakn@nttdata.co.jp>
7292M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007293L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7294L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007295L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7296L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7297W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007298T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007300F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007301
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007302TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007303M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007304L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007305S: Maintained
7306F: drivers/platform/x86/topstar-laptop.c
7307
Linus Torvalds1da177e2005-04-16 15:20:36 -07007308TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05007309L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007310S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007311F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007312
7313TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007314M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007315L: tlinux-users@tce.toshiba-dme.co.jp
7316W: http://www.buzzard.org.uk/toshiba/
7317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007318F: drivers/char/toshiba.c
7319F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007320
Pierre Ossmand719f902009-03-24 21:06:09 +01007321TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007322M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007323M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007324L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007325S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007326F: drivers/mmc/host/tmio_mmc*
7327F: drivers/mmc/host/sh_mobile_sdhi.c
7328F: include/linux/mmc/tmio.h
7329F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007330
Hugh Dickins98f32602009-05-21 20:33:58 +01007331TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007332M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007333L: linux-mm@kvack.org
7334S: Maintained
7335F: include/linux/shmem_fs.h
7336F: mm/shmem.c
7337
Alan Cox4e688522008-04-30 00:52:11 -07007338TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007339M: Kent Yoder <key@linux.vnet.ibm.com>
7340M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007341W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007342M: Marcel Selhorst <tpmdd@selhorst.net>
7343M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007344W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007345L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007347F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007348
Joe Perchesd6f005a2009-10-26 16:49:40 -07007349TRACING
7350M: Steven Rostedt <rostedt@goodmis.org>
7351M: Frederic Weisbecker <fweisbec@gmail.com>
7352M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007353T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007354S: Maintained
7355F: Documentation/trace/ftrace.txt
7356F: arch/*/*/*/ftrace.h
7357F: arch/*/kernel/ftrace.c
7358F: include/*/ftrace.h
7359F: include/linux/trace*.h
7360F: include/trace/
7361F: kernel/trace/
7362
Linus Torvalds1da177e2005-04-16 15:20:36 -07007363TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007364M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007365T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007366S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007367K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007368
Alan Cox4e688522008-04-30 00:52:11 -07007369TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007370M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7371S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007372T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007373F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007374F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007375F: include/linux/serial_core.h
7376F: include/linux/serial.h
7377F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007378
Antti Palosaari91952bc2012-10-01 12:28:46 -03007379TUA9001 MEDIA DRIVER
7380M: Antti Palosaari <crope@iki.fi>
7381L: linux-media@vger.kernel.org
7382W: http://linuxtv.org/
7383W: http://palosaari.fi/linux/
7384Q: http://patchwork.linuxtv.org/project/linux-media/list/
7385T: git git://linuxtv.org/anttip/media_tree.git
7386S: Maintained
7387F: drivers/media/tuners/tua9001*
7388
Grant Grundler740db6d2008-02-17 11:53:49 -07007389TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007390M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007391L: netdev@vger.kernel.org
7392S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007393F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007394
7395TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007396M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007397L: vtun@office.satix.net
7398W: http://vtun.sourceforge.net/tun
7399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007400F: Documentation/networking/tuntap.txt
7401F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007402
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007403TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007404M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007406F: drivers/tc/
7407F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007408
Linus Torvalds1da177e2005-04-16 15:20:36 -07007409U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007410M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411L: linux-scsi@vger.kernel.org
7412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007413F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007414
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007415UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007416M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007417M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007418L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007419T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007420W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007422F: Documentation/filesystems/ubifs.txt
7423F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007424
Alan Coxcc2020e2008-05-19 14:21:51 +01007425UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007426M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007427W: http://www.uclinux.org/
7428L: uclinux-dev@uclinux.org (subscribers-only)
7429S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007430F: arch/m68k/*/*_no.*
7431F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007432
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007433UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007434M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007435W: http://uclinux-h8.sourceforge.jp/
7436S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007437F: arch/h8300/
7438F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007439F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007440
Linus Torvalds1da177e2005-04-16 15:20:36 -07007441UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007442M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007444F: Documentation/filesystems/udf.txt
7445F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007446
Alan Coxcc2020e2008-05-19 14:21:51 +01007447UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007448M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007450F: Documentation/filesystems/ufs.txt
7451F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007452
David Herrmann0a09d3a2012-06-10 15:16:28 +02007453UHID USERSPACE HID IO DRIVER:
7454M: David Herrmann <dh.herrmann@googlemail.com>
7455L: linux-input@vger.kernel.org
7456S: Maintained
7457F: drivers/hid/uhid.c
7458F: include/linux/uhid.h
7459
David Vrabel18332a82008-09-17 16:34:44 +01007460ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007461L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007462S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007463F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007464F: include/linux/uwb.h
7465F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007466
GuanXuetaob31d8272011-01-16 00:35:49 +08007467UNICORE32 ARCHITECTURE:
7468M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7469W: http://mprc.pku.edu.cn/~guanxuetao/linux
7470S: Maintained
7471T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7472F: arch/unicore32/
7473
Tony Finchd8379ab2009-11-27 15:50:30 +00007474UNIFDEF
7475M: Tony Finch <dot@dotat.at>
7476W: http://dotat.at/prog/unifdef
7477S: Maintained
7478F: scripts/unifdef.c
7479
Linus Torvalds1da177e2005-04-16 15:20:36 -07007480UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007481M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007482W: http://www.kernel.dk
7483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007484F: Documentation/cdrom/
7485F: drivers/cdrom/cdrom.c
7486F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007487
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307488UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7489M: Vinayak Holikatti <vinholikatti@gmail.com>
7490M: Santosh Y <santoshsy@gmail.com>
7491L: linux-scsi@vger.kernel.org
7492S: Supported
7493F: Documentation/scsi/ufs.txt
7494F: drivers/scsi/ufs/
7495
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007496UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007497M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007498W: http://www.linux-mtd.infradead.org/
7499L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007500T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007501S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007502F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007503F: include/linux/mtd/ubi.h
7504F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007505
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007506UNSORTED BLOCK IMAGES (UBI) Fastmap
7507M: Richard Weinberger <richard@nod.at>
7508L: linux-mtd@lists.infradead.org
7509S: Maintained
7510F: drivers/mtd/ubi/fastmap.c
7511
Linus Torvalds1da177e2005-04-16 15:20:36 -07007512USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007513M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007514L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007516F: Documentation/usb/acm.txt
7517F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007518
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007519USB ATTACHED SCSI
7520M: Matthew Wilcox <willy@linux.intel.com>
7521M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7522L: linux-usb@vger.kernel.org
7523L: linux-scsi@vger.kernel.org
7524S: Supported
7525F: drivers/usb/storage/uas.c
7526
Linus Torvalds1da177e2005-04-16 15:20:36 -07007527USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007528M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007529L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007531F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007532
Linus Torvalds1da177e2005-04-16 15:20:36 -07007533USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007534M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007535L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007537F: drivers/net/usb/cdc_*.c
7538F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007539
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007540USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007541M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007542L: linux-usb@vger.kernel.org
7543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007544F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007545
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007546USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007547M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007548L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007549W: http://www.linux-usb.org/usbnet
7550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007551F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007552
Alan Coxcc2020e2008-05-19 14:21:51 +01007553USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007554M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007555L: rio500-users@lists.sourceforge.net
7556W: http://rio500.sourceforge.net
7557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007558F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007559
Linus Torvalds1da177e2005-04-16 15:20:36 -07007560USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007561M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007562L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007564F: Documentation/usb/ehci.txt
7565F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007566
David Brownell69ae9e32006-11-14 02:03:31 -08007567USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007568M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007569L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007570W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007571T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007573F: drivers/usb/gadget/
7574F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007575
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007576USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007577M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007578L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007579T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007580S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007581F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007582F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007583
matt mooney857aab32011-06-17 15:50:46 -07007584USB/IP DRIVERS
7585M: Matt Mooney <mfm@muteddisk.com>
7586L: linux-usb@vger.kernel.org
7587S: Maintained
7588F: drivers/staging/usbip/
7589
Olav Kongas959eea22005-11-03 17:38:14 +02007590USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007591M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007592L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02007593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007594F: drivers/usb/host/isp116x*
7595F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02007596
Linus Torvalds1da177e2005-04-16 15:20:36 -07007597USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007598M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007599L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007601F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007602
7603USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007604M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007605L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08007606L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07007607S: Maintained
7608W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07007609F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007610
Clemens Ladischaf399172011-01-10 16:32:54 +01007611USB MIDI DRIVER
7612M: Clemens Ladisch <clemens@ladisch.de>
7613L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7614T: git git://git.alsa-project.org/alsa-kernel.git
7615S: Maintained
7616F: sound/usb/midi.*
7617
Linus Torvalds1da177e2005-04-16 15:20:36 -07007618USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007619M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007620L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007622F: Documentation/usb/ohci.txt
7623F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007624
Matthias Urlichsba460e42005-07-14 00:33:47 -07007625USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007626M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007627L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07007628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007629F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07007630
Linus Torvalds1da177e2005-04-16 15:20:36 -07007631USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007632M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007633L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007634L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635W: http://pegasus2.sourceforge.net/
7636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007637F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007638
Felipe Balbid3ad5582012-05-21 16:24:49 +03007639USB PHY LAYER
7640M: Felipe Balbi <balbi@ti.com>
7641L: linux-usb@vger.kernel.org
7642T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7643S: Maintained
7644F: drivers/usb/phy/
7645F: drivers/usb/otg/
7646
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007647USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07007648M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007649L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07007650S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007651F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007652
7653USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007654M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007655L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02007656L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007657W: http://pegasus2.sourceforge.net/
7658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007659F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660
Alan Cox4e688522008-04-30 00:52:11 -07007661USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007662M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007663L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007665F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07007666
7667USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007668M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007669L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007670S: Maintained
7671W: http://geocities.com/i0xox0i
7672W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07007673F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07007674
Linus Torvalds1da177e2005-04-16 15:20:36 -07007675USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007676M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677W: http://www.reiner-sct.de/support/treiber_cyberjack.php
7678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007679F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680
7681USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007682M: Peter Berger <pberger@brimson.com>
7683M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007684L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007686F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007687
7688USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007689M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007690L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007691S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007692F: Documentation/usb/usb-serial.txt
7693F: drivers/usb/serial/generic.c
7694F: drivers/usb/serial/usb-serial.c
7695F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007696
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007698M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007699L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007701F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007702
7703USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08007704M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007705L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007707F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007708
7709USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007710M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007711L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007712W: http://www.connecttech.com
7713S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007714F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007715
Steve Glendinningb3f0db12012-08-15 21:53:38 +00007716USB SMSC75XX ETHERNET DRIVER
7717M: Steve Glendinning <steve.glendinning@shawell.net>
7718L: netdev@vger.kernel.org
7719S: Maintained
7720F: drivers/net/usb/smsc75xx.*
7721
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007722USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007723M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007724L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007726F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00007727
Luca Risoliaf423b9a2007-03-26 16:12:04 -03007728USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007729M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007730L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007731L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007732T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733W: http://www.linux-projects.org
7734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007735F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007736F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007737
7738USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007739M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007740L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007741W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07007742T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007743S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007744F: Documentation/usb/
7745F: drivers/net/usb/
7746F: drivers/usb/
7747F: include/linux/usb.h
7748F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007749
7750USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007751M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007752L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007754F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007755
David Brownell69ae9e32006-11-14 02:03:31 -08007756USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02007757M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007758L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007759W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07007760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007761F: drivers/net/usb/usbnet.c
7762F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007763
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007764USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07007765M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03007766L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007767L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007768T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03007769W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03007770S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03007771F: drivers/media/usb/uvc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007772
Laurent Pinchart8282da42012-10-04 02:32:42 +02007773USB WEBCAM GADGET
7774M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7775L: linux-usb@vger.kernel.org
7776S: Maintained
7777F: drivers/usb/gadget/*uvc*.c
7778F: drivers/usb/gadget/webcam.c
7779
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007780USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07007781M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007782L: linux-wireless@vger.kernel.org
7783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007784F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02007785
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007786USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08007787M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007788L: linux-usb@vger.kernel.org
7789S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08007790F: drivers/usb/host/xhci*
7791F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07007792
Linus Torvalds1da177e2005-04-16 15:20:36 -07007793USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04007794L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007795W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04007796S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007797F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007798
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007799USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007800M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007801L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007802L: linux-media@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007803T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007804W: http://royale.zerezo.com/zr364xx/
7805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007806F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007807F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007808
Randy Dunlape7839f22008-10-12 16:11:45 -07007809USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07007810M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01007811M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007812L: user-mode-linux-devel@lists.sourceforge.net
7813L: user-mode-linux-user@lists.sourceforge.net
7814W: http://user-mode-linux.sourceforge.net
7815S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07007816F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07007817F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02007818F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07007819F: fs/hostfs/
7820F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03007821
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007822USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07007823M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08007824M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007826F: Documentation/DocBook/uio-howto.tmpl
7827F: drivers/uio/
7828F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01007829
Karel Zak256cccb2012-06-01 10:13:09 +02007830UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07007831M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02007832L: util-linux@vger.kernel.org
7833W: http://en.wikipedia.org/wiki/Util-linux
7834T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07007835S: Maintained
7836
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007837UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007838M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007839L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007840W: http://dev.gentoo.org/~spock/projects/uvesafb/
7841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007842F: Documentation/fb/uvesafb.txt
7843F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07007844
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007845VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007846M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007848F: Documentation/filesystems/vfat.txt
7849F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007850
Alex Williamsoncba33452012-07-31 08:16:22 -06007851VFIO DRIVER
7852M: Alex Williamson <alex.williamson@redhat.com>
7853L: kvm@vger.kernel.org
7854S: Maintained
7855F: Documentation/vfio.txt
7856F: drivers/vfio/
7857F: include/linux/vfio.h
7858
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007859VIDEOBUF2 FRAMEWORK
7860M: Pawel Osciak <pawel@osciak.com>
7861M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03007862M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007863L: linux-media@vger.kernel.org
7864S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007865F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07007866F: include/media/videobuf2-*
7867
Amit Shah9a824462010-03-23 18:23:09 +05307868VIRTIO CONSOLE DRIVER
7869M: Amit Shah <amit.shah@redhat.com>
7870L: virtualization@lists.linux-foundation.org
7871S: Maintained
7872F: drivers/char/virtio_console.c
7873F: include/linux/virtio_console.h
7874
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10307875VIRTIO CORE, NET AND BLOCK DRIVERS
7876M: Rusty Russell <rusty@rustcorp.com.au>
7877M: "Michael S. Tsirkin" <mst@redhat.com>
7878L: virtualization@lists.linux-foundation.org
7879S: Maintained
7880F: drivers/virtio/
7881F: drivers/net/virtio_net.c
7882F: drivers/block/virtio_blk.c
7883F: include/linux/virtio_*.h
7884
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00007885VIRTIO HOST (VHOST)
7886M: "Michael S. Tsirkin" <mst@redhat.com>
7887L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00007888L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00007889L: netdev@vger.kernel.org
7890S: Maintained
7891F: drivers/vhost/
7892F: include/linux/vhost.h
7893
Linus Torvalds1da177e2005-04-16 15:20:36 -07007894VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007895M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007896S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007897F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007898
Jean Delvare32c0a522005-09-22 21:47:58 +02007899VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007900M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01007901L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02007902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007903F: Documentation/i2c/busses/i2c-viapro
7904F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02007905
Harald Weltef0bf7f62009-06-17 20:22:39 +02007906VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08007907M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07007908M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02007909S: Maintained
7910F: drivers/mmc/host/via-sdmmc.c
7911
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007912VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007913M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01007914L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007915S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00007916F: include/linux/via-core.h
7917F: include/linux/via-gpio.h
7918F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07007919F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07007920
Francois Romieu01f20732007-01-26 00:57:17 -08007921VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007922M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08007923L: netdev@vger.kernel.org
7924S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07007925F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007926
Patrick McHardybe7f8272007-10-23 20:26:36 -07007927VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07007928M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07007929L: netdev@vger.kernel.org
7930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007931F: drivers/net/macvlan.c
7932F: include/linux/if_*vlan.h
7933F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07007934
Florian Fainelli55e331c2009-06-16 15:33:53 -07007935VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07007936M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08007937L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07007938S: Maintained
7939F: drivers/vlynq/vlynq.c
7940F: include/linux/vlynq.h
7941
Martyn Welch390beae2012-05-03 17:52:36 +01007942VME SUBSYSTEM
7943M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02007944M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01007945M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7946L: devel@driverdev.osuosl.org
7947S: Maintained
7948T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7949F: Documentation/vme_api.txt
7950F: drivers/staging/vme/
7951F: drivers/vme/
7952F: include/linux/vme*
7953
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007954VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08007955M: Shreyas Bhatewara <sbhatewara@vmware.com>
7956M: "VMware, Inc." <pv-drivers@vmware.com>
7957L: netdev@vger.kernel.org
7958S: Maintained
7959F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07007960
Alok Kataria851b1642009-10-13 14:51:05 -07007961VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08007962M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07007963M: VMware PV-Drivers <pv-drivers@vmware.com>
7964L: linux-scsi@vger.kernel.org
7965S: Maintained
7966F: drivers/scsi/vmw_pvscsi.c
7967F: drivers/scsi/vmw_pvscsi.h
7968
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007969VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01007970M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007971M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007972W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00007973W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07007974T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007975S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007976F: drivers/regulator/
7977F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01007978
Juerg Haefligerab413192006-09-24 20:54:04 +02007979VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007980M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02007981L: lm-sensors@lm-sensors.org
7982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007983F: Documentation/hwmon/vt1211
7984F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02007985
Roger Lucas1de9e372005-11-26 20:20:05 +01007986VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007987M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01007988L: lm-sensors@lm-sensors.org
7989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007990F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01007991
Tony Olech88095e72011-05-14 16:48:13 -04007992VUB300 USB to SDIO/SD/MMC bridge chip
7993M: Tony Olech <tony.olech@elandigitalsystems.com>
7994L: linux-mmc@vger.kernel.org
7995L: linux-usb@vger.kernel.org
7996S: Supported
7997F: drivers/mmc/host/vub300.c
7998
Linus Torvalds1da177e2005-04-16 15:20:36 -07007999W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008000M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008002F: Documentation/w1/
8003F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008004
Charles Spirakis13927072006-07-05 18:05:15 +02008005W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008006M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008007L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008009F: Documentation/hwmon/w83791d
8010F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008011
Rudolf Marek61db0112006-12-12 18:18:30 +01008012W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008013M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008014L: lm-sensors@lm-sensors.org
8015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008016F: Documentation/hwmon/w83793
8017F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008018
Jean Delvaree3760b42010-10-28 20:31:49 +02008019W83795 HARDWARE MONITORING DRIVER
8020M: Jean Delvare <khali@linux-fr.org>
8021L: lm-sensors@lm-sensors.org
8022S: Maintained
8023F: drivers/hwmon/w83795.c
8024
Linus Torvalds1da177e2005-04-16 15:20:36 -07008025W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008026M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008028F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008029
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008030WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008031M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008032L: linux-watchdog@vger.kernel.org
8033W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008034T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008036F: Documentation/watchdog/
8037F: drivers/watchdog/
8038F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008039
Linus Torvalds1da177e2005-04-16 15:20:36 -07008040WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008041M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008042L: linux-scsi@vger.kernel.org
8043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008044F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008045
David Herrmannb22e00f2011-09-06 13:50:40 +02008046WIIMOTE HID DRIVER
8047M: David Herrmann <dh.herrmann@googlemail.com>
8048L: linux-input@vger.kernel.org
8049S: Maintained
8050F: drivers/hid/hid-wiimote*
8051
David Härdemane258b802009-09-21 17:04:53 -07008052WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008053M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008054S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008055F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008056
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008057WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008058M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008059M: linux-wimax@intel.com
8060L: wimax@linuxwimax.org
8061S: Supported
8062W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008063F: Documentation/wimax/README.wimax
8064F: include/linux/wimax.h
8065F: include/linux/wimax/debug.h
8066F: include/net/wimax.h
8067F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008068
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008069WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008070M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008072F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008073
Linus Torvalds1da177e2005-04-16 15:20:36 -07008074WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008075M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008076L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008077W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008079F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008080
Mark Brownfebf1df2008-04-02 00:51:09 -04008081WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008082M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8083M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008084L: linux-input@vger.kernel.org
8085T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8086W: http://opensource.wolfsonmicro.com/node/7
8087S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008088F: drivers/input/touchscreen/*wm97*
8089F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008090
Mark Brown055bcbc2010-08-13 14:18:12 +01008091WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008092M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008093L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008094T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008095T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008096W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008097S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008098F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008099F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008100F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008101F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008102F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008103F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008104F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008105F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008106F: drivers/input/misc/wm831x-on.c
8107F: drivers/input/touchscreen/wm831x-ts.c
8108F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008109F: drivers/mfd/arizona*
8110F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008111F: drivers/power/wm83*.c
8112F: drivers/rtc/rtc-wm83*.c
8113F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008114F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008115F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008116F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008117F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008118F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008119F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008120F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008121F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008122F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008123F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008124
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008125WORKQUEUE
8126M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008127T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8128S: Maintained
8129F: include/linux/workqueue.h
8130F: kernel/workqueue.c
8131F: Documentation/workqueue.txt
8132
Linus Torvalds1da177e2005-04-16 15:20:36 -07008133X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008134M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008135L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008136S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008137F: Documentation/networking/x25*
8138F: include/net/x25*
8139F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008140
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008141X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008142M: Thomas Gleixner <tglx@linutronix.de>
8143M: Ingo Molnar <mingo@redhat.com>
8144M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008145M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008146T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008148F: Documentation/x86/
8149F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008150
Matthew Garrettd09448532010-02-11 10:40:13 -05008151X86 PLATFORM DRIVERS
8152M: Matthew Garrett <mjg@redhat.com>
8153L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008154T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -05008155S: Maintained
8156F: drivers/platform/x86
8157
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008158X86 MCE INFRASTRUCTURE
8159M: Tony Luck <tony.luck@intel.com>
8160M: Borislav Petkov <bp@amd64.org>
8161L: linux-edac@vger.kernel.org
8162S: Maintained
8163F: arch/x86/kernel/cpu/mcheck/*
8164
Ian Campbellc4468082011-04-27 15:26:46 -07008165XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008166M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008167M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008168L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8169L: virtualization@lists.linux-foundation.org
8170S: Supported
8171F: arch/x86/xen/
8172F: drivers/*/xen-*front.c
8173F: drivers/xen/
8174F: arch/x86/include/asm/xen/
8175F: include/xen/
8176
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008177XEN HYPERVISOR ARM
8178M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8179L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8180S: Supported
8181F: arch/arm/xen/
8182F: arch/arm/include/asm/xen/
8183
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008184XEN NETWORK BACKEND DRIVER
8185M: Ian Campbell <ian.campbell@citrix.com>
8186L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8187L: netdev@vger.kernel.org
8188S: Supported
8189F: drivers/net/xen-netback/*
8190
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008191XEN PCI SUBSYSTEM
8192M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008193L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008194S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008195F: arch/x86/pci/*xen*
8196F: drivers/pci/*xen*
8197
8198XEN SWIOTLB SUBSYSTEM
8199M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008200L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008201S: Supported
8202F: arch/x86/xen/*swiotlb*
8203F: drivers/xen/*swiotlb*
8204
Linus Torvalds1da177e2005-04-16 15:20:36 -07008205XFS FILESYSTEM
8206P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008207M: Ben Myers <bpm@sgi.com>
8208M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008209M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008210L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008212T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008213S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008214F: Documentation/filesystems/xfs.txt
8215F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008216
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008217XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008218M: Anirudha Sarangi <anirudh@xilinx.com>
8219M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008220S: Maintained
8221F: drivers/net/ethernet/xilinx/xilinx_axienet*
8222
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008223XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008224M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008225W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008227F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008228
Peter Korsgaard238b8722006-12-06 20:35:17 -08008229XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008230M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008231L: linux-serial@vger.kernel.org
8232S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008233F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008234
Linus Torvalds1da177e2005-04-16 15:20:36 -07008235YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008236M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008237L: linux-hams@vger.kernel.org
8238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008239F: drivers/net/hamradio/yam*
8240F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008241
Henkaf64a5e2005-10-12 15:02:56 +02008242YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008243M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008244L: usbb2k-api-dev@nongnu.org
8245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008246F: Documentation/input/yealink.txt
8247F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008248
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008250M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008251W: http://yaina.de/jreuter/
8252W: http://www.qsl.net/dl1bke/
8253L: linux-hams@vger.kernel.org
8254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008255F: Documentation/networking/z8530drv.txt
8256F: drivers/net/hamradio/*scc.c
8257F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008258
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008259ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008260M: Daniel Drake <dsd@gentoo.org>
8261M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008262W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008263L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008264L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008266F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008267
Linus Torvalds1da177e2005-04-16 15:20:36 -07008268ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008269L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008270L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008271W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008272T: Mercurial http://linuxtv.org/hg/v4l-dvb
8273S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008274F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008275
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008276ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008277M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008278S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008279F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008280
Linus Torvalds1da177e2005-04-16 15:20:36 -07008281THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008282M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008283L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008284Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008285T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008286S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008287F: *
8288F: */