blob: c4f8cf91c0db884b81fde2aed644f31497a84dd3 [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
Sakari Ailuse8e31622012-11-12 18:14:39 -0300340ADP1653 FLASH CONTROLLER DRIVER
341M: Sakari Ailus <sakari.ailus@iki.fi>
342L: linux-media@vger.kernel.org
343S: Maintained
344F: drivers/media/i2c/adp1653.c
345F: include/media/adp1653.h
346
Michael Hennerich527a1a82010-10-28 11:31:28 +0000347ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
348M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100349L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700350W: http://wiki.analog.com/ADP5520
Michael Hennerich527a1a82010-10-28 11:31:28 +0000351S: Supported
352F: drivers/mfd/adp5520.c
353F: drivers/video/backlight/adp5520_bl.c
Joe Perches45b4e0d2011-03-22 16:34:27 -0700354F: drivers/leds/leds-adp5520.c
Joe Perches77278d52012-01-10 15:08:44 -0800355F: drivers/gpio/gpio-adp5520.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000356F: drivers/input/keyboard/adp5520-keys.c
357
358ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
359M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100360L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700361W: http://wiki.analog.com/ADP5588
Michael Hennerich527a1a82010-10-28 11:31:28 +0000362S: Supported
363F: drivers/input/keyboard/adp5588-keys.c
Joe Perches77278d52012-01-10 15:08:44 -0800364F: drivers/gpio/gpio-adp5588.c
Michael Hennerich527a1a82010-10-28 11:31:28 +0000365
366ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
367M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100368L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700369W: http://wiki.analog.com/ADP8860
Michael Hennerich527a1a82010-10-28 11:31:28 +0000370S: Supported
371F: drivers/video/backlight/adp8860_bl.c
372
Dirk Eibach8c22a8f2011-03-21 17:59:36 +0100373ADS1015 HARDWARE MONITOR DRIVER
374M: Dirk Eibach <eibach@gdsys.de>
375L: lm-sensors@lm-sensors.org
376S: Maintained
377F: Documentation/hwmon/ads1015
378F: drivers/hwmon/ads1015.c
379F: include/linux/i2c/ads1015.h
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700382M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700384F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Jean Delvareb058b852009-12-09 20:36:08 +0100386ADT7475 HARDWARE MONITOR DRIVER
387M: Jean Delvare <khali@linux-fr.org>
388L: lm-sensors@lm-sensors.org
389S: Maintained
390F: Documentation/hwmon/adt7475
391F: drivers/hwmon/adt7475.c
392
Michael Hennerich527a1a82010-10-28 11:31:28 +0000393ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
394M: Michael Hennerich <michael.hennerich@analog.com>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100395L: device-drivers-devel@blackfin.uclinux.org
Joe Perchesa3f531a2011-03-22 16:34:28 -0700396W: http://wiki.analog.com/ADXL345
Michael Hennerich527a1a82010-10-28 11:31:28 +0000397S: Supported
398F: drivers/input/misc/adxl34x.c
399
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400400ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400402L: linux-scsi@vger.kernel.org
403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700404F: Documentation/scsi/advansys.txt
405F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700408M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700410F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Antti Palosaari91952bc2012-10-01 12:28:46 -0300412AF9013 MEDIA DRIVER
413M: Antti Palosaari <crope@iki.fi>
414L: linux-media@vger.kernel.org
415W: http://linuxtv.org/
416W: http://palosaari.fi/linux/
417Q: http://patchwork.linuxtv.org/project/linux-media/list/
418T: git git://linuxtv.org/anttip/media_tree.git
419S: Maintained
420F: drivers/media/dvb-frontends/af9013*
421
422AF9033 MEDIA DRIVER
423M: Antti Palosaari <crope@iki.fi>
424L: linux-media@vger.kernel.org
425W: http://linuxtv.org/
426W: http://palosaari.fi/linux/
427Q: http://patchwork.linuxtv.org/project/linux-media/list/
428T: git git://linuxtv.org/anttip/media_tree.git
429S: Maintained
430F: drivers/media/dvb-frontends/af9033*
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432AFFS FILE SYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +0200433L: linux-fsdevel@vger.kernel.org
434S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700435F: Documentation/filesystems/affs.txt
436F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700438AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700439M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700440L: linux-afs@lists.infradead.org
441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700442F: fs/afs/
443F: include/net/af_rxrpc.h
444F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700447M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700448T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700450F: drivers/char/agp/
451F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700454M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455L: linux-scsi@vger.kernel.org
456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700457F: drivers/scsi/aha152x*
458F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Hannes Reinecke64624d42007-10-19 10:32:29 +0200460AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700461M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200462L: linux-scsi@vger.kernel.org
463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700464F: drivers/scsi/aic7xxx/
465F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200466
Hans Verkuil450500a2012-11-23 07:11:33 -0300467AIMSLAB FM RADIO RECEIVER DRIVER
468M: Hans Verkuil <hverkuil@xs4all.nl>
469L: linux-media@vger.kernel.org
470T: git git://linuxtv.org/media_tree.git
471W: http://linuxtv.org
472S: Maintained
473F: drivers/media/radio/radio-aimslab*
474
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700475AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700476M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700477L: linux-aio@kvack.org
478S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700479F: fs/aio.c
480F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700483M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700484L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485W: http://www.linux-usb.org/SpeedTouch/
486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700487F: drivers/usb/atm/speedtch.c
488F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Pierre Ossman272f1332007-05-14 21:25:26 +0200490ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700491M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700493F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200494
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000495ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700496M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100497L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700499F: Documentation/i2c/busses/i2c-ali1563
500F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700503M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700504M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500505M: Matt Turner <mattst88@gmail.com>
Joe Perchesc89f4f92012-03-23 15:01:57 -0700506S: Odd Fixes
Cheng Renquana9406692009-03-31 15:23:35 -0700507L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700508F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Tobias Klauseradf92512011-02-09 10:58:29 +0100510ALTERA UART/JTAG UART SERIAL DRIVERS
511M: Tobias Klauser <tklauser@distanz.ch>
512L: linux-serial@vger.kernel.org
513L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
514S: Maintained
515F: drivers/tty/serial/altera_uart.c
516F: drivers/tty/serial/altera_jtaguart.c
517F: include/linux/altera_uart.h
518F: include/linux/altera_jtaguart.h
519
Andreas Herrmann512d1022011-05-25 20:43:31 +0200520AMD FAM15H PROCESSOR POWER MONITORING DRIVER
Andreas Herrmannd034fbf2012-10-29 18:50:47 +0100521M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +0200522L: lm-sensors@lm-sensors.org
523S: Maintained
524F: Documentation/hwmon/fam15h_power
525F: drivers/hwmon/fam15h_power.c
526
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700527AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700528M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700529L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700531F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700532
Jordan Crousef90b8112006-01-06 00:12:14 -0800533AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800534P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700535L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800536W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
537S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700538F: drivers/char/hw_random/geode-rng.c
539F: drivers/crypto/geode*
540F: drivers/video/geode/
541F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800542
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200543AMD IOMMU (AMD-VI)
Joerg Roedele4110562012-10-23 16:16:23 +0200544M: Joerg Roedel <joro@8bytes.org>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200545L: iommu@lists.linux-foundation.org
Joerg Roedel525b2332012-03-15 11:56:44 +0100546T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
Joerg Roedele4110562012-10-23 16:16:23 +0200547S: Maintained
Joe Perchesb2c16392011-12-08 20:21:40 -0800548F: drivers/iommu/amd_iommu*.[ch]
549F: include/linux/amd-iommu.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200550
Peter Orubae7f5b302008-07-28 18:44:11 +0200551AMD MICROCODE UPDATE SUPPORT
Andreas Herrmann943482d2012-10-29 18:51:38 +0100552M: Andreas Herrmann <herrmann.der.user@googlemail.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700553L: amd64-microcode@amd64.org
Andreas Herrmann943482d2012-10-29 18:51:38 +0100554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700555F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200556
Stelian Pop284f42b2006-12-12 18:18:31 +0100557AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700558M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100559S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200560F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100561
Tom Tuckerf94b5332006-09-22 15:22:48 -0700562AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700563M: Tom Tucker <tom@opengridcomputing.com>
564M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700565L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700567F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700568
Hans Verkuil531fca12012-11-23 06:53:24 -0300569ANALOG DEVICES INC AD9389B DRIVER
570M: Hans Verkuil <hans.verkuil@cisco.com>
571L: linux-media@vger.kernel.org
572S: Maintained
573F: drivers/media/i2c/ad9389b*
574
575ANALOG DEVICES INC ADV7604 DRIVER
576M: Hans Verkuil <hans.verkuil@cisco.com>
577L: linux-media@vger.kernel.org
578S: Maintained
579F: drivers/media/i2c/adv7604*
580
Michael Hennerich527a1a82010-10-28 11:31:28 +0000581ANALOG DEVICES INC ASOC CODEC DRIVERS
Lars-Peter Clausen535bd162011-10-17 20:33:05 +0200582M: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausenf8bd42b2011-05-24 08:17:11 +0100583L: device-drivers-devel@blackfin.uclinux.org
Michael Hennerich527a1a82010-10-28 11:31:28 +0000584L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perchesa3f531a2011-03-22 16:34:28 -0700585W: http://wiki.analog.com/
Michael Hennerich527a1a82010-10-28 11:31:28 +0000586S: Supported
Mark Brown39c9d192011-06-17 11:22:27 +0100587F: sound/soc/codecs/adau*
Lars-Peter Clausencc526882011-06-27 17:04:01 +0200588F: sound/soc/codecs/adav*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000589F: sound/soc/codecs/ad1*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000590F: sound/soc/codecs/ssm*
Lars-Peter Clausen40216ce2011-11-28 09:44:17 +0100591F: sound/soc/codecs/sigmadsp.*
Michael Hennerich527a1a82010-10-28 11:31:28 +0000592
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400593ANALOG DEVICES INC ASOC DRIVERS
594L: uclinux-dist-devel@blackfin.uclinux.org
595L: alsa-devel@alsa-project.org (moderated for non-subscribers)
596W: http://blackfin.uclinux.org/
597S: Supported
598F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400599
Johannes Berg42269062006-07-25 16:15:50 +0200600AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700601M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000602L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700603L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700605F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607APM DRIVER
Jiri Kosina81024fc2011-05-04 13:41:31 +0200608M: Jiri Kosina <jkosina@suse.cz>
609S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -0700610F: arch/x86/kernel/apm_32.c
611F: include/linux/apm_bios.h
Jiri Kosina81024fc2011-05-04 13:41:31 +0200612F: drivers/char/apm-emulation.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700614APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700615M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700616L: linux-input@vger.kernel.org
617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700618F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700619
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700620APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200621M: Henrik Rydberg <rydberg@euromail.se>
622L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700624F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700627M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700629F: drivers/net/appletalk/
630F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Viresh Kumara4801672011-02-22 15:46:07 +0530632ARASAN COMPACT FLASH PATA CONTROLLER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -0700633M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumara4801672011-02-22 15:46:07 +0530634L: linux-ide@vger.kernel.org
635S: Maintained
636F: include/linux/pata_arasan_cf_data.h
637F: drivers/ata/pata_arasan_cf.c
638
Jaya Kumar1154ea72005-06-21 17:17:04 -0700639ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700640M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700642F: drivers/video/arcfb.c
643F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700646M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700648F: arch/arm/lib/floppydma.S
649F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Will Deacon6f965212011-07-01 14:38:53 +0100651ARM PMU PROFILING AND DEBUGGING
652M: Will Deacon <will.deacon@arm.com>
653S: Maintained
654F: arch/arm/kernel/perf_event*
655F: arch/arm/oprofile/common.c
Will Deacon6f965212011-07-01 14:38:53 +0100656F: arch/arm/include/asm/pmu.h
657F: arch/arm/kernel/hw_breakpoint.c
658F: arch/arm/include/asm/hw_breakpoint.h
659
Russell Kingd4275352009-04-16 14:05:27 +0100660ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700661M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700662L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100663W: http://www.arm.linux.org.uk/
664S: Maintained
665F: arch/arm/
666
Stephen Boydd323c2432012-10-24 11:00:29 -0700667ARM SUB-ARCHITECTURES
668L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
669S: MAINTAINED
670F: arch/arm/mach-*/
671F: arch/arm/plat-*/
672T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
673
Russell Kingcefbf4e2009-11-22 17:40:28 +0000674ARM PRIMECELL AACI PL041 DRIVER
675M: Russell King <linux@arm.linux.org.uk>
676S: Maintained
677F: sound/arm/aaci.*
678
679ARM PRIMECELL CLCD PL110 DRIVER
680M: Russell King <linux@arm.linux.org.uk>
681S: Maintained
682F: drivers/video/amba-clcd.*
683
684ARM PRIMECELL KMI PL050 DRIVER
685M: Russell King <linux@arm.linux.org.uk>
686S: Maintained
687F: drivers/input/serio/ambakmi.*
688F: include/linux/amba/kmi.h
689
Russell King2761f5c2007-05-24 06:56:08 +0200690ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200691S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700692F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200693
Russell Kingcefbf4e2009-11-22 17:40:28 +0000694ARM PRIMECELL BUS SUPPORT
695M: Russell King <linux@arm.linux.org.uk>
696S: Maintained
697F: drivers/amba/
698F: include/linux/amba/bus.h
699
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800700ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700701M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700702L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800703S: Maintained
704
Sergey Lapin9c784f92008-08-03 02:29:48 +0100705ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700706M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700707L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100708S: Maintained
709
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800710ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700711M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700712L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800713S: Maintained
714
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800715ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700716M: Andrew Victor <linux@maxim.org.za>
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800717M: Nicolas Ferre <nicolas.ferre@atmel.com>
718M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700719L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200720W: http://maxim.org.za/at91_26.html
Nicolas Ferrec1fc8672011-01-20 14:44:27 -0800721W: http://www.linux4sam.org
722S: Supported
723F: arch/arm/mach-at91/
Andrew Victord4a89c72006-12-04 13:56:21 +0100724
Rob Herring986cf2e2011-06-22 11:28:53 -0500725ARM/CALXEDA HIGHBANK ARCHITECTURE
726M: Rob Herring <rob.herring@calxeda.com>
727L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
728S: Maintained
729F: arch/arm/mach-highbank/
730
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300731ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
732M: Anton Vorontsov <avorontsov@mvista.com>
733S: Maintained
734F: arch/arm/mach-cns3xxx/
735T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
736
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800737ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100738M: Hartley Sweeten <hsweeten@visionengravers.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000739M: Ryan Mallon <rmallon@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700740L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800741S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100742F: arch/arm/mach-ep93xx/
743F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800744
745ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700746M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700747L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800748S: Maintained
749
Russell Kingd4275352009-04-16 14:05:27 +0100750ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700751M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700752L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches37417042012-03-23 15:01:58 -0700753S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +0100754F: arch/arm/include/asm/clkdev.h
Joe Perches4fa26512011-03-22 16:34:31 -0700755F: drivers/clk/clkdev.c
Russell Kingd4275352009-04-16 14:05:27 +0100756
Mike Rapoportd48134e2008-08-20 09:03:26 +0100757ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700758M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700759L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100760S: Maintained
761
Hubert Feurstein94150092009-10-07 08:36:07 +0100762ARM/CONTEC MICRO9 MACHINE SUPPORT
763M: Hubert Feurstein <hubert.feurstein@contec.at>
764S: Maintained
765F: arch/arm/mach-ep93xx/micro9.c
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700768M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769S: Maintained
770
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200771ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100772M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700773L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100774T: git git://git.berlios.de/gemini-board
775S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300776F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200777
Barry Songa990cbd2011-07-12 21:44:10 +0800778ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
779M: Barry Song <baohua.song@csr.com>
780L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
781S: Maintained
782F: arch/arm/mach-prima2/
Barry Song47ac3e42012-04-30 11:23:23 +0800783F: drivers/dma/sirf-dma.c
784F: drivers/i2c/busses/i2c-sirf.c
785F: drivers/pinctrl/pinctrl-sirf.c
786F: drivers/spi/spi-sirf.c
Barry Songa990cbd2011-07-12 21:44:10 +0800787
Russell Kingd4275352009-04-16 14:05:27 +0100788ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700789M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700790L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100791W: http://www.arm.linux.org.uk/
792S: Maintained
793F: arch/arm/mach-ebsa110/
Jeff Kirsherb955f6c2011-03-30 07:46:36 -0700794F: drivers/net/ethernet/amd/am79c961a.*
Russell Kingd4275352009-04-16 14:05:27 +0100795
Russell Kinga9da4f72008-07-12 21:42:04 +0100796ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700797M: Daniel Ribeiro <drwyrm@gmail.com>
798M: Stefan Schmidt <stefan@openezx.org>
799M: Harald Welte <laforge@openezx.org>
Paul Bolled66f18862011-04-06 22:34:00 +0200800L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100801W: http://www.openezx.org/
802S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200803T: topgit git://git.openezx.org/openezx.git
804F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100805
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200806ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100807M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700808L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100809S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700810T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300811F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200812
Russell Kingd4275352009-04-16 14:05:27 +0100813ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700814M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700815L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100816W: http://www.arm.linux.org.uk/
817S: Maintained
818F: arch/arm/include/asm/hardware/dec21285.h
819F: arch/arm/mach-footbridge/
820
Sascha Hauer86183a52008-07-24 23:50:35 +0200821ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700822M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700823L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200824S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700825T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Sascha Haueradf79292011-11-22 10:04:46 +0100826F: arch/arm/mach-imx/
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100827F: arch/arm/plat-mxc/
Uwe Kleine-Könige5dafa22012-10-04 17:12:36 -0700828F: arch/arm/configs/imx*_defconfig
Sascha Hauer86183a52008-07-24 23:50:35 +0200829
Shawn Guo8bcb97652011-10-07 22:24:18 +0800830ARM/FREESCALE IMX6
831M: Shawn Guo <shawn.guo@linaro.org>
832L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
833S: Maintained
834T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
835F: arch/arm/mach-imx/*imx6*
836
Shawn Guoa9866a02011-10-21 11:53:34 +0800837ARM/FREESCALE MXS ARM ARCHITECTURE
838M: Shawn Guo <shawn.guo@linaro.org>
839L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
840S: Maintained
841T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
842F: arch/arm/mach-mxs/
843
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800844ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700845M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700846L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800847S: Maintained
848
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100849ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700850M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700851L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100852S: Maintained
853
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200854ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700855M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel12a93f32012-02-26 12:40:19 +0100856M: Paul Parsons <lost.distance@yahoo.com>
857L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200858S: Maintained
859F: arch/arm/mach-pxa/hx4700.c
860F: arch/arm/mach-pxa/include/mach/hx4700.h
Philipp Zabel12a93f32012-02-26 12:40:19 +0100861F: sound/soc/pxa/hx4700.c
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200862
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100863ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700864M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200865W: www.jlime.com
866S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700867T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
868F: arch/arm/mach-sa1100/jornada720.c
869F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100870
Javier Martinez Canillas5e767ab2012-10-08 10:47:34 +0200871ARM/IGEP MACHINE SUPPORT
872M: Enric Balletbo i Serra <eballetbo@gmail.com>
873M: Javier Martinez Canillas <javier@dowhile0.org>
874L: linux-omap@vger.kernel.org
875L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
876S: Maintained
877F: arch/arm/mach-omap2/board-igep0020.c
878
Marek Vasut403d2972010-05-22 00:29:39 +0200879ARM/INCOME PXA270 SUPPORT
880M: Marek Vasut <marek.vasut@gmail.com>
881L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
882S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700883F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200884
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800885ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700886M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700887M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700888L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700889S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100890
891ARM/INTEL IOP33X ARM ARCHITECTURE
Dan Williams1dd83722012-08-15 19:20:02 -0700892M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700893L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700894S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800895
896ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700897M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700898M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700899L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700900S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800901
902ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700903M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700904M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700905L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700906S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800907
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800908ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700909M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700910L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800911S: Maintained
912
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200913ARM/INTEL IXP4XX ARM ARCHITECTURE
914M: Imre Kaloz <kaloz@openwrt.org>
915M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100916L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200917S: Maintained
918F: arch/arm/mach-ixp4xx/
919
Joe Perches838553c2010-10-26 14:22:59 -0700920ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100921M: Jonathan Cameron <jic23@cam.ac.uk>
922L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
923S: Maintained
924F: arch/arm/mach-pxa/stargate2.c
925F: drivers/pcmcia/pxa2xx_stargate2.c
926
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800927ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700928M: Lennert Buytenhek <kernel@wantstofly.org>
Dan Williams1dd83722012-08-15 19:20:02 -0700929M: Dan Williams <djbw@fb.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700930L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700931S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800932
933ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700934M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800936S: Maintained
937
938ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700939M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700940L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800941S: Maintained
942
Philipp Zabel3b8861712008-07-09 21:27:15 +0100943ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700944M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100945S: Maintained
946
Thomas Petazzoni75f41272012-06-01 18:50:52 +0200947ARM/Marvell Armada 370 and Armada XP SOC support
948M: Jason Cooper <jason@lakedaemon.net>
949M: Andrew Lunn <andrew@lunn.ch>
950M: Gregory Clement <gregory.clement@free-electrons.com>
951L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
952S: Maintained
953F: arch/arm/mach-mvebu/
954
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400955ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
956M: Jason Cooper <jason@lakedaemon.net>
957M: Andrew Lunn <andrew@lunn.ch>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700958L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre4f1312b2012-04-30 13:44:48 -0400959S: Maintained
960F: arch/arm/mach-dove/
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400961F: arch/arm/mach-kirkwood/
962F: arch/arm/mach-mv78xx0/
963F: arch/arm/mach-orion5x/
964F: arch/arm/plat-orion/
965
Alexander Clouterd69ac132011-04-14 15:22:02 -0700966ARM/Orion SoC/Technologic Systems TS-78xx platform support
967M: Alexander Clouter <alex@digriz.org.uk>
968L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
969W: http://www.digriz.org.uk/ts78xx/kernel
970S: Maintained
971F: arch/arm/mach-orion5x/ts78xx-*
972
Arnd Bergmannadcb0792012-09-07 12:21:56 +0000973ARM/MICREL KS8695 ARCHITECTURE
974M: Greg Ungerer <gerg@uclinux.org>
975L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
976F: arch/arm/mach-ks8695
977S: Odd Fixes
978
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200979ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700980M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700981L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200982F: arch/arm/mach-pxa/mioa701.c
983S: Maintained
984
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100985ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700986M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100987S: Maintained
988
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100989ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700990M: Alessandro Rubini <rubini@unipv.it>
Linus Walleije4651a92012-08-06 09:52:52 +0200991M: Linus Walleij <linus.walleij@linaro.org>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700992M: STEricsson <STEricsson_nomadik_linux@list.st.com>
993L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
994S: Maintained
995F: arch/arm/mach-nomadik/
996F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100997F: drivers/i2c/busses/i2c-nomadik.c
Linus Walleije4651a92012-08-06 09:52:52 +0200998T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100999
Andy Green9d762952009-05-19 06:41:42 -03001000ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001001M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -03001002L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1003W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1004S: Supported
1005
Daniel Walker0c19d212009-12-07 16:53:51 -08001006ARM/QUALCOMM MSM MACHINE SUPPORT
1007M: David Brown <davidb@codeaurora.org>
Daniel Walkerb4c9bfa2011-02-18 16:20:56 -08001008M: Daniel Walker <dwalker@fifo99.com>
Daniel Walker0c19d212009-12-07 16:53:51 -08001009M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -08001010L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -08001011F: arch/arm/mach-msm/
1012F: drivers/video/msm/
1013F: drivers/mmc/host/msm_sdcc.c
1014F: drivers/mmc/host/msm_sdcc.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001015F: drivers/tty/serial/msm_serial.h
1016F: drivers/tty/serial/msm_serial.c
Kenneth Heitke8a5700c2011-03-22 16:34:39 -07001017F: drivers/platform/msm/
Abhijeet Dharmapurikarea91db52011-04-05 14:40:56 -07001018F: drivers/*/pm8???-*
1019F: include/linux/mfd/pm8xxx/
David Brown8cd5c862012-03-09 11:39:32 -08001020T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -08001021S: Maintained
1022
Dirk Opfer8459c152005-11-06 14:27:52 +00001023ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001024M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1025M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +00001026S: Maintained
1027
Marek Vasut5d783a22009-07-16 13:26:48 +02001028ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -07001029M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +02001030L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001031W: http://hackndev.com
1032S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001033F: arch/arm/mach-pxa/include/mach/palmtx.h
1034F: arch/arm/mach-pxa/palmtx.c
1035F: arch/arm/mach-pxa/include/mach/palmt5.h
1036F: arch/arm/mach-pxa/palmt5.c
1037F: arch/arm/mach-pxa/include/mach/palmld.h
1038F: arch/arm/mach-pxa/palmld.c
1039F: arch/arm/mach-pxa/include/mach/palmte2.h
1040F: arch/arm/mach-pxa/palmte2.c
1041F: arch/arm/mach-pxa/include/mach/palmtc.h
1042F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +01001043
Joe Perchesb57fe922009-12-14 18:00:52 -08001044ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001045M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +02001046L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001047W: http://hackndev.com
1048S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -08001049F: arch/arm/mach-pxa/include/mach/palmtreo.h
1050F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +02001051
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001052ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001053M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +02001054L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07001055W: http://hackndev.com
1056S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -07001057F: arch/arm/mach-pxa/include/mach/palmz72.h
1058F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +01001059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001061M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1063S: Maintained
1064
1065ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001066M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001067L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068W: http://www.arm.linux.org.uk/
1069S: Maintained
1070
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001071ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001072M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001073L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001074S: Maintained
1075
Russell Kingd4275352009-04-16 14:05:27 +01001076ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001077M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001078L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001079W: http://www.arm.linux.org.uk/
1080S: Maintained
1081F: arch/arm/common/time-acorn.c
1082F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1083F: arch/arm/include/asm/hardware/ioc.h
1084F: arch/arm/include/asm/hardware/iomd.h
1085F: arch/arm/include/asm/hardware/memc.h
1086F: arch/arm/mach-rpc/
Jeff Kirsher1a6422f2011-11-04 12:58:41 +00001087F: drivers/net/ethernet/8390/etherh.c
Jeff Kirsher9e13fbf2011-07-15 03:18:21 -07001088F: drivers/net/ethernet/i825xx/ether1*
1089F: drivers/net/ethernet/seeq/ether3*
Russell Kingd4275352009-04-16 14:05:27 +01001090F: drivers/scsi/arm/
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001093M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094W: http://www.shark-linux.de/shark.html
1095S: Maintained
1096
Ben Dooksb21477f2009-06-13 10:46:34 +01001097ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -07001098M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -07001099M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001100L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Mark Brown7a549d72011-12-02 13:52:12 +09001101L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +01001102W: http://www.fluff.org/ben/linux/
1103S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -07001104F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +01001105F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -07001106F: arch/arm/plat-s5p/
Heiko Stuebner769bbb62011-12-02 13:51:56 +09001107F: arch/arm/mach-s3c24*/
1108F: arch/arm/mach-s3c64xx/
Ben Dookseb2ffca2011-02-01 15:52:36 -08001109F: drivers/*/*s3c2410*
1110F: drivers/*/*/*s3c2410*
Mark Brown40c76662011-12-02 13:54:25 +09001111F: drivers/spi/spi-s3c*
1112F: sound/soc/samsung/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001114ARM/S5P EXYNOS ARM ARCHITECTURES
Kukjin Kimf556cb072010-09-30 15:15:35 -07001115M: Kukjin Kim <kgene.kim@samsung.com>
1116L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1117L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1118S: Maintained
1119F: arch/arm/mach-s5p*/
Kukjin Kim0dcecae2011-04-27 15:26:49 -07001120F: arch/arm/mach-exynos*/
Kukjin Kimf556cb072010-09-30 15:15:35 -07001121
Kyungmin Park10ffa962011-03-04 17:36:26 -08001122ARM/SAMSUNG MOBILE MACHINE SUPPORT
1123M: Kyungmin Park <kyungmin.park@samsung.com>
1124L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1125S: Maintained
1126F: arch/arm/mach-s5pv210/mach-aquila.c
1127F: arch/arm/mach-s5pv210/mach-goni.c
Joe Perches38f1b4c2012-01-10 15:08:42 -08001128F: arch/arm/mach-exynos/mach-universal_c210.c
1129F: arch/arm/mach-exynos/mach-nuri.c
Kyungmin Park10ffa962011-03-04 17:36:26 -08001130
Kamil Debski3ce4ccb2012-11-28 06:14:22 -03001131ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1132M: Kyungmin Park <kyungmin.park@samsung.com>
1133M: Kamil Debski <k.debski@samsung.com>
1134L: linux-arm-kernel@lists.infradead.org
1135L: linux-media@vger.kernel.org
1136S: Maintained
1137F: drivers/media/platform/s5p-g2d/
1138
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001139ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1140M: Kyungmin Park <kyungmin.park@samsung.com>
1141M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1142L: linux-arm-kernel@lists.infradead.org
1143L: linux-media@vger.kernel.org
1144S: Maintained
1145F: arch/arm/plat-s5p/dev-fimc*
1146F: arch/arm/plat-samsung/include/plat/*fimc*
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001147F: drivers/media/platform/s5p-fimc/
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001148
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001149ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1150M: Kyungmin Park <kyungmin.park@samsung.com>
1151M: Kamil Debski <k.debski@samsung.com>
Joe Perches63059022012-06-07 14:21:10 -07001152M: Jeongtae Park <jtp.park@samsung.com>
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001153L: linux-arm-kernel@lists.infradead.org
1154L: linux-media@vger.kernel.org
1155S: Maintained
1156F: arch/arm/plat-s5p/dev-mfc.c
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001157F: drivers/media/platform/s5p-mfc/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001158
1159ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1160M: Kyungmin Park <kyungmin.park@samsung.com>
1161M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1162L: linux-arm-kernel@lists.infradead.org
1163L: linux-media@vger.kernel.org
1164S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001165F: drivers/media/platform/s5p-tv/
Marek Szyprowskie6a476f2011-08-10 06:32:29 -03001166
Paul Mundtd48d38e2010-02-08 12:50:24 +09001167ARM/SHMOBILE ARM ARCHITECTURE
1168M: Paul Mundt <lethal@linux-sh.org>
1169M: Magnus Damm <magnus.damm@gmail.com>
1170L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001171W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001172Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001173T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001174S: Supported
1175F: arch/arm/mach-shmobile/
1176F: drivers/sh/
1177
Dinh Nguyen66314222012-07-18 16:07:18 -06001178ARM/SOCFPGA ARCHITECTURE
1179M: Dinh Nguyen <dinguyen@altera.com>
1180S: Maintained
1181F: arch/arm/mach-socfpga/
1182
1183ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1184M: Dinh Nguyen <dinguyen@altera.com>
1185S: Maintained
1186F: drivers/clk/socfpga/
1187
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001188ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001189M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001190L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001191S: Maintained
1192
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001193ARM/TETON BGA MACHINE SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07001194M: "Mark F. Brown" <mark.brown314@gmail.com>
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001195L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1196S: Maintained
1197
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001198ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001199M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001200L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001201S: Maintained
1202
wanzongshun98ad6e32009-02-13 06:04:32 +01001203ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001204M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001205L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001206W: http://www.mcuos.com
1207S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001208F: arch/arm/mach-w90x900/
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001209F: drivers/input/keyboard/w90p910_keypad.c
1210F: drivers/input/touchscreen/w90p910_ts.c
1211F: drivers/watchdog/nuc900_wdt.c
Jeff Kirsher679ec0e2011-07-17 00:20:45 -07001212F: drivers/net/ethernet/nuvoton/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001213F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001214F: drivers/rtc/rtc-nuc900.c
Joe Perches9df92e62012-01-10 15:09:06 -08001215F: drivers/spi/spi-nuc900.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001216F: drivers/usb/host/ehci-w90x900.c
1217F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001218
Linus Walleij54274d72010-04-04 10:58:03 +01001219ARM/U300 MACHINE SUPPORT
Linus Walleije4651a92012-08-06 09:52:52 +02001220M: Linus Walleij <linus.walleij@linaro.org>
Linus Walleij54274d72010-04-04 10:58:03 +01001221L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1222S: Supported
1223F: arch/arm/mach-u300/
1224F: drivers/i2c/busses/i2c-stu300.c
1225F: drivers/rtc/rtc-coh901331.c
1226F: drivers/watchdog/coh901327_wdt.c
1227F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001228F: drivers/mfd/ab3100*
1229F: drivers/rtc/rtc-ab3100.c
1230F: drivers/rtc/rtc-coh901331.c
1231T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001232
Linus Walleij87572882010-12-22 09:18:29 +01001233ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001234M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleije4651a92012-08-06 09:52:52 +02001235M: Linus Walleij <linus.walleij@linaro.org>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001236L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1237S: Maintained
1238F: arch/arm/mach-ux500/
Linus Walleije4651a92012-08-06 09:52:52 +02001239F: drivers/clocksource/clksrc-dbx500-prcmu.c
Linus Walleij87572882010-12-22 09:18:29 +01001240F: drivers/dma/ste_dma40*
Linus Walleije4651a92012-08-06 09:52:52 +02001241F: drivers/hwspinlock/u8500_hsem.c
Linus Walleij87572882010-12-22 09:18:29 +01001242F: drivers/mfd/abx500*
1243F: drivers/mfd/ab8500*
Linus Walleije4651a92012-08-06 09:52:52 +02001244F: drivers/mfd/dbx500*
1245F: drivers/mfd/db8500*
1246F: drivers/pinctrl/pinctrl-nomadik*
Linus Walleij87572882010-12-22 09:18:29 +01001247F: drivers/rtc/rtc-ab8500.c
Linus Walleije4651a92012-08-06 09:52:52 +02001248F: drivers/rtc/rtc-pl031.c
Linus Walleij87572882010-12-22 09:18:29 +01001249T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001250
Russell Kingd4275352009-04-16 14:05:27 +01001251ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001252M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001253L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001254W: http://www.arm.linux.org.uk/
1255S: Maintained
1256F: arch/arm/vfp/
1257
Marek Vasute66b6d82010-03-26 06:51:32 +01001258ARM/VOIPAC PXA270 SUPPORT
1259M: Marek Vasut <marek.vasut@gmail.com>
1260L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1261S: Maintained
1262F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001263F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001264
Tony Prisk04529fe2012-07-24 04:19:37 +12001265ARM/VT8500 ARM ARCHITECTURE
1266M: Tony Prisk <linux@prisktech.co.nz>
1267L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1268S: Maintained
1269F: arch/arm/mach-vt8500/
1270F: drivers/video/vt8500lcdfb.*
1271F: drivers/video/wm8505fb*
1272F: drivers/video/wmt_ge_rops.*
1273F: drivers/tty/serial/vt8500_serial.c
1274F: drivers/rtc/rtc-vt8500-c
1275
Marek Vasute66b6d82010-03-26 06:51:32 +01001276ARM/ZIPIT Z2 SUPPORT
1277M: Marek Vasut <marek.vasut@gmail.com>
1278L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1279S: Maintained
1280F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001281F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001282
Catalin Marinas38074222012-03-05 11:49:34 +00001283ARM64 PORT (AARCH64 ARCHITECTURE)
1284M: Catalin Marinas <catalin.marinas@arm.com>
1285L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1286S: Maintained
1287F: arch/arm64/
1288
George Josephd58de032010-03-05 22:17:25 +01001289ASC7621 HARDWARE MONITOR DRIVER
1290M: George Joseph <george.joseph@fairview5.com>
1291L: lm-sensors@lm-sensors.org
1292S: Maintained
1293F: Documentation/hwmon/asc7621
1294F: drivers/hwmon/asc7621.c
1295
Corentin Charyb229ece2011-02-26 10:20:40 +01001296ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001297M: Corentin Chary <corentincj@iksaif.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05001299L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001300W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301S: Maintained
Corentin Charyb229ece2011-02-26 10:20:40 +01001302F: drivers/platform/x86/asus*.c
1303F: drivers/platform/x86/eeepc*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001305ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001306M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001307L: lm-sensors@lm-sensors.org
1308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001309F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001310
Andrew Morton953a6472008-11-06 12:53:28 -08001311ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williams1dd83722012-08-15 19:20:02 -07001312M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001313W: http://sourceforge.net/projects/xscaleiop
Dan Williams1dd83722012-08-15 19:20:02 -07001314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001315F: Documentation/crypto/async-tx-api.txt
1316F: crypto/async_tx/
1317F: drivers/dma/
1318F: include/linux/dmaengine.h
1319F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001320
Wolfram Sanga1867d32009-09-18 22:45:51 +02001321AT24 EEPROM DRIVER
1322M: Wolfram Sang <w.sang@pengutronix.de>
1323L: linux-i2c@vger.kernel.org
1324S: Maintained
1325F: drivers/misc/eeprom/at24.c
1326F: include/linux/i2c/at24.h
1327
Randy Dunlape7839f22008-10-12 16:11:45 -07001328ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001329M: "Ed L. Cashin" <ecashin@coraid.com>
Ed Cashineecdf222012-10-04 17:16:39 -07001330W: http://support.coraid.com/support/linux
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001332F: Documentation/aoe/
1333F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Joe Perches9a10a872010-12-01 09:37:55 -08001335ATHEROS ATH GENERIC UTILITIES
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001336M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Joe Perches9a10a872010-12-01 09:37:55 -08001337L: linux-wireless@vger.kernel.org
1338S: Supported
1339F: drivers/net/wireless/ath/*
1340
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001341ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001342M: Jiri Slaby <jirislaby@gmail.com>
1343M: Nick Kossifidis <mickflemm@gmail.com>
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001344M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001345L: linux-wireless@vger.kernel.org
1346L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001347W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001348S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001349F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001350
Kalle Valo12e62d62011-09-13 10:21:25 +03001351ATHEROS ATH6KL WIRELESS DRIVER
1352M: Kalle Valo <kvalo@qca.qualcomm.com>
1353L: linux-wireless@vger.kernel.org
1354W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1355T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1356S: Supported
1357F: drivers/net/wireless/ath/ath6kl/
1358
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001359ATHEROS ATH9K WIRELESS DRIVER
Luis R. Rodriguezfe8e0842011-08-23 15:07:31 -07001360M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1361M: Jouni Malinen <jouni@qca.qualcomm.com>
1362M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1363M: Senthil Balasubramanian <senthilb@qca.qualcomm.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001364L: linux-wireless@vger.kernel.org
1365L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001366W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001367S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001368F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001369
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001370CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1371M: Christian Lamparter <chunkeey@googlemail.com>
1372L: linux-wireless@vger.kernel.org
1373W: http://wireless.kernel.org/en/users/Drivers/carl9170
1374S: Maintained
1375F: drivers/net/wireless/ath/carl9170/
1376
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001377ATK0110 HWMON DRIVER
1378M: Luca Tettamanti <kronos.it@gmail.com>
1379L: lm-sensors@lm-sensors.org
1380S: Maintained
1381F: drivers/hwmon/asus_atk0110.c
1382
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001383ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001384M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001386F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001387
Chris Snook7ae115b2008-09-09 03:26:57 -04001388ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001389M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001390M: Chris Snook <chris.snook@gmail.com>
Chris Snooke443e382010-09-16 22:00:28 -07001391L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001392W: http://sourceforge.net/projects/atl1
1393W: http://atl1.sourceforge.net
1394S: Maintained
Jeff Kirsher2b133ad62011-05-20 06:55:16 -07001395F: drivers/net/ethernet/atheros/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001398M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001399L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001400L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401W: http://linux-atm.sourceforge.net
1402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001403F: drivers/atm/
1404F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Pierre Ossman272f1332007-05-14 21:25:26 +02001406ATMEL AT91 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001407M: Ludovic Desroches <ludovic.desroches@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001408L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001409W: http://www.atmel.com/products/AT91/
1410W: http://www.at91.com/
1411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001412F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001413
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001414ATMEL AT91 / AT32 MCI DRIVER
Nicolas Ferre24e15112012-02-17 15:40:18 +01001415M: Ludovic Desroches <ludovic.desroches@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001416S: Maintained
1417F: drivers/mmc/host/atmel-mci.c
1418F: drivers/mmc/host/atmel-mci-regs.h
1419
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001420ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001421M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001422S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08001423F: drivers/tty/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001424
Nicolas Ferreb414dc12012-03-26 15:50:36 +02001425ATMEL DMA DRIVER
1426M: Nicolas Ferre <nicolas.ferre@atmel.com>
1427L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1428S: Supported
1429F: drivers/dma/at_hdmac.c
1430F: drivers/dma/at_hdmac_regs.h
1431F: arch/arm/mach-at91/include/mach/at_hdmac.h
1432
Josh Wu15515542012-03-23 17:56:29 +08001433ATMEL ISI DRIVER
1434M: Josh Wu <josh.wu@atmel.com>
1435L: linux-media@vger.kernel.org
1436S: Supported
Cesar Eduardo Barrosfb1cc072012-12-11 17:49:48 -03001437F: drivers/media/platform/soc_camera/atmel-isi.c
Josh Wu15515542012-03-23 17:56:29 +08001438F: include/media/atmel-isi.h
1439
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001440ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001441M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001442L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001444F: drivers/video/atmel_lcdfb.c
1445F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001446
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001447ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001448M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001449S: Supported
Jeff Kirsher9f2f381f2011-06-18 01:52:36 -07001450F: drivers/net/ethernet/cadence/
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001451
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001452ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001453M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001454S: Supported
Joe Perches9df92e62012-01-10 15:09:06 -08001455F: drivers/spi/spi-atmel.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001456
Nicolas Ferree9cb1c52012-03-26 15:59:32 +02001457ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1458M: Nicolas Ferre <nicolas.ferre@atmel.com>
1459L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1460S: Supported
1461F: drivers/misc/atmel_tclib.c
1462F: drivers/clocksource/tcb_clksrc.c
1463
Josh Wuff2675d2012-03-23 17:56:55 +08001464ATMEL TSADCC DRIVER
1465M: Josh Wu <josh.wu@atmel.com>
1466L: linux-input@vger.kernel.org
1467S: Supported
1468F: drivers/input/touchscreen/atmel_tsadcc.c
1469
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001470ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001471M: Nicolas Ferre <nicolas.ferre@atmel.com>
1472L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001473S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001474F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001477M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001478L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479W: http://www.thekelleys.org.uk/atmel
1480W: http://atmelwlandriver.sourceforge.net/
1481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001482F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Chris Wrighta92b7b82005-07-07 18:12:23 -07001484AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001485M: Al Viro <viro@zeniv.linux.org.uk>
1486M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001487L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001488W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001489T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001491F: include/linux/audit.h
1492F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001493
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001494AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001495M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001496W: http://miguelojeda.es/auxdisplay.htm
1497W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001499F: drivers/auxdisplay/
1500F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001501
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001502AVR32 ARCHITECTURE
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001503M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1504M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001505W: http://www.atmel.com/products/AVR32/
1506W: http://avr32linux.org/
1507W: http://avrfreaks.net/
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001509F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001510
1511AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedte336f612011-06-28 08:43:29 +02001512M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1513M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001515F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001518M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001520W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001522F: include/linux/ax25.h
1523F: include/net/ax25.h
1524F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Mauro Carvalho Chehabd5269392012-11-02 12:00:30 -02001526AZ6007 DVB DRIVER
1527M: Mauro Carvalho Chehab <mchehab@redhat.com>
1528L: linux-media@vger.kernel.org
1529W: http://linuxtv.org
1530T: git git://linuxtv.org/media_tree.git
1531S: Maintained
1532F: drivers/media/usb/dvb-usb-v2/az6007.c
1533
Hans Verkuil67773762012-11-23 07:09:23 -03001534AZTECH FM RADIO RECEIVER DRIVER
1535M: Hans Verkuil <hverkuil@xs4all.nl>
1536L: linux-media@vger.kernel.org
1537T: git git://linuxtv.org/media_tree.git
1538W: http://linuxtv.org
1539S: Maintained
1540F: drivers/media/radio/radio-aztech*
1541
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001542B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001543M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001544L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001545L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001546W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001548F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001549
1550B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001551M: Larry Finger <Larry.Finger@lwfinger.net>
1552M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001553L: linux-wireless@vger.kernel.org
Rafał Miłeckied072f92012-01-29 11:59:42 +01001554L: b43-dev@lists.infradead.org
Johannes Berg491b26b2012-06-05 14:21:14 +02001555W: http://wireless.kernel.org/en/users/Drivers/b43
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001557F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001558
Richard Purdie300abeb2007-02-07 22:21:07 +00001559BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001560M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001562F: drivers/video/backlight/
1563F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001564
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001565BATMAN ADVANCED
1566M: Marek Lindner <lindner_marek@yahoo.de>
1567M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
Antonio Quartullicf9ab882012-04-02 14:56:29 +02001568M: Antonio Quartulli <ordex@autistici.org>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001569L: b.a.t.m.a.n@lists.open-mesh.org
1570W: http://www.open-mesh.org/
1571S: Maintained
1572F: net/batman-adv/
1573
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001574BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001575M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001576L: linux-hams@vger.kernel.org
1577W: http://www.baycom.org/~tom/ham/ham.html
1578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001579F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001580
1581BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001582S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001583F: Documentation/filesystems/befs.txt
1584F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001585
1586BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001587M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001589F: Documentation/filesystems/bfs.txt
1590F: fs/bfs/
1591F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001592
Bryan Wu1394f032007-05-06 14:50:22 -07001593BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001594M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001595L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001596W: http://blackfin.uclinux.org
1597S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001598F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001599
Bryan Wue190d6b2007-07-17 14:43:44 +08001600BLACKFIN EMAC DRIVER
Mike Frysinger49afa602009-05-18 04:33:07 -04001601L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001602W: http://blackfin.uclinux.org
1603S: Supported
Jeff Kirsher7b35f032011-06-18 00:01:26 -07001604F: drivers/net/ethernet/adi/
Bryan Wue190d6b2007-07-17 14:43:44 +08001605
Mike Frysinger566da5b2007-06-11 15:31:30 +08001606BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001607M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001608L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001609W: http://blackfin.uclinux.org
1610S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001611F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001612
Mike Frysinger936ed492010-03-10 15:20:38 -08001613BLACKFIN SDH DRIVER
Sonic Zhang109ec8c2012-08-08 12:16:08 +08001614M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger936ed492010-03-10 15:20:38 -08001615L: uclinux-dist-devel@blackfin.uclinux.org
1616W: http://blackfin.uclinux.org
1617S: Supported
1618F: drivers/mmc/host/bfin_sdh.c
1619
Bryan Wu1394f032007-05-06 14:50:22 -07001620BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001621M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001622L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001623W: http://blackfin.uclinux.org
1624S: Supported
Joe Perches84602412012-01-10 15:09:04 -08001625F: drivers/tty/serial/bfin_uart.c
Bryan Wu1394f032007-05-06 14:50:22 -07001626
Bryan Wu1e6d3202007-07-15 02:50:02 +08001627BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001628M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001629L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001630W: http://blackfin.uclinux.org
1631S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001632F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001633
Bryan Wud24ecfc2007-05-01 23:26:32 +02001634BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001635M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001636L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001637W: http://blackfin.uclinux.org/
1638S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001639F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001640
Jan-Simon Möllerb54cf352012-07-20 16:49:06 +08001641BLINKM RGB LED DRIVER
1642M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1643S: Maintained
1644F: drivers/leds/leds-blinkm.c
1645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001647M: Jens Axboe <axboe@kernel.dk>
Joe Perches08deed12012-03-23 15:01:57 -07001648T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001650F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Joern Engel2b54aae2008-02-06 01:38:02 -08001652BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001653M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001654L: linux-mtd@lists.infradead.org
1655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001656F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001657
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001658BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001659M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001660M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001661M: Johan Hedberg <johan.hedberg@gmail.com>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001662L: linux-bluetooth@vger.kernel.org
1663W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001664T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1665T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001667F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001668
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001670M: Marcel Holtmann <marcel@holtmann.org>
Gustavo Padovan960d4d12012-03-15 15:17:10 -07001671M: Gustavo Padovan <gustavo@padovan.org>
Johan Hedbergeb491ec2012-03-15 15:17:11 -07001672M: Johan Hedberg <johan.hedberg@gmail.com>
Pavel Machek781c2842008-03-20 15:41:02 -07001673L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001674W: http://www.bluez.org/
Marcel Holtmann22e7a422012-03-27 18:21:00 +02001675T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1676T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001678F: net/bluetooth/
1679F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001682M: Jay Vosburgh <fubar@us.ibm.com>
Jay Vosburgh4cd72c62011-03-03 10:43:10 +00001683M: Andy Gospodarek <andy@greyhouse.net>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001684L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001685W: http://sourceforge.net/projects/bonding/
1686S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001687F: drivers/net/bonding/
1688F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Gary Zambrano39105892006-06-22 17:26:20 -07001690BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001691M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001692L: netdev@vger.kernel.org
1693S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001694F: drivers/net/ethernet/broadcom/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001695
Michael Chan948c51e2006-06-04 02:51:39 -07001696BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001697M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001698L: netdev@vger.kernel.org
1699S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001700F: drivers/net/ethernet/broadcom/bnx2.*
1701F: drivers/net/ethernet/broadcom/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001702
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001703BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001704M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001705L: netdev@vger.kernel.org
1706S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001707F: drivers/net/ethernet/broadcom/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001708
Stephen Warrenf680f252012-09-15 00:18:54 -06001709BROADCOM BCM2835 ARM ARCHICTURE
1710M: Stephen Warren <swarren@wwwdotorg.org>
1711L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1712T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1713S: Maintained
1714F: arch/arm/mach-bcm2835/
1715F: arch/arm/boot/dts/bcm2835*
1716F: arch/arm/configs/bcm2835_defconfig
1717F: drivers/*/*bcm2835*
1718
Michael Chan948c51e2006-06-04 02:51:39 -07001719BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001720M: Matt Carlson <mcarlson@broadcom.com>
1721M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001722L: netdev@vger.kernel.org
1723S: Supported
Jeff Kirsheradfc5212011-04-07 06:03:04 -07001724F: drivers/net/ethernet/broadcom/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001725
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001726BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1727M: Brett Rudley <brudley@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001728M: Roland Vossen <rvossen@broadcom.com>
1729M: Arend van Spriel <arend@broadcom.com>
Roland Vossen85d63682011-06-01 13:44:56 +02001730M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1731M: Kan Yan <kanyan@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001732L: linux-wireless@vger.kernel.org
Arend van Spriel56151712012-06-14 14:16:27 +02001733L: brcm80211-dev-list@broadcom.com
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001734S: Supported
Joe Perchesf62ebdd2011-12-09 00:12:52 -08001735F: drivers/net/wireless/brcm80211/
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001736
Bhanu Prakash Gollapudi9958d6f2011-05-27 11:48:10 -07001737BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1738M: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1739L: linux-scsi@vger.kernel.org
1740S: Supported
1741F: drivers/scsi/bnx2fc/
1742
Rafał Miłeckic9678d82012-01-13 22:55:05 +01001743BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1744M: Rafał Miłecki <zajec5@gmail.com>
1745L: linux-wireless@vger.kernel.org
1746S: Maintained
1747F: drivers/bcma/
1748F: include/linux/bcma/
1749
Jing Huang7725ccf2009-09-23 17:46:15 -07001750BROCADE BFA FC SCSI DRIVER
Krishna Gudipatiad07b4a2012-04-09 18:41:43 -07001751M: Krishna C Gudipati <kgudipat@brocade.com>
Joe Perches455518e2009-11-11 14:26:10 -08001752L: linux-scsi@vger.kernel.org
1753S: Supported
1754F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001755
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001756BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1757M: Rasesh Mody <rmody@brocade.com>
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001758L: netdev@vger.kernel.org
1759S: Supported
Jeff Kirsherf844a0e2011-05-13 01:00:03 -07001760F: drivers/net/ethernet/brocade/bna/
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001761
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001762BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001763M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001764L: linux-scsi@vger.kernel.org
1765S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001766F: block/bsg.c
1767F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001768
Clemens Ladischaf399172011-01-10 16:32:54 +01001769BT87X AUDIO DRIVER
1770M: Clemens Ladisch <clemens@ladisch.de>
1771L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1772T: git git://git.alsa-project.org/alsa-kernel.git
1773S: Maintained
1774F: Documentation/sound/alsa/Bt87x.txt
1775F: sound/pci/bt87x.c
1776
Michael Bueschff1d5c22008-07-25 01:46:10 -07001777BT8XXGPIO DRIVER
Michael Büscheb032b92011-07-04 20:50:05 +02001778M: Michael Buesch <m@bues.ch>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001779W: http://bu3sch.de/btgpio.php
1780S: Maintained
Joe Perches72dbb702012-01-10 15:08:46 -08001781F: drivers/gpio/gpio-bt8xx.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001782
Joe Percheseb1eb042009-01-21 10:49:16 -05001783BTRFS FILE SYSTEM
Liu Bo9c106402012-06-14 02:23:25 -06001784M: Chris Mason <chris.mason@fusionio.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001785L: linux-btrfs@vger.kernel.org
1786W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001787Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Liu Bo9c106402012-06-14 02:23:25 -06001788T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001790F: Documentation/filesystems/btrfs.txt
1791F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001794M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001795L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001796W: http://linuxtv.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001797T: git git://linuxtv.org/media_tree.git
Mauro Carvalho Chehabf96236e2012-11-02 11:14:18 -02001798S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07001799F: Documentation/video4linux/bttv/
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001800F: drivers/media/pci/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Clemens Ladischaf399172011-01-10 16:32:54 +01001802C-MEDIA CMI8788 DRIVER
1803M: Clemens Ladisch <clemens@ladisch.de>
1804L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1805T: git git://git.alsa-project.org/alsa-kernel.git
1806S: Maintained
1807F: sound/pci/oxygen/
1808
Mark Salter21413552011-10-04 11:21:42 -04001809C6X ARCHITECTURE
1810M: Mark Salter <msalter@redhat.com>
1811M: Aurelien Jacquiot <a-jacquiot@ti.com>
1812L: linux-c6x-dev@linux-c6x.org
1813W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1814S: Maintained
1815F: arch/c6x/
1816
David Howellsa5432f5a2009-04-20 15:46:45 +01001817CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001818M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01001819L: linux-cachefs@redhat.com
1820S: Supported
1821F: Documentation/filesystems/caching/cachefiles.txt
1822F: fs/cachefiles/
1823
Hans Verkuilc815ca32012-11-23 07:05:54 -03001824CADET FM/AM RADIO RECEIVER DRIVER
1825M: Hans Verkuil <hverkuil@xs4all.nl>
1826L: linux-media@vger.kernel.org
1827T: git git://linuxtv.org/media_tree.git
1828W: http://linuxtv.org
1829S: Maintained
1830F: drivers/media/radio/radio-cadet*
1831
Jonathan Corbet77d51402007-03-22 19:44:17 -03001832CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001833M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001834L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02001835T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001837F: Documentation/video4linux/cafe_ccic
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03001838F: drivers/media/platform/marvell-ccic/
Jonathan Corbet77d51402007-03-22 19:44:17 -03001839
Joe Perches201b6ba2010-09-07 20:33:24 +00001840CAIF NETWORK LAYER
1841M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1842L: netdev@vger.kernel.org
1843S: Supported
1844F: Documentation/networking/caif/
1845F: drivers/net/caif/
1846F: include/linux/caif/
1847F: include/net/caif/
1848F: net/caif/
1849
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001850CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001851M: Muli Ben-Yehuda <muli@il.ibm.com>
1852M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001853L: discuss@x86-64.org
1854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001855F: arch/x86/kernel/pci-calgary_64.c
1856F: arch/x86/kernel/tce_64.c
1857F: arch/x86/include/asm/calgary.h
1858F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001859
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001860CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001861M: Oliver Hartkopp <socketcan@hartkopp.net>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001862L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001863W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001864T: git git://gitorious.org/linux-can/linux-can-next.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001865S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001866F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001867F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001868F: include/linux/can/core.h
1869F: include/linux/can/bcm.h
1870F: include/linux/can/raw.h
Oliver Hartkoppc49b82d2011-11-02 10:55:13 +00001871F: include/linux/can/gw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001872
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001873CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001874M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkoppec782132012-01-03 08:40:28 +00001875M: Marc Kleine-Budde <mkl@pengutronix.de>
Marc Kleine-Budde1caa60b2011-10-17 09:31:59 +00001876L: linux-can@vger.kernel.org
Oliver Hartkoppec782132012-01-03 08:40:28 +00001877W: http://gitorious.org/linux-can
Oliver Hartkopp405cc272012-01-03 14:57:43 -05001878T: git git://gitorious.org/linux-can/linux-can-next.git
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001879S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001880F: drivers/net/can/
1881F: include/linux/can/dev.h
1882F: include/linux/can/error.h
1883F: include/linux/can/netlink.h
1884F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001885
James Morris95d16c72012-03-16 12:05:48 +11001886CAPABILITIES
1887M: Serge Hallyn <serge.hallyn@canonical.com>
1888L: linux-security-module@vger.kernel.org
Joe Perches63059022012-06-07 14:21:10 -07001889S: Supported
James Morris95d16c72012-03-16 12:05:48 +11001890F: include/linux/capability.h
1891F: security/capability.c
Joe Perches63059022012-06-07 14:21:10 -07001892F: security/commoncap.c
James Morris38a94112012-04-09 11:03:36 +10001893F: kernel/capability.c
James Morris95d16c72012-03-16 12:05:48 +11001894
Arnd Bergmannb8154542008-05-16 11:10:59 +02001895CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001896M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001897L: linuxppc-dev@lists.ozlabs.org
1898L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001899W: http://www.ibm.com/developerworks/power/cell/
1900S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001901F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001902F: arch/powerpc/include/asm/spu*.h
1903F: arch/powerpc/oprofile/*cell*
1904F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001905
Sage Weil9030aaf2009-10-06 11:31:15 -07001906CEPH DISTRIBUTED FILE SYSTEM CLIENT
Sage Weil09d90322012-07-30 16:27:48 -07001907M: Sage Weil <sage@inktank.com>
Sage Weil82593f82010-03-29 09:53:23 -07001908L: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07001909W: http://ceph.com/
Sage Weilfb99f882009-12-03 15:04:08 -08001910T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001911S: Supported
1912F: Documentation/filesystems/ceph.txt
1913F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001914F: net/ceph
1915F: include/linux/ceph
Sage Weil09d90322012-07-30 16:27:48 -07001916F: include/linux/crush
Sage Weil9030aaf2009-10-06 11:31:15 -07001917
David Vrabel18332a82008-09-17 16:34:44 +01001918CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001919L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001920S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001921F: Documentation/usb/WUSB-Design-overview.txt
1922F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001923F: drivers/usb/host/hwa-hc.c
1924F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001925F: drivers/usb/wusbcore/
1926F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001927
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001928CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001929M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001930W: http://miguelojeda.es/auxdisplay.htm
1931W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001933F: drivers/auxdisplay/cfag12864b.c
1934F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001935
1936CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001937M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001938W: http://miguelojeda.es/auxdisplay.htm
1939W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001941F: drivers/auxdisplay/cfag12864bfb.c
1942F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001943
Johannes Berg704232c2007-04-23 12:20:05 -07001944CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001945M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001946L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02001947W: http://wireless.kernel.org/
1948T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1949T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Johannes Berg704232c2007-04-23 12:20:05 -07001950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001951F: include/linux/nl80211.h
1952F: include/net/cfg80211.h
1953F: net/wireless/*
1954X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001955
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001956CHAR and MISC DRIVERS
1957M: Arnd Bergmann <arnd@arndb.de>
Greg KH879a5a02012-01-31 20:02:00 -08001958M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001959T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
Greg KH879a5a02012-01-31 20:02:00 -08001960S: Supported
Greg Kroah-Hartman46e64262011-10-30 07:34:04 -07001961F: drivers/char/*
1962F: drivers/misc/*
1963
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001964CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001965M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001966S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001967F: scripts/checkpatch.pl
Andy Whitcroft0a920b5b2007-06-01 00:46:48 -07001968
Harry Weif8407f262011-02-25 14:44:15 -08001969CHINESE DOCUMENTATION
1970M: Harry Wei <harryxiyou@gmail.com>
1971L: xiyoulinuxkernelgroup@googlegroups.com
1972L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
1973S: Maintained
1974F: Documentation/zh_CN/
1975
Alexander Shishkin2721ea22012-05-11 17:25:59 +03001976CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
1977M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
1978L: linux-usb@vger.kernel.org
1979S: Maintained
1980F: drivers/usb/chipidea/
1981
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001982CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri2360d2e2011-02-04 16:17:26 +00001983M: Christian Benvenuti <benve@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001984M: Roopa Prabhu <roprabhu@cisco.com>
Neel Patel5c6652f2012-02-03 08:25:25 +00001985M: Neel Patel <neepatel@cisco.com>
1986M: Nishank Trivedi <nistrive@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001987S: Supported
Jeff Kirshera6a55802011-05-13 22:20:35 -07001988F: drivers/net/ethernet/cisco/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001989
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001990CIRRUS LOGIC EP93XX ETHERNET DRIVER
H Hartley Sweeten55879122011-06-09 15:00:21 -07001991M: Hartley Sweeten <hsweeten@visionengravers.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001992L: netdev@vger.kernel.org
1993S: Maintained
Jeff Kirsher57d0b7a2011-07-16 23:50:52 -07001994F: drivers/net/ethernet/cirrus/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001995
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001996CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001997M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001998L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002000F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002001
Timur Tabid9e9d822008-04-24 08:45:26 +10002002CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002003M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07002004L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002005S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002006F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10002007
Konrad Rzeszutek Wilk94574d92012-03-19 11:47:18 -04002008CLEANCACHE API
2009M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2010L: linux-kernel@vger.kernel.org
2011S: Maintained
2012F: mm/cleancache.c
2013F: include/linux/cleancache.h
2014
Russell Kingd4275352009-04-16 14:05:27 +01002015CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07002016M: Russell King <linux@arm.linux.org.uk>
Joe Perches37417042012-03-23 15:01:58 -07002017S: Maintained
Russell Kingd4275352009-04-16 14:05:27 +01002018F: include/linux/clk.h
2019
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002020CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002021M: Abhijeet Joglekar <abjoglek@cisco.com>
Abhijeet Joglekard7e01dc2011-06-13 21:21:17 -07002022M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
2023M: Brian Uchino <buchino@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002024L: linux-scsi@vger.kernel.org
2025S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07002026F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07002027
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002028CMPC ACPI DRIVER
2029M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2030M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd09448532010-02-11 10:40:13 -05002031L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08002032S: Supported
2033F: drivers/platform/x86/classmate-laptop.c
2034
Nicolas Palix74425ee2010-06-06 17:15:01 +02002035COCCINELLE/Semantic Patches (SmPL)
Nicolas Palix26de9c22012-09-20 22:52:42 +02002036M: Julia Lawall <Julia.Lawall@lip6.fr>
Nicolas Palix74425ee2010-06-06 17:15:01 +02002037M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palix26de9c22012-09-20 22:52:42 +02002038M: Nicolas Palix <nicolas.palix@imag.fr>
2039L: cocci@systeme.lip6.fr (moderated for non-subscribers)
Nicolas Palix74425ee2010-06-06 17:15:01 +02002040W: http://coccinelle.lip6.fr/
2041S: Supported
2042F: scripts/coccinelle/
2043F: scripts/coccicheck
2044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002046M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047M: coda@cs.cmu.edu
2048L: codalist@coda.cs.cmu.edu
2049W: http://www.coda.cs.cmu.edu/
2050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002051F: Documentation/filesystems/coda.txt
2052F: fs/coda/
2053F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Mike Turquette7704add2012-05-02 18:37:45 -07002055COMMON CLK FRAMEWORK
2056M: Mike Turquette <mturquette@ti.com>
2057M: Mike Turquette <mturquette@linaro.org>
2058L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2059T: git git://git.linaro.org/people/mturquette/linux.git
2060S: Maintained
2061F: drivers/clk/clk.c
2062F: drivers/clk/clk-*
2063F: include/linux/clk-pr*
2064
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002065COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07002066M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04002067L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08002068L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002069W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002070Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07002071T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002072S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002073F: Documentation/filesystems/cifs.txt
2074F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002077M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002078L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002080F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002083M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002084L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002086F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
2088COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002089M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07002090L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07002091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002092F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002094COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002095M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05002096L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002098F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07002099
Simon Arlott949be0f2007-03-06 02:47:46 -08002100CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002101M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02002102L: accessrunner-general@lists.sourceforge.net
2103W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08002104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002105F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08002106
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002107CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08002108M: Joel Becker <jlbec@evilplan.org>
2109T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002110S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002111F: fs/configfs/
2112F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002113
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002114CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07002115M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07002116L: netdev@vger.kernel.org
2117S: Maintained
2118F: drivers/connector/
2119
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002120CONTROL GROUPS (CGROUPS)
Paul Menage860ca0e2011-11-18 14:22:09 -08002121M: Tejun Heo <tj@kernel.org>
Li Zefanad50c152012-03-29 08:53:30 -07002122M: Li Zefan <lizefan@huawei.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002123L: containers@lists.linux-foundation.org
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08002124L: cgroups@vger.kernel.org
Paul Menage860ca0e2011-11-18 14:22:09 -08002125T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002127F: include/linux/cgroup*
2128F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07002129F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08002130
Rudolf Marekbebe4672007-05-08 17:22:02 +02002131CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02002132M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02002133L: lm-sensors@lm-sensors.org
2134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002135F: Documentation/hwmon/coretemp
2136F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02002137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002139M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140W: http://www.fi.muni.cz/~kas/cosa/
2141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002142F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
Florian Fainelli4371ee32009-06-01 02:43:17 -07002144CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002145M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07002146L: netdev@vger.kernel.org
2147S: Maintained
Jeff Kirsherb544dba2011-06-14 12:56:50 -07002148F: drivers/net/ethernet/ti/cpmac.c
Florian Fainelli4371ee32009-06-01 02:43:17 -07002149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150CPU FREQUENCY DRIVERS
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002151M: Rafael J. Wysocki <rjw@sisk.pl>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04002152L: cpufreq@vger.kernel.org
Rafael J. Wysockia6c072c2012-05-11 21:35:45 +02002153L: linux-pm@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002155F: drivers/cpufreq/
2156F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002159M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002161F: arch/x86/kernel/cpuid.c
2162F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Dominik Brodowski7fe2f632011-03-30 16:30:11 +02002164CPU POWER MONITORING SUBSYSTEM
2165M: Dominik Brodowski <linux@dominikbrodowski.net>
2166M: Thomas Renninger <trenn@suse.de>
2167S: Maintained
2168F: tools/power/cpupower
2169
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002170CPUSETS
Wanlong Gao47331232011-08-25 15:59:10 -07002171M: Paul Menage <paul@paulmenage.org>
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002172W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07002173W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002174S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002175F: Documentation/cgroups/cpusets.txt
2176F: include/linux/cpuset.h
2177F: kernel/cpuset.c
Paul Jacksoned90fb4a2005-09-27 21:45:37 -07002178
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01002180W: http://sourceforge.net/projects/cramfs/
2181S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002182F: Documentation/filesystems/cramfs.txt
2183F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
2185CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002186M: Mikael Starvik <starvik@axis.com>
2187M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02002188L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189W: http://developer.axis.com
2190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002191F: arch/cris/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002192F: drivers/tty/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
2194CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07002195M: Herbert Xu <herbert@gondor.apana.org.au>
2196M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002198T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002200F: Documentation/crypto/
2201F: arch/*/crypto/
2202F: crypto/
2203F: drivers/crypto/
2204F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Neil Horman5b07bd52009-02-05 16:03:04 +11002206CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002207M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11002208L: linux-crypto@vger.kernel.org
2209S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07002210F: crypto/ansi_cprng.c
2211F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11002212
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002213CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07002214M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002216F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01002217
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002218CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03002219M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02002220L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002221L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02002222T: git git://linuxtv.org/media_tree.git
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002223W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07002224W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002226F: Documentation/video4linux/cx18.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03002227F: drivers/media/pci/cx18/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02002228F: include/uapi/linux/ivtv*
Hans Verkuil6d8425b12008-05-05 18:25:22 -03002229
Hans Verkuil3f101d92012-11-23 07:00:02 -03002230CX2341X MPEG ENCODER HELPER MODULE
2231M: Hans Verkuil <hverkuil@xs4all.nl>
2232L: linux-media@vger.kernel.org
2233T: git git://linuxtv.org/media_tree.git
2234W: http://linuxtv.org
2235S: Maintained
2236F: drivers/media/i2c/cx2341x*
2237F: include/media/cx2341x*
2238
Mauro Carvalho Chehab20357572012-11-02 11:33:44 -02002239CX88 VIDEO4LINUX DRIVER
2240M: Mauro Carvalho Chehab <mchehab@redhat.com>
2241L: linux-media@vger.kernel.org
2242W: http://linuxtv.org
2243T: git git://linuxtv.org/media_tree.git
2244S: Odd fixes
2245F: Documentation/video4linux/cx88/
2246F: drivers/media/pci/cx88/
2247
Antti Palosaari91952bc2012-10-01 12:28:46 -03002248CXD2820R MEDIA DRIVER
2249M: Antti Palosaari <crope@iki.fi>
2250L: linux-media@vger.kernel.org
2251W: http://linuxtv.org/
2252W: http://palosaari.fi/linux/
2253Q: http://patchwork.linuxtv.org/project/linux-media/list/
2254T: git git://linuxtv.org/anttip/media_tree.git
2255S: Maintained
2256F: drivers/media/dvb-frontends/cxd2820r*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002257
Steve Wisee5ec3782008-05-20 14:06:33 -07002258CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002259M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07002260L: netdev@vger.kernel.org
2261W: http://www.chelsio.com
2262S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002263F: drivers/net/ethernet/chelsio/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002264
2265CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07002266M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002267L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07002268W: http://www.openfabrics.org
2269S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002270F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07002271
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002272CXGB4 ETHERNET DRIVER (CXGB4)
2273M: Dimitris Michailidis <dm@chelsio.com>
2274L: netdev@vger.kernel.org
2275W: http://www.chelsio.com
2276S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002277F: drivers/net/ethernet/chelsio/cxgb4/
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002278
2279CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2280M: Steve Wise <swise@chelsio.com>
2281L: linux-rdma@vger.kernel.org
2282W: http://www.openfabrics.org
2283S: Supported
2284F: drivers/infiniband/hw/cxgb4/
2285
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002286CXGB4VF ETHERNET DRIVER (CXGB4VF)
2287M: Casey Leedom <leedom@chelsio.com>
2288L: netdev@vger.kernel.org
2289W: http://www.chelsio.com
2290S: Supported
Jeff Kirsherf7917c02011-04-07 06:57:17 -07002291F: drivers/net/ethernet/chelsio/cxgb4vf/
Casey Leedom5c20a5c2010-07-19 17:55:33 -07002292
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002293STMMAC ETHERNET DRIVER
2294M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2295L: netdev@vger.kernel.org
2296W: http://www.stlinux.com
2297S: Supported
Jeff Kirsher7ac66532011-05-16 00:05:19 -07002298F: drivers/net/ethernet/stmicro/stmmac/
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08002299
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002301M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07002302L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303W: http://www.arm.linux.org.uk/
2304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002305F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07002306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002308M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002309W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002311F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
2313CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002315S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07002316F: drivers/tty/cyclades.c
Joe Perches679655d2009-04-07 20:44:32 -07002317F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
2319CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08002321S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002322F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002324CYTTSP TOUCHSCREEN DRIVER
Joe Perches63059022012-06-07 14:21:10 -07002325M: Javier Martinez Canillas <javier@dowhile0.org>
2326L: linux-input@vger.kernel.org
2327S: Maintained
2328F: drivers/input/touchscreen/cyttsp*
2329F: include/linux/input/cyttsp.h
Javier Martinez Canillase3ae35252012-03-04 09:26:14 -08002330
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002332M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333W: http://yaina.de/jreuter/
2334W: http://www.qsl.net/dl1bke/
2335L: linux-hams@vger.kernel.org
2336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002337F: net/ax25/af_ax25.c
2338F: net/ax25/ax25_dev.c
2339F: net/ax25/ax25_ds_*
2340F: net/ax25/ax25_in.c
2341F: net/ax25/ax25_out.c
2342F: net/ax25/ax25_timer.c
2343F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002345DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002346L: netdev@vger.kernel.org
Joe Perches5ff77422011-05-24 17:13:22 -07002347S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002348F: Documentation/networking/dmfe.txt
Joe Perches0f04e2a2012-01-10 15:08:56 -08002349F: drivers/net/ethernet/dec/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002350
2351DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07002352M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002353W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07002354M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002356F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002357
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358DC395x SCSI driver
Oliver Neukum61eee9a2012-08-01 14:32:55 +02002359M: Oliver Neukum <oliver@neukum.org>
Joe Perches8b58be82009-07-29 15:04:30 -07002360M: Ali Akcaagac <aliakc@web.de>
2361M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002363L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364L: http://lists.twibble.org/mailman/listinfo/dc395x/
2365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002366F: Documentation/scsi/dc395x.txt
2367F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002369DCCP PROTOCOL
Arnaldo Carvalho de Meloa89d0302011-02-26 16:28:54 +00002370M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002371L: dccp@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002372W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002374F: include/linux/dccp.h
2375F: include/linux/tfrc.h
2376F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002377
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379W: http://linux-decnet.sourceforge.net
2380L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002381S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002382F: Documentation/networking/decnet.txt
2383F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
2385DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002386M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387S: Maintained
Jeff Kirsher33f810b2011-07-31 00:06:29 -07002388F: drivers/net/fddi/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002390DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002391M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05002392L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002394F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002395
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002397M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398W: http://www.debian.org/~dz/i8k/
2399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002400F: drivers/char/i8k.c
2401F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Doug Warzecha90563ec2005-09-06 15:17:15 -07002403DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002404M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002406F: Documentation/dcdbas.txt
2407F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002408
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002409DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002410M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002411S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002412F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002413
Felipe Balbi94ab23d2011-08-19 18:10:59 +03002414DESIGNWARE USB3 DRD IP DRIVER
2415M: Felipe Balbi <balbi@ti.com>
2416L: linux-usb@vger.kernel.org
2417L: linux-omap@vger.kernel.org
2418T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2419S: Maintained
2420F: drivers/usb/dwc3/
2421
Kyungmin Park89d07762012-01-10 15:09:09 -08002422DEVICE FREQUENCY (DEVFREQ)
2423M: MyungJoo Ham <myungjoo.ham@samsung.com>
2424M: Kyungmin Park <kyungmin.park@samsung.com>
2425L: linux-kernel@vger.kernel.org
2426S: Maintained
2427F: drivers/devfreq/
2428
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002430M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432S: Maintained
2433
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002434DEVICE-MAPPER (LVM)
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002435M: Alasdair Kergon <agk@redhat.com>
2436M: dm-devel@redhat.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002437L: dm-devel@redhat.com
2438W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002439Q: http://patchwork.kernel.org/project/dm-devel/list/
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002440T: quilt http://people.redhat.com/agk/patches/linux/editing/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002442F: Documentation/device-mapper/
2443F: drivers/md/dm*
Alasdair G Kergon854ecaa2012-03-28 18:41:23 +01002444F: drivers/md/persistent-data/
Joe Perches679655d2009-04-07 20:44:32 -07002445F: include/linux/device-mapper.h
2446F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002447
Guenter Roeck335d7c52011-01-26 11:45:49 -08002448DIOLAN U2C-12 I2C DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07002449M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck335d7c52011-01-26 11:45:49 -08002450L: linux-i2c@vger.kernel.org
2451S: Maintained
2452F: drivers/i2c/busses/i2c-diolan-u2c.c
2453
Randy Dunlape7839f22008-10-12 16:11:45 -07002454DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002455M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002457F: Documentation/filesystems/dnotify.txt
2458F: fs/notify/dnotify/
2459F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
2461DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002462M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2464W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2465W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2466S: Maintained
2467
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002468DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002469M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002471F: Documentation/filesystems/quota.txt
2472F: fs/quota/
2473F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
Bernie Thompson702686a2012-03-01 13:52:13 -08002475DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2476M: Bernie Thompson <bernie@plugable.com>
2477L: linux-fbdev@vger.kernel.org
2478S: Maintained
2479W: http://plugable.com/category/projects/udlfb/
2480F: drivers/video/udlfb.c
2481F: include/video/udlfb.h
2482F: Documentation/fb/udlfb.txt
2483
Randy Dunlape7839f22008-10-12 16:11:45 -07002484DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002485M: Christine Caulfield <ccaulfie@redhat.com>
2486M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002487L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002488W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002489T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002490S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002491F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002492
Sumit Semwal53b6b3e2012-01-20 15:04:25 +05302493DMA BUFFER SHARING FRAMEWORK
2494M: Sumit Semwal <sumit.semwal@linaro.org>
2495S: Maintained
2496L: linux-media@vger.kernel.org
2497L: dri-devel@lists.freedesktop.org
2498L: linaro-mm-sig@lists.linaro.org
2499F: drivers/base/dma-buf*
2500F: include/linux/dma-buf*
2501F: Documentation/dma-buf-sharing.txt
2502T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2503
Dan Williamsb3e5f262007-08-07 10:26:35 -07002504DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Dan Williams4abed0a2011-02-14 00:42:08 -08002505M: Vinod Koul <vinod.koul@intel.com>
Dan Williams1dd83722012-08-15 19:20:02 -07002506M: Dan Williams <djbw@fb.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002507S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002508F: drivers/dma/
2509F: include/linux/dma*
Vinod Koul5dbd05d2011-05-25 23:36:30 +05302510T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2511T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002512
Juerg Haefligerb8250372007-06-09 10:11:16 -04002513DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002514M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002515L: lm-sensors@lm-sensors.org
2516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002517F: Documentation/hwmon/dme1737
2518F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002519
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002520DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002521M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002522L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002523S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002524F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002525
Joe Perches7d2c86b2009-04-07 20:59:01 -07002526DOCUMENTATION
Randy Dunlap5191d562012-04-16 19:21:39 -07002527M: Rob Landley <rob@landley.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002528L: linux-doc@vger.kernel.org
Randy Dunlap5191d562012-04-16 19:21:39 -07002529T: TBD
Jean Delvare795fb7e2008-09-20 12:33:08 +02002530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002531F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002532
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002534M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535L: blinux-list@redhat.com
2536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002537F: drivers/char/dtlk.c
2538F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002540DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002541M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002542L: linux-scsi@vger.kernel.org
2543W: http://www.adaptec.com/
2544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002545F: drivers/scsi/dpt*
2546F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002547
Philipp Reisnerb411b362009-09-25 16:07:19 -07002548DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002549P: Philipp Reisner
2550P: Lars Ellenberg
2551M: drbd-dev@lists.linbit.com
2552L: drbd-user@lists.linbit.com
2553W: http://www.drbd.org
2554T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2555T: git git://git.drbd.org/drbd-8.3.git
2556S: Supported
2557F: drivers/block/drbd/
2558F: lib/lru_cache.c
2559F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002560
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002561DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Greg KH879a5a02012-01-31 20:02:00 -08002562M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches08deed12012-03-23 15:01:57 -07002563T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002565F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002566F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002567F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002568F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002569F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002570F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002571F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
2573DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002574M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002575L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002576T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002578F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002579F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
Chris Wilson8daf7472010-09-28 14:07:26 +01002581INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
Daniel Vetter38e490f2012-05-08 13:19:12 +02002582M: Daniel Vetter <daniel.vetter@ffwll.ch>
Joe Perchescc840f72010-11-23 22:36:42 -08002583L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002584L: dri-devel@lists.freedesktop.org
Daniel Vetter38e490f2012-05-08 13:19:12 +02002585T: git git://people.freedesktop.org/~danvet/drm-intel
Chris Wilson8daf7472010-09-28 14:07:26 +01002586S: Supported
2587F: drivers/gpu/drm/i915
2588F: include/drm/i915*
2589
Kyungmin Park398a6d42011-11-02 11:33:16 +09002590DRM DRIVERS FOR EXYNOS
2591M: Inki Dae <inki.dae@samsung.com>
Inki Daef1501302012-01-17 14:08:55 +09002592M: Joonyoung Shim <jy0922.shim@samsung.com>
2593M: Seung-Woo Kim <sw0312.kim@samsung.com>
2594M: Kyungmin Park <kyungmin.park@samsung.com>
Kyungmin Park398a6d42011-11-02 11:33:16 +09002595L: dri-devel@lists.freedesktop.org
Inki Dae25a58032012-10-30 16:08:05 +09002596T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
Kyungmin Park398a6d42011-11-02 11:33:16 +09002597S: Supported
2598F: drivers/gpu/drm/exynos
2599F: include/drm/exynos*
2600
Alexey Klimov598df1a2012-11-28 17:16:32 -03002601DSBR100 USB FM RADIO DRIVER
2602M: Alexey Klimov <klimov.linux@gmail.com>
2603L: linux-media@vger.kernel.org
2604T: git git://linuxtv.org/media_tree.git
2605S: Maintained
2606F: drivers/media/radio/dsbr100.c
2607
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002609M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002610L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002612F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
Antti Palosaari91952bc2012-10-01 12:28:46 -03002614DVB_USB_AF9015 MEDIA DRIVER
2615M: Antti Palosaari <crope@iki.fi>
2616L: linux-media@vger.kernel.org
2617W: http://linuxtv.org/
2618W: http://palosaari.fi/linux/
2619Q: http://patchwork.linuxtv.org/project/linux-media/list/
2620T: git git://linuxtv.org/anttip/media_tree.git
2621S: Maintained
2622F: drivers/media/usb/dvb-usb-v2/af9015*
2623
2624DVB_USB_AF9035 MEDIA DRIVER
2625M: Antti Palosaari <crope@iki.fi>
2626L: linux-media@vger.kernel.org
2627W: http://linuxtv.org/
2628W: http://palosaari.fi/linux/
2629Q: http://patchwork.linuxtv.org/project/linux-media/list/
2630T: git git://linuxtv.org/anttip/media_tree.git
2631S: Maintained
2632F: drivers/media/usb/dvb-usb-v2/af9035*
2633
2634DVB_USB_ANYSEE MEDIA DRIVER
2635M: Antti Palosaari <crope@iki.fi>
2636L: linux-media@vger.kernel.org
2637W: http://linuxtv.org/
2638W: http://palosaari.fi/linux/
2639Q: http://patchwork.linuxtv.org/project/linux-media/list/
2640T: git git://linuxtv.org/anttip/media_tree.git
2641S: Maintained
2642F: drivers/media/usb/dvb-usb-v2/anysee*
2643
2644DVB_USB_AU6610 MEDIA DRIVER
2645M: Antti Palosaari <crope@iki.fi>
2646L: linux-media@vger.kernel.org
2647W: http://linuxtv.org/
2648W: http://palosaari.fi/linux/
2649Q: http://patchwork.linuxtv.org/project/linux-media/list/
2650T: git git://linuxtv.org/anttip/media_tree.git
2651S: Maintained
2652F: drivers/media/usb/dvb-usb-v2/au6610*
2653
2654DVB_USB_CE6230 MEDIA DRIVER
2655M: Antti Palosaari <crope@iki.fi>
2656L: linux-media@vger.kernel.org
2657W: http://linuxtv.org/
2658W: http://palosaari.fi/linux/
2659Q: http://patchwork.linuxtv.org/project/linux-media/list/
2660T: git git://linuxtv.org/anttip/media_tree.git
2661S: Maintained
2662F: drivers/media/usb/dvb-usb-v2/ce6230*
2663
Michael Krufkyd099dea2012-10-02 00:56:20 -03002664DVB_USB_CXUSB MEDIA DRIVER
2665M: Michael Krufky <mkrufky@linuxtv.org>
2666L: linux-media@vger.kernel.org
2667W: http://linuxtv.org/
2668W: http://github.com/mkrufky
2669Q: http://patchwork.linuxtv.org/project/linux-media/list/
2670T: git git://linuxtv.org/media_tree.git
2671S: Maintained
Cesar Eduardo Barros3408d882012-11-23 20:26:32 -03002672F: drivers/media/usb/dvb-usb/cxusb*
Michael Krufkyd099dea2012-10-02 00:56:20 -03002673
Antti Palosaari91952bc2012-10-01 12:28:46 -03002674DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2675M: Antti Palosaari <crope@iki.fi>
2676L: linux-media@vger.kernel.org
2677W: http://linuxtv.org/
2678W: http://palosaari.fi/linux/
2679Q: http://patchwork.linuxtv.org/project/linux-media/list/
2680T: git git://linuxtv.org/anttip/media_tree.git
2681S: Maintained
2682F: drivers/media/usb/dvb-usb-v2/cypress_firmware*
2683
2684DVB_USB_EC168 MEDIA DRIVER
2685M: Antti Palosaari <crope@iki.fi>
2686L: linux-media@vger.kernel.org
2687W: http://linuxtv.org/
2688W: http://palosaari.fi/linux/
2689Q: http://patchwork.linuxtv.org/project/linux-media/list/
2690T: git git://linuxtv.org/anttip/media_tree.git
2691S: Maintained
2692F: drivers/media/usb/dvb-usb-v2/ec168*
2693
Michael Krufky8856f5f2012-10-02 00:55:50 -03002694DVB_USB_MXL111SF MEDIA DRIVER
2695M: Michael Krufky <mkrufky@linuxtv.org>
2696L: linux-media@vger.kernel.org
2697W: http://linuxtv.org/
2698W: http://github.com/mkrufky
2699Q: http://patchwork.linuxtv.org/project/linux-media/list/
2700T: git git://linuxtv.org/mkrufky/mxl111sf.git
2701S: Maintained
2702F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2703
Antti Palosaari91952bc2012-10-01 12:28:46 -03002704DVB_USB_RTL28XXU MEDIA DRIVER
2705M: Antti Palosaari <crope@iki.fi>
2706L: linux-media@vger.kernel.org
2707W: http://linuxtv.org/
2708W: http://palosaari.fi/linux/
2709Q: http://patchwork.linuxtv.org/project/linux-media/list/
2710T: git git://linuxtv.org/anttip/media_tree.git
2711S: Maintained
2712F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
2713
2714DVB_USB_V2 MEDIA DRIVER
2715M: Antti Palosaari <crope@iki.fi>
2716L: linux-media@vger.kernel.org
2717W: http://linuxtv.org/
2718W: http://palosaari.fi/linux/
2719Q: http://patchwork.linuxtv.org/project/linux-media/list/
2720T: git git://linuxtv.org/anttip/media_tree.git
2721S: Maintained
2722F: drivers/media/usb/dvb-usb-v2/dvb_usb*
2723F: drivers/media/usb/dvb-usb-v2/usb_urb.c
2724
Jason Baronac0ac382011-08-11 14:36:43 -04002725DYNAMIC DEBUG
2726M: Jason Baron <jbaron@redhat.com>
2727S: Maintained
2728F: lib/dynamic_debug.c
2729F: include/linux/dynamic_debug.h
2730
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002731DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002732M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002733S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08002734F: drivers/tty/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002735
Antti Palosaari91952bc2012-10-01 12:28:46 -03002736E4000 MEDIA DRIVER
2737M: Antti Palosaari <crope@iki.fi>
2738L: linux-media@vger.kernel.org
2739W: http://linuxtv.org/
2740W: http://palosaari.fi/linux/
2741Q: http://patchwork.linuxtv.org/project/linux-media/list/
2742T: git git://linuxtv.org/anttip/media_tree.git
2743S: Maintained
2744F: drivers/media/tuners/e4000*
2745
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002747M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002748L: linux-eata@i-connect.net
2749L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002751F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
2753EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002754M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755L: linux-scsi@vger.kernel.org
2756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002757F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
2759EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002760M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002761L: linux-eata@i-connect.net
2762L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002764F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
2766EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002767M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Joe Perchesd3ab6fd2011-06-13 16:26:22 +00002768L: netfilter-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769W: http://ebtables.sourceforge.net/
2770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002771F: include/linux/netfilter_bridge/ebt_*.h
2772F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
Antti Palosaari91952bc2012-10-01 12:28:46 -03002774EC100 MEDIA DRIVER
2775M: Antti Palosaari <crope@iki.fi>
2776L: linux-media@vger.kernel.org
2777W: http://linuxtv.org/
2778W: http://palosaari.fi/linux/
2779Q: http://patchwork.linuxtv.org/project/linux-media/list/
2780T: git git://linuxtv.org/anttip/media_tree.git
2781S: Maintained
2782F: drivers/media/dvb-frontends/ec100*
2783
Michael Halcrow237fead2006-10-04 02:16:22 -07002784ECRYPT FILE SYSTEM
Tyler Hicks0de9adf2011-11-05 09:04:47 -04002785M: Tyler Hicks <tyhicks@canonical.com>
Dustin Kirkland14094192011-12-07 08:56:49 -06002786M: Dustin Kirkland <dustin.kirkland@gazzang.com>
Tyler Hicksa058bfb2011-05-27 11:47:59 -05002787L: ecryptfs@vger.kernel.org
Michael Halcrow6dc75162008-12-15 13:54:17 -08002788W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002789S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002790F: Documentation/filesystems/ecryptfs.txt
2791F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002792
Alan Coxda9bb1d2006-01-18 17:44:13 -08002793EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002794M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002795L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002796W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002797S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002798F: Documentation/edac.txt
Chris Metcalf91445c72012-03-31 09:46:03 -04002799F: drivers/edac/
Joe Perches679655d2009-04-07 20:44:32 -07002800F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002801
Borislav Petkovc476c232009-05-20 20:31:58 +02002802EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002803M: Doug Thompson <dougthompson@xmission.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002804M: Borislav Petkov <bp@alien8.de>
Chris Metcalf91445c72012-03-31 09:46:03 -04002805L: linux-edac@vger.kernel.org
Borislav Petkovc476c232009-05-20 20:31:58 +02002806W: bluesmoke.sourceforge.net
Borislav Petkov487ba8e2012-10-29 18:40:10 +01002807S: Maintained
Borislav Petkovc476c232009-05-20 20:31:58 +02002808F: drivers/edac/amd64_edac*
2809
Dave Peterson0e438e32006-03-26 01:38:55 -08002810EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002811M: Mark Gross <mark.gross@intel.com>
2812M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002813L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002814W: bluesmoke.sourceforge.net
2815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002816F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002817
2818EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002819M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002820L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002821W: bluesmoke.sourceforge.net
2822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002823F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002824
Douglas Thompson6bc78402007-07-19 01:50:12 -07002825EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002826M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002827L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002828W: bluesmoke.sourceforge.net
2829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002830F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002831
2832EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002833M: Jason Uhlenkott <juhlenko@akamai.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002834L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002835W: bluesmoke.sourceforge.net
2836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002837F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002838
2839EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002840M: Doug Thompson <dougthompson@xmission.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002841L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002842W: bluesmoke.sourceforge.net
2843S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002844F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002845
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002846EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002847M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002848L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002849W: bluesmoke.sourceforge.net
2850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002851F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002852
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002853EDAC-I7300
2854M: Mauro Carvalho Chehab <mchehab@redhat.com>
2855L: linux-edac@vger.kernel.org
2856W: bluesmoke.sourceforge.net
2857S: Maintained
2858F: drivers/edac/i7300_edac.c
2859
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002860EDAC-I7CORE
2861M: Mauro Carvalho Chehab <mchehab@redhat.com>
2862L: linux-edac@vger.kernel.org
2863W: bluesmoke.sourceforge.net
2864S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002865F: drivers/edac/i7core_edac.c
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002866
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002867EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002868M: Ranganathan Desikan <ravi@jetztechnologies.com>
Arvind R25527882011-01-21 23:13:37 +05302869M: "Arvind R." <arvino55@gmail.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002870L: linux-edac@vger.kernel.org
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002871W: bluesmoke.sourceforge.net
2872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002873F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002874
2875EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002876M: Egor Martovetsky <egor@pasemi.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002877L: linux-edac@vger.kernel.org
Douglas Thompson6bc78402007-07-19 01:50:12 -07002878W: bluesmoke.sourceforge.net
2879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002880F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002881
Dave Peterson0e438e32006-03-26 01:38:55 -08002882EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002883M: Tim Small <tim@buttersideup.com>
Chris Metcalf91445c72012-03-31 09:46:03 -04002884L: linux-edac@vger.kernel.org
Dave Peterson0e438e32006-03-26 01:38:55 -08002885W: bluesmoke.sourceforge.net
2886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002887F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002888
Mauro Carvalho Chehab4d096ca2011-11-01 10:03:24 -02002889EDAC-SBRIDGE
2890M: Mauro Carvalho Chehab <mchehab@redhat.com>
2891L: linux-edac@vger.kernel.org
2892W: bluesmoke.sourceforge.net
2893S: Maintained
2894F: drivers/edac/sb_edac.c
2895
Clemens Ladischaf399172011-01-10 16:32:54 +01002896EDIROL UA-101/UA-1000 DRIVER
2897M: Clemens Ladisch <clemens@ladisch.de>
2898L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2899T: git git://git.alsa-project.org/alsa-kernel.git
2900S: Maintained
2901F: sound/usb/misc/ua101.c
2902
Matt Fleming1f7df952012-10-03 10:04:02 +01002903EXTENSIBLE FIRMWARE INTERFACE (EFI)
2904M: Matt Fleming <matt.fleming@intel.com>
2905L: linux-efi@vger.kernel.org
Matt Fleming78bef242012-10-08 11:33:05 +01002906T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
Matt Fleming1f7df952012-10-03 10:04:02 +01002907S: Maintained
2908F: Documentation/x86/efi-stub.txt
2909F: arch/ia64/kernel/efi.c
2910F: arch/x86/boot/compressed/eboot.[ch]
2911F: arch/x86/include/asm/efi.h
2912F: arch/x86/platform/efi/*
2913F: drivers/firmware/efivars.c
2914F: include/linux/efi*.h
2915
Peter Jones85a00d92010-09-22 13:05:04 -07002916EFIFB FRAMEBUFFER DRIVER
2917L: linux-fbdev@vger.kernel.org
2918M: Peter Jones <pjones@redhat.com>
2919S: Maintained
2920F: drivers/video/efifb.c
2921
Josh Triplett0bee8d22006-07-30 03:03:58 -07002922EFS FILESYSTEM
2923W: http://aeschi.ch.eu.org/efs/
2924S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002925F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002926
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002927EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002928M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2929M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002930L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002931S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002932F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002933
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002934EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
Thadeu Lima de Souza Cascardo34b19012011-10-13 09:56:19 +00002935M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002936L: netdev@vger.kernel.org
2937S: Maintained
Jeff Kirsher9aa32832011-05-13 14:29:12 -07002938F: drivers/net/ethernet/ibm/ehea/
Breno Leitaoaa8a9e252010-09-01 13:10:53 -07002939
Mauro Carvalho Chehabf0319ef2012-11-02 11:38:23 -02002940EM28XX VIDEO4LINUX DRIVER
2941M: Mauro Carvalho Chehab <mchehab@redhat.com>
2942L: linux-media@vger.kernel.org
2943W: http://linuxtv.org
2944T: git git://linuxtv.org/media_tree.git
2945S: Maintained
2946F: drivers/media/usb/em28xx/
2947
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002948EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002949M: Paul Gortmaker <paul.gortmaker@windriver.com>
2950M: Matt Mackall <mpm@selenic.com>
2951M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002952L: linux-embedded@vger.kernel.org
2953S: Maintained
2954
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002955EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002956M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002957L: linux-scsi@vger.kernel.org
2958W: http://sourceforge.net/projects/lpfcxxxx
2959S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002960F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002961
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002962ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002963M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002964S: Maintained
2965F: drivers/misc/cb710/
2966F: drivers/mmc/host/cb710-mmc.*
2967F: include/linux/cb710.h
2968
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002969ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2970M: Maxim Levitsky <maximlevitsky@gmail.com>
2971S: Maintained
Joe Perches2a837442011-03-22 16:34:32 -07002972F: drivers/media/rc/ene_ir.*
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002973
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002975M: Christopher Hoover <ch@murgatroid.com>
2976M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002978F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002980EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002981M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002982S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002983T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002984F: drivers/video/s1d13xxxfb.c
2985F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002986
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002988M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002989L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990S: Maintained
Jeff Kirsher11597882011-07-13 15:38:08 -07002991F: drivers/net/ethernet/i825xx/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
2993ETHERNET BRIDGE
Stephen Hemminger377a4672011-11-16 17:58:46 -05002994M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07002995L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002996L: netdev@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00002997W: http://www.linuxfoundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002999F: include/linux/netfilter_bridge/
3000F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
3002ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003003M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004S: Maintained
Jeff Kirsher5346ebf2011-06-11 01:13:22 -07003005F: drivers/net/ethernet/fujitsu/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006
3007EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003008M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003009L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003011F: Documentation/filesystems/ext2.txt
3012F: fs/ext2/
3013F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
3015EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02003016M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07003017M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003018M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003019L: linux-ext4@vger.kernel.org
3020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003021F: Documentation/filesystems/ext3.txt
3022F: fs/ext3/
3023F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08003024
3025EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003026M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02003027M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003028L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04003029W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003030Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003032F: Documentation/filesystems/ext4.txt
3033F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034
Mimi Zoharc5532b02011-08-17 18:52:24 -04003035Extended Verification Module (EVM)
3036M: Mimi Zohar <zohar@us.ibm.com>
3037S: Supported
3038F: security/integrity/evm/
3039
MyungJoo Hamdf6b3cf2012-06-25 16:33:36 +09003040EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3041M: MyungJoo Ham <myungjoo.ham@samsung.com>
3042M: Chanwoo Choi <cw00.choi@samsung.com>
3043L: linux-kernel@vger.kernel.org
3044S: Maintained
3045F: drivers/extcon/
3046F: Documentation/extcon/
3047
Jingoo Han0a799512012-02-06 11:30:39 +09003048EXYNOS DP DRIVER
3049M: Jingoo Han <jg1.han@samsung.com>
3050L: linux-fbdev@vger.kernel.org
3051S: Maintained
3052F: drivers/video/exynos/exynos_dp*
Jingoo Hana824c732012-07-30 14:40:29 -07003053F: include/video/exynos_dp*
Jingoo Han0a799512012-02-06 11:30:39 +09003054
Donghwa Lee33ad3912012-03-06 11:44:58 +09003055EXYNOS MIPI DISPLAY DRIVERS
3056M: Inki Dae <inki.dae@samsung.com>
3057M: Donghwa Lee <dh09.lee@samsung.com>
3058M: Kyungmin Park <kyungmin.park@samsung.com>
3059L: linux-fbdev@vger.kernel.org
3060S: Maintained
3061F: drivers/video/exynos/exynos_mipi*
3062F: include/video/exynos_mipi*
3063
Jean Delvaree53004e2006-01-09 23:26:14 +01003064F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003065M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01003066L: lm-sensors@lm-sensors.org
3067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003068F: Documentation/hwmon/f71805f
3069F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01003070
Michael Büscheea977e2012-04-02 12:14:32 -03003071FC0011 TUNER DRIVER
3072M: Michael Buesch <m@bues.ch>
3073L: linux-media@vger.kernel.org
3074S: Maintained
Mauro Carvalho Chehabccae7af2012-06-14 16:35:59 -03003075F: drivers/media/tuners/fc0011.h
3076F: drivers/media/tuners/fc0011.c
Michael Büscheea977e2012-04-02 12:14:32 -03003077
Antti Palosaari91952bc2012-10-01 12:28:46 -03003078FC2580 MEDIA DRIVER
3079M: Antti Palosaari <crope@iki.fi>
3080L: linux-media@vger.kernel.org
3081W: http://linuxtv.org/
3082W: http://palosaari.fi/linux/
3083Q: http://patchwork.linuxtv.org/project/linux-media/list/
3084T: git git://linuxtv.org/anttip/media_tree.git
3085S: Maintained
3086F: drivers/media/tuners/fc2580*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
Eric Paris88b2dbd2010-08-18 12:25:50 -04003088FANOTIFY
3089M: Eric Paris <eparis@redhat.com>
3090S: Maintained
3091F: fs/notify/fanotify/
3092F: include/linux/fanotify.h
3093
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003095M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096W: http://www.farsite.co.uk/
3097S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003098F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099
Akinobu Mitac5408b82007-04-23 14:41:20 -07003100FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003101M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07003102S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003103F: Documentation/fault-injection/
3104F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07003105
Robert Lovecae727d2010-02-16 12:16:00 -08003106FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3107M: Robert Love <robert.w.love@intel.com>
3108L: devel@open-fcoe.org
3109W: www.Open-FCoE.org
3110S: Supported
3111F: drivers/scsi/libfc/
3112F: drivers/scsi/fcoe/
3113F: include/scsi/fc/
3114F: include/scsi/libfc.h
3115F: include/scsi/libfcoe.h
3116
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003117FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07003118M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003119L: linux-fsdevel@vger.kernel.org
3120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003121F: include/linux/fcntl.h
3122F: include/linux/fs.h
3123F: fs/fcntl.c
3124F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003125
3126FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07003127M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003128L: linux-fsdevel@vger.kernel.org
3129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003130F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003131
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003132FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02003133M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003134L: lm-sensors@lm-sensors.org
3135S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07003136F: drivers/hwmon/f75375s.c
3137F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02003138
Clemens Ladischa331b0c2011-05-25 09:48:48 +02003139FIREWIRE AUDIO DRIVERS
3140M: Clemens Ladisch <clemens@ladisch.de>
3141L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3142T: git git://git.alsa-project.org/alsa-kernel.git
3143S: Maintained
3144F: sound/firewire/
3145
Stefan Richtereb86ec52012-11-03 09:25:20 +01003146FIREWIRE MEDIA DRIVERS (firedtv)
3147M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3148L: linux-media@vger.kernel.org
3149L: linux1394-devel@lists.sourceforge.net
3150T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3151S: Maintained
3152F: drivers/media/firewire/
3153
Chris Boota511ce32012-04-14 17:50:35 -07003154FIREWIRE SBP-2 TARGET
3155M: Chris Boot <bootc@bootc.net>
3156L: linux-scsi@vger.kernel.org
3157L: target-devel@vger.kernel.org
3158L: linux1394-devel@lists.sourceforge.net
3159T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3160S: Maintained
3161F: drivers/target/sbp/
3162
Joe Perches7d2c86b2009-04-07 20:59:01 -07003163FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003164M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003165L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003166W: http://ieee1394.wiki.kernel.org/
Stefan Richter2ca526b2011-12-20 21:23:28 +01003167T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003169F: drivers/firewire/
3170F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02003171F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003172
3173FIRMWARE LOADER (request_firmware)
Ming Lei39e68082012-08-20 19:04:17 +08003174M: Ming Lei <ming.lei@canonical.com>
3175L: linux-kernel@vger.kernel.org
3176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003177F: Documentation/firmware_class/
3178F: drivers/base/firmware*.c
3179F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003180
Jiri Kosina8206f662012-05-18 13:52:29 +02003181FLOPPY DRIVER
3182M: Jiri Kosina <jkosina@suse.cz>
3183T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3184S: Odd fixes
3185F: drivers/block/floppy.c
3186
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003187FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003188M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07003189W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003191F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003192
3193FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003194L: netdev@vger.kernel.org
Joe Perchesc173bfa2011-07-28 10:54:23 +00003195S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003196F: drivers/net/wan/dlci.c
3197F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003198
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199FRAMEBUFFER LAYER
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003200M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003201L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09003203Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Florian Tobias Schandinatf9557a42011-08-27 19:32:34 +00003204T: git git://github.com/schandinat/linux-2.6.git fbdev-next
Paul Mundt56be1412011-03-23 08:29:07 +09003205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003206F: Documentation/fb/
Paul Mundtd958c622011-03-23 08:22:41 +09003207F: Documentation/devicetree/bindings/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09003208F: drivers/video/
3209F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07003210F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211
Zhang Wei173acc72008-03-01 07:42:48 -07003212FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003213M: Li Yang <leoli@freescale.com>
3214M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003215L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07003216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003217F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07003218
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003219FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003220M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003221L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01003222L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003224F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02003225
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003226FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003227M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003228L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07003229L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003231F: arch/arm/plat-mxc/include/mach/imxfb.h
3232F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01003233
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003234FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003235M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3236M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003237L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003238L: netdev@vger.kernel.org
3239S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003240F: drivers/net/ethernet/freescale/fs_enet/
Joe Perches679655d2009-04-07 20:44:32 -07003241F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03003242
Timur Tabid9e9d822008-04-24 08:45:26 +10003243FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07003244M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003245L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003246S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003247F: arch/powerpc/sysdev/qe_lib/
3248F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10003249
Joe Perchesb55ef9292009-10-26 16:49:46 -07003250FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003251M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07003252L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003253L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07003254S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08003255F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07003256
Li Yangbeaf53b2007-05-25 13:54:02 +08003257FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003258M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08003259L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003260L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08003261S: Maintained
Jeff Kirsherec21e2e2011-06-11 02:29:36 -07003262F: drivers/net/ethernet/freescale/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08003263
Timur Tabid9e9d822008-04-24 08:45:26 +10003264FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003265M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003266L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003267S: Supported
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08003268F: drivers/tty/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003269
3270FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003271M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07003272L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003273L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10003274S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07003275F: sound/soc/fsl/fsl*
3276F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10003277
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003279M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003282F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
Pavel Machek71038f52009-01-15 13:51:02 -08003284FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07003285M: Pavel Machek <pavel@ucw.cz>
3286M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003287L: linux-pm@vger.kernel.org
Pavel Machek71038f52009-01-15 13:51:02 -08003288S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003289F: Documentation/power/freezing-of-tasks.txt
3290F: include/linux/freezer.h
3291F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08003292
Konrad Rzeszutek Wilk839a1f72012-04-16 17:06:35 -04003293FRONTSWAP API
3294M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3295L: linux-kernel@vger.kernel.org
3296S: Maintained
3297F: mm/frontswap.c
3298F: include/linux/frontswap.h
3299
David Howellsa5432f5a2009-04-20 15:46:45 +01003300FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07003301M: David Howells <dhowells@redhat.com>
David Howellsa5432f5a2009-04-20 15:46:45 +01003302L: linux-cachefs@redhat.com
3303S: Supported
3304F: Documentation/filesystems/caching/
3305F: fs/fscache/
3306F: include/linux/fscache*.h
3307
David Howells5ab7ffe2007-04-10 15:10:45 +01003308FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07003309M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003311F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
Jonathan Woithe20b93732008-06-11 10:14:56 +09303313FUJITSU LAPTOP EXTRAS
Jonathan Woithe409a3e92012-03-27 13:01:01 +10303314M: Jonathan Woithe <jwoithe@just42.net>
Matthew Garrettd09448532010-02-11 10:40:13 -05003315L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09303316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003317F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09303318
Heungjun Kim4da621b62011-11-11 08:05:33 -03003319FUJITSU M-5MO LS CAMERA ISP DRIVER
3320M: Kyungmin Park <kyungmin.park@samsung.com>
3321M: Heungjun Kim <riverful.kim@samsung.com>
3322L: linux-media@vger.kernel.org
3323S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03003324F: drivers/media/i2c/m5mols/
Heungjun Kim4da621b62011-11-11 08:05:33 -03003325F: include/media/m5mols.h
3326
Robert Gerlach2d24c492012-01-18 14:26:22 +01003327FUJITSU TABLET EXTRAS
3328M: Robert Gerlach <khnz@gmx.de>
3329L: platform-driver-x86@vger.kernel.org
3330S: Maintained
3331F: drivers/platform/x86/fujitsu-tablet.c
3332
Miklos Szeredi04578f12005-09-09 13:10:22 -07003333FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07003334M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07003335L: fuse-devel@lists.sourceforge.net
3336W: http://fuse.sourceforge.net/
3337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003338F: fs/fuse/
3339F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07003340
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07003342M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003344S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07003345F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346
3347GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003348M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349L: linux-scsi@vger.kernel.org
3350W: http://www.icp-vortex.com/
3351S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003352F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353
Hans Verkuil3169a1c2012-11-23 07:11:58 -03003354GEMTEK FM RADIO RECEIVER DRIVER
3355M: Hans Verkuil <hverkuil@xs4all.nl>
3356L: linux-media@vger.kernel.org
3357T: git git://linuxtv.org/media_tree.git
3358W: http://linuxtv.org
3359S: Maintained
3360F: drivers/media/radio/radio-gemtek*
3361
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003362GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07003363M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003364S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003365F: drivers/i2c/busses/i2c-gpio.c
3366F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02003367
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003368GENERIC GPIO I2C MULTIPLEXER DRIVER
3369M: Peter Korsgaard <peter.korsgaard@barco.com>
3370L: linux-i2c@vger.kernel.org
3371S: Supported
Jean Delvaree7065e22012-04-28 15:32:06 +02003372F: drivers/i2c/muxes/i2c-mux-gpio.c
3373F: include/linux/i2c-mux-gpio.h
3374F: Documentation/i2c/muxes/i2c-mux-gpio
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01003375
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003376GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003377M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003380F: drivers/net/wan/c101.c
3381F: drivers/net/wan/hd6457*
3382F: drivers/net/wan/hdlc*
3383F: drivers/net/wan/n2.c
3384F: drivers/net/wan/pc300too.c
3385F: drivers/net/wan/pci200syn.c
3386F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003388GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07003389M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02003390L: linux-arch@vger.kernel.org
3391T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3392S: Maintained
3393F: include/asm-generic
3394
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003395GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07003396M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003397L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03003398S: Supported
3399F: drivers/uio/uio_pci_generic.c
3400
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003401GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003402M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04003403L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003404W: http://sources.redhat.com/cluster/
Joe Perches08deed12012-03-23 15:01:57 -07003405T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3406T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003407S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003408F: Documentation/filesystems/gfs2*.txt
3409F: fs/gfs2/
3410F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04003411
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003412GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003413M: Hansjoerg Lipp <hjlipp@web.de>
3414M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003415L: gigaset307x-common@lists.sourceforge.net
3416W: http://gigaset307x.sourceforge.net/
3417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003418F: Documentation/isdn/README.gigaset
3419F: drivers/isdn/gigaset/
3420F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08003421
Grant Likelya0dc00b2011-02-12 01:48:14 -07003422GPIO SUBSYSTEM
3423M: Grant Likely <grant.likely@secretlab.ca>
Linus Walleije4651a92012-08-06 09:52:52 +02003424M: Linus Walleij <linus.walleij@linaro.org>
Grant Likelya0dc00b2011-02-12 01:48:14 -07003425S: Maintained
3426T: git git://git.secretlab.ca/git/linux-2.6.git
Kukjin Kim98909cf2011-04-27 15:26:47 -07003427F: Documentation/gpio.txt
Grant Likelya0dc00b2011-02-12 01:48:14 -07003428F: drivers/gpio/
3429F: include/linux/gpio*
Yang Bai9b692342012-10-04 17:12:35 -07003430F: include/asm-generic/gpio.h
Grant Likelya0dc00b2011-02-12 01:48:14 -07003431
Harry Wei71a6d0a2011-05-11 15:13:33 -07003432GRE DEMULTIPLEXER DRIVER
3433M: Dmitry Kozlov <xeb@mail.ru>
3434L: netdev@vger.kernel.org
3435S: Maintained
3436F: net/ipv4/gre.c
3437F: include/net/gre.h
3438
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003439GRETH 10/100/1G Ethernet MAC device driver
3440M: Kristoffer Glembo <kristoffer@gaisler.com>
3441L: netdev@vger.kernel.org
3442S: Maintained
Joe Perchesa31a96a2012-01-10 15:08:58 -08003443F: drivers/net/ethernet/aeroflex/
Kristoffer Glembod4c41132010-02-15 03:33:44 +00003444
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003445GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003446M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003447L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003448T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003449S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003450F: drivers/media/usb/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003451
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003452GSPCA GL860 SUBDRIVER
3453M: Olivier Lorin <o.lorin@laposte.net>
3454L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003455T: git git://linuxtv.org/media_tree.git
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003456S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003457F: drivers/media/usb/gspca/gl860/
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03003458
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003459GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003460M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003461L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003462T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003463S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003464F: drivers/media/usb/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003465
3466GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003467M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003468L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003469T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003470S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003471F: drivers/media/usb/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003472
Brian Johnson261982f2009-07-19 15:58:56 -03003473GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03003474M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03003475L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003476T: git git://linuxtv.org/media_tree.git
Brian Johnson261982f2009-07-19 15:58:56 -03003477S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003478F: drivers/media/usb/gspca/sn9c20x.c
Brian Johnson261982f2009-07-19 15:58:56 -03003479
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003480GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003481M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003482L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003483T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003484S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003485F: drivers/media/usb/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003486
3487GSPCA USB WEBCAM DRIVER
Jean-Francois Moinefc3f9062012-05-24 07:29:41 -03003488M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003489L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003490T: git git://linuxtv.org/media_tree.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003491S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03003492F: drivers/media/usb/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03003493
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003494STK1160 USB VIDEO CAPTURE DRIVER
3495M: Ezequiel Garcia <elezegarcia@gmail.com>
3496L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02003497T: git git://linuxtv.org/media_tree.git
Ezequiel Garciaaa3c5982012-10-01 12:41:16 -03003498S: Maintained
3499F: drivers/media/usb/stk1160/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003500
Harry Wei71a6d0a2011-05-11 15:13:33 -07003501HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3502M: Frank Seidel <frank@f-seidel.de>
3503L: platform-driver-x86@vger.kernel.org
3504W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3505S: Maintained
3506F: drivers/platform/x86/hdaps.c
3507
3508HWPOISON MEMORY FAILURE HANDLING
3509M: Andi Kleen <andi@firstfloor.org>
3510L: linux-mm@kvack.org
3511T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3512S: Maintained
3513F: mm/memory-failure.c
3514F: mm/hwpoison-inject.c
3515
3516HYPERVISOR VIRTUAL CONSOLE DRIVER
3517L: linuxppc-dev@lists.ozlabs.org
3518S: Odd Fixes
3519F: drivers/tty/hvc/
3520
Michael Buesch844dd052006-06-26 00:24:59 -07003521HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02003522M: Jean Delvare <khali@linux-fr.org>
Guenter Roeckca462082012-06-01 23:28:23 -07003523M: Guenter Roeck <linux@roeck-us.net>
Robert Love860e1d62005-08-31 23:57:59 -04003524L: lm-sensors@lm-sensors.org
3525W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02003526T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07003527T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02003528S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01003529F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07003530F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01003531F: include/linux/hwmon*.h
Robert Love860e1d62005-08-31 23:57:59 -04003532
3533HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07003534M: Matt Mackall <mpm@selenic.com>
3535M: Herbert Xu <herbert@gondor.apana.org.au>
3536S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07003537F: Documentation/hw_random.txt
3538F: drivers/char/hw_random/
3539F: include/linux/hw_random.h
Robert Love860e1d62005-08-31 23:57:59 -04003540
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03003541HARDWARE SPINLOCK CORE
3542M: Ohad Ben-Cohen <ohad@wizery.com>
3543S: Maintained
3544F: Documentation/hwspinlock.txt
3545F: drivers/hwspinlock/hwspinlock_*
3546F: include/linux/hwspinlock.h
3547
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548HARMONY SOUND DRIVER
Kyle McMartinac6aecb2007-12-03 22:04:34 +00003549L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003551F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552
Antti Palosaari91952bc2012-10-01 12:28:46 -03003553HD29L2 MEDIA DRIVER
3554M: Antti Palosaari <crope@iki.fi>
3555L: linux-media@vger.kernel.org
3556W: http://linuxtv.org/
3557W: http://palosaari.fi/linux/
3558Q: http://patchwork.linuxtv.org/project/linux-media/list/
3559T: git git://linuxtv.org/anttip/media_tree.git
3560S: Maintained
3561F: drivers/media/dvb-frontends/hd29l2*
3562
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003563HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003564M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003565L: iss_storagedev@hp.com
3566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003567F: Documentation/blockdev/cpqarray.txt
3568F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003569
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003570HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
Joe Perches706e69d2011-03-22 16:34:26 -07003571M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05003572L: iss_storagedev@hp.com
3573S: Supported
3574F: Documentation/scsi/hpsa.txt
3575F: drivers/scsi/hpsa*.[ch]
3576F: include/linux/cciss*.h
3577
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003578HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07003579M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003580L: iss_storagedev@hp.com
3581S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003582F: Documentation/blockdev/cciss.txt
3583F: drivers/block/cciss*
3584F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003585
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586HFS FILESYSTEM
Geert Uytterhoeven6cf515e2011-04-24 10:32:49 +02003587L: linux-fsdevel@vger.kernel.org
3588S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003589F: Documentation/filesystems/hfs.txt
3590F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591
3592HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003593M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594L: linux-nvidia@lists.surfsouth.com
3595W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003597F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003599HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07003600M: Pavel Machek <pavel@ucw.cz>
3601M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02003602L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003603S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003604F: arch/x86/power/
3605F: drivers/base/power/
3606F: kernel/power/
3607F: include/linux/suspend.h
3608F: include/linux/freezer.h
3609F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07003610F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003611
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003612HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003613M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04003614L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003615T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003617F: drivers/hid/
3618F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01003619
Ingo Molnar38bed542007-02-22 09:09:34 +01003620HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07003621M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01003622T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Ingo Molnar38bed542007-02-22 09:09:34 +01003623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003624F: Documentation/timers/
3625F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01003626F: kernel/time/clockevents.c
3627F: kernel/time/tick*.*
3628F: kernel/time/timer_*.c
Joe Perches05ed8492011-07-25 17:13:14 -07003629F: include/linux/clockchips.h
Joe Perches679655d2009-04-07 20:44:32 -07003630F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01003631
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632HIGH-SPEED SCC DRIVER FOR AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633L: linux-hams@vger.kernel.org
Uwe Kleine-König8b64f2a2012-05-29 15:07:11 -07003634S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003635F: drivers/net/hamradio/dmascc.c
3636F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003638HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003639M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003640W: http://www.highpoint-tech.com
3641S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003642F: Documentation/scsi/hptiop.txt
3643F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08003644
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07003646M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647L: linux-hippi@sunsite.dk
3648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003649F: include/linux/hippidevice.h
3650F: include/linux/if_hippi.h
3651F: net/802/hippi.c
Jeff Kirsherff5a3b52011-08-01 22:48:13 -07003652F: drivers/net/hippi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653
Jouni Malinenff1d2762005-05-12 22:54:16 -04003654HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003655M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07003656L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07003657L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04003658W: http://hostap.epitest.fi/
3659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003660F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04003661
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003662HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05003663L: platform-driver-x86@vger.kernel.org
Carlos Corbacho95c70212011-05-02 09:57:08 +01003664S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003665F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00003666
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003667HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07003668M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003669S: Maintained
Jeff Kirsher7e25d722011-07-24 13:19:50 -07003670F: drivers/net/ethernet/hp/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003671
Joe Perches7d2c86b2009-04-07 20:59:01 -07003672HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07003673M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08003674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003675F: Documentation/timers/hpet.txt
3676F: drivers/char/hpet.c
3677F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003678
Jiri Kosinae07b5d72010-03-18 10:59:57 +01003679HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07003680M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08003681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003682F: arch/x86/kernel/hpet.c
3683F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08003684
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003686M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003689F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690
Joe Perches7d2c86b2009-04-07 20:59:01 -07003691HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003692M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003693W: http://www.pharscape.org
3694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003695F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00003696
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003697HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003698M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003699L: linux-input@vger.kernel.org
3700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003701F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003702
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003704M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003706F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707
K. Y. Srinivasan05183182011-12-01 14:31:30 -08003708Hyper-V CORE AND DRIVERS
3709M: K. Y. Srinivasan <kys@microsoft.com>
3710M: Haiyang Zhang <haiyangz@microsoft.com>
3711L: devel@linuxdriverproject.org
3712S: Maintained
3713F: drivers/hv/
3714F: drivers/hid/hid-hyperv.c
3715F: drivers/net/hyperv/
3716F: drivers/staging/hv/
3717
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003718I2C OVER PARALLEL PORT
3719M: Jean Delvare <khali@linux-fr.org>
3720L: linux-i2c@vger.kernel.org
3721S: Maintained
3722F: Documentation/i2c/busses/i2c-parport
3723F: Documentation/i2c/busses/i2c-parport-light
3724F: drivers/i2c/busses/i2c-parport.c
3725F: drivers/i2c/busses/i2c-parport-light.c
3726
3727I2C/SMBUS CONTROLLER DRIVERS FOR PC
3728M: Jean Delvare <khali@linux-fr.org>
3729L: linux-i2c@vger.kernel.org
3730S: Maintained
3731F: Documentation/i2c/busses/i2c-ali1535
3732F: Documentation/i2c/busses/i2c-ali1563
3733F: Documentation/i2c/busses/i2c-ali15x3
3734F: Documentation/i2c/busses/i2c-amd756
3735F: Documentation/i2c/busses/i2c-amd8111
3736F: Documentation/i2c/busses/i2c-i801
3737F: Documentation/i2c/busses/i2c-nforce2
3738F: Documentation/i2c/busses/i2c-piix4
3739F: Documentation/i2c/busses/i2c-sis5595
3740F: Documentation/i2c/busses/i2c-sis630
3741F: Documentation/i2c/busses/i2c-sis96x
3742F: Documentation/i2c/busses/i2c-via
3743F: Documentation/i2c/busses/i2c-viapro
3744F: drivers/i2c/busses/i2c-ali1535.c
3745F: drivers/i2c/busses/i2c-ali1563.c
3746F: drivers/i2c/busses/i2c-ali15x3.c
3747F: drivers/i2c/busses/i2c-amd756.c
3748F: drivers/i2c/busses/i2c-amd756-s4882.c
3749F: drivers/i2c/busses/i2c-amd8111.c
3750F: drivers/i2c/busses/i2c-i801.c
3751F: drivers/i2c/busses/i2c-isch.c
3752F: drivers/i2c/busses/i2c-nforce2.c
3753F: drivers/i2c/busses/i2c-nforce2-s4985.c
3754F: drivers/i2c/busses/i2c-piix4.c
3755F: drivers/i2c/busses/i2c-sis5595.c
3756F: drivers/i2c/busses/i2c-sis630.c
3757F: drivers/i2c/busses/i2c-sis96x.c
3758F: drivers/i2c/busses/i2c-via.c
3759F: drivers/i2c/busses/i2c-viapro.c
3760
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003761I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003762M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003763L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003764S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003765F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003766
Jean Delvare5b543962005-08-15 19:51:02 +02003767I2C SUBSYSTEM
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003768M: Wolfram Sang <w.sang@pengutronix.de>
Joe Perches8b58be82009-07-29 15:04:30 -07003769M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003770L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003771W: http://i2c.wiki.kernel.org/
3772T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Wolfram Sang4a5b2b22012-09-12 18:03:26 +02003773T: git git://git.pengutronix.de/git/wsa/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003775F: Documentation/i2c/
3776F: drivers/i2c/
3777F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003778F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
Jean Delvared85c8a6a2012-11-13 22:27:19 +01003780I2C-TAOS-EVM DRIVER
3781M: Jean Delvare <khali@linux-fr.org>
3782L: linux-i2c@vger.kernel.org
3783S: Maintained
3784F: Documentation/i2c/busses/i2c-taos-evm
3785F: drivers/i2c/busses/i2c-taos-evm.c
3786
Till Harbaume8c76ee2007-05-01 23:26:35 +02003787I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003788M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003789L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003790W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003792F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003793
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003795M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003797F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798
3799i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003800M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003801T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802S: Maintained
3803
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003805M: Tony Luck <tony.luck@intel.com>
3806M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807L: linux-ia64@vger.kernel.org
Tony Luck6b1c70b2011-10-11 15:40:38 -07003808T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003810F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811
Kent Yoder956c2032012-09-07 04:17:01 +08003812IBM Power in-Nest Crypto Acceleration
3813M: Kent Yoder <key@linux.vnet.ibm.com>
3814L: linux-crypto@vger.kernel.org
3815S: Supported
3816F: drivers/crypto/nx/
3817
Seth Jennings0e16aaf2012-07-19 09:42:40 -05003818IBM Power 842 compression accelerator
3819M: Robert Jennings <rcj@linux.vnet.ibm.com>
3820S: Supported
3821F: drivers/crypto/nx/nx-842.c
3822F: include/linux/nx842.h
3823
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003825M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003827F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
Santiago Leon9d348af2010-09-03 18:29:53 +00003829IBM Power Virtual Ethernet Device Driver
3830M: Santiago Leon <santil@linux.vnet.ibm.com>
3831L: netdev@vger.kernel.org
3832S: Supported
Jeff Kirsher9aa32832011-05-13 14:29:12 -07003833F: drivers/net/ethernet/ibm/ibmveth.*
Santiago Leon9d348af2010-09-03 18:29:53 +00003834
Robert Jennings4b7652c2012-07-31 12:34:36 -05003835IBM Power Virtual SCSI/FC Device Drivers
3836M: Robert Jennings <rcj@linux.vnet.ibm.com>
3837L: linux-scsi@vger.kernel.org
3838S: Supported
3839F: drivers/scsi/ibmvscsi/
3840X: drivers/scsi/ibmvscsi/ibmvstgt.c
3841
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842IBM ServeRAID RAID DRIVER
3843P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003844M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003846S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003847F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
Peter Tyser6ed9f9c2012-04-18 09:48:24 -05003849ICH LPC AND GPIO DRIVER
3850M: Peter Tyser <ptyser@xes-inc.com>
3851S: Maintained
3852F: drivers/mfd/lpc_ich.c
3853F: drivers/gpio/gpio-ich.c
3854
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003855IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003856M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003858Q: http://patchwork.ozlabs.org/project/linux-ide/list/
Joe Perches08deed12012-03-23 15:01:57 -07003859T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003861F: Documentation/ide/
3862F: drivers/ide/
3863F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864
Ike Panhc6cb8c132011-08-25 22:28:45 +08003865IDEAPAD LAPTOP EXTRAS DRIVER
3866M: Ike Panhc <ike.pan@canonical.com>
3867L: platform-driver-x86@vger.kernel.org
3868W: http://launchpad.net/ideapad-laptop
3869S: Maintained
3870F: drivers/platform/x86/ideapad-laptop.c
3871
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003872IDE/ATAPI DRIVERS
Borislav Petkov487ba8e2012-10-29 18:40:10 +01003873M: Borislav Petkov <bp@alien8.de>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003874L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003876F: Documentation/cdrom/ide-cd
3877F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
Andy Henroid27471fd2008-10-09 11:45:22 -07003879IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003880M: Andy Henroid <andrew.d.henroid@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02003881L: linux-pm@vger.kernel.org
Andy Henroid27471fd2008-10-09 11:45:22 -07003882S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003883F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003884
Sergey Lapin02cf2282009-06-08 12:18:50 +00003885IEEE 802.15.4 SUBSYSTEM
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003886M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003887M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003888L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003889W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003890T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003891S: Maintained
3892F: net/ieee802154/
Dmitry Eremin-Solenikov68653352012-07-13 20:15:34 +00003893F: net/mac802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003894F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003895
Sean Young40ad4a32012-11-19 10:32:53 -03003896IGUANAWORKS USB IR TRANSCEIVER
3897M: Sean Young <sean@mess.org>
3898L: linux-media@vger.kernel.org
3899S: Maintained
3900F: drivers/media/rc/iguanair.c
3901
Ameya Palande9545f862012-01-10 09:00:58 -08003902IIO SUBSYSTEM AND DRIVERS
3903M: Jonathan Cameron <jic23@cam.ac.uk>
3904L: linux-iio@vger.kernel.org
3905S: Maintained
Lars-Peter Clausen03e7c252012-04-26 13:46:42 +02003906F: drivers/iio/
Ameya Palande9545f862012-01-10 09:00:58 -08003907F: drivers/staging/iio/
3908
Stanislaw Gruszka65519262011-01-08 15:19:40 +01003909IKANOS/ADI EAGLE ADSL USB DRIVER
3910M: Matthieu Castet <castet.matthieu@free.fr>
3911M: Stanislaw Gruszka <stf_xl@wp.pl>
3912S: Maintained
3913F: drivers/usb/atm/ueagle-atm.c
3914
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003915INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003916M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003917S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003918F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003919
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003921L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003922S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003923F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924
3925INFINIBAND SUBSYSTEM
Roland Dreierdb9fd842011-01-20 16:23:08 -08003926M: Roland Dreier <roland@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07003927M: Sean Hefty <sean.hefty@intel.com>
3928M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003929L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003930W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003931Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003932T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003934F: Documentation/infiniband/
3935F: drivers/infiniband/
3936F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937
Robert Lovec9f04f52005-07-15 12:21:07 -04003938INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003939M: John McCutchan <john@johnmccutchan.com>
3940M: Robert Love <rlove@rlove.org>
3941M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003943F: Documentation/filesystems/inotify.txt
3944F: fs/notify/inotify/
3945F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003946
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003947INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003948M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3949M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003950L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003951Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003952T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003954F: drivers/input/
Dmitry Torokhovf4eea7e2012-05-10 22:31:59 -07003955F: include/linux/input.h
3956F: include/linux/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003957
Henrik Rydberg3267a872010-06-24 19:10:40 -07003958INPUT MULTITOUCH (MT) PROTOCOL
3959M: Henrik Rydberg <rydberg@euromail.se>
3960L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003961T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003962S: Maintained
3963F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003964F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003965K: \b(ABS|SYN)_MT_
3966
Dave Jiang4ac13e12011-07-29 17:16:55 -07003967INTEL C600 SERIES SAS CONTROLLER DRIVER
3968M: Intel SCU Linux support <intel-linux-scu@intel.com>
Dave Jiang71068912012-09-25 15:24:56 -07003969M: Lukasz Dorau <lukasz.dorau@intel.com>
3970M: Maciej Patelczyk <maciej.patelczyk@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003971M: Dave Jiang <dave.jiang@intel.com>
Dave Jiang4ac13e12011-07-29 17:16:55 -07003972L: linux-scsi@vger.kernel.org
Dave Jiang71068912012-09-25 15:24:56 -07003973T: git git://git.code.sf.net/p/intel-sas/isci
3974S: Supported
Dave Jiang4ac13e12011-07-29 17:16:55 -07003975F: drivers/scsi/isci/
3976F: firmware/isci/
3977
Len Brown26717172010-03-08 14:07:30 -05003978INTEL IDLE DRIVER
3979M: Len Brown <lenb@kernel.org>
WANG Congbf1c1382011-10-08 20:57:50 +02003980L: linux-pm@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07003981T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
Len Brown26717172010-03-08 14:07:30 -05003982S: Supported
3983F: drivers/idle/intel_idle.c
3984
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003985INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003986M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003987L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003989F: Documentation/fb/intelfb.txt
3990F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003991
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003993M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003994L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003996F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303998INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003999M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05004000L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304001W: http://www.lesswatts.org/projects/acpi/
4002S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004003F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05304004
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004006M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004008F: arch/x86/kernel/microcode_core.c
4009F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004011INTEL I/OAT DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004012M: Dan Williams <djbw@fb.com>
4013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004014F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07004015
David Woodhouse6c8909b2008-10-18 16:12:17 +01004016INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07004017M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01004018L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07004019T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01004020S: Supported
Roland Dreier3fb39612011-10-10 17:07:15 -07004021F: drivers/iommu/intel-iommu.c
Joe Perches679655d2009-04-07 20:44:32 -07004022F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01004023
Dan Williamsb3e5f262007-08-07 10:26:35 -07004024INTEL IOP-ADMA DMA DRIVER
Dan Williams1dd83722012-08-15 19:20:02 -07004025M: Dan Williams <djbw@fb.com>
4026S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07004027F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07004028
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004029INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004030M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004032F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4033F: arch/arm/mach-ixp4xx/include/mach/npe.h
4034F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4035F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
Jeff Kirsherb47da972011-07-14 22:13:23 -07004036F: drivers/net/ethernet/xscale/ixp4xx_eth.c
Joe Perches679655d2009-04-07 20:44:32 -07004037F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01004038
Michael Buesch844dd052006-06-26 00:24:59 -07004039INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004040M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07004041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004042F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07004043
Jeff Kirsher0d164402010-10-05 01:15:17 +00004044INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07004045M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4046M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4047M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004048M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4049M: Don Skidmore <donald.c.skidmore@intel.com>
4050M: Greg Rose <gregory.v.rose@intel.com>
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004051M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00004052M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004053M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08004054L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08004055W: http://e1000.sourceforge.net/
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004056T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4057T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00004059F: Documentation/networking/e100.txt
4060F: Documentation/networking/e1000.txt
4061F: Documentation/networking/e1000e.txt
4062F: Documentation/networking/igb.txt
4063F: Documentation/networking/igbvf.txt
4064F: Documentation/networking/ixgb.txt
4065F: Documentation/networking/ixgbe.txt
4066F: Documentation/networking/ixgbevf.txt
Jeff Kirsherdee1ad42011-04-07 07:42:33 -07004067F: drivers/net/ethernet/intel/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068
Len Brown6dccf9c2011-07-12 22:29:32 -04004069INTEL MRST PMU DRIVER
4070M: Len Brown <len.brown@intel.com>
WANG Congbf1c1382011-10-08 20:57:50 +02004071L: linux-pm@vger.kernel.org
Len Brown6dccf9c2011-07-12 22:29:32 -04004072S: Supported
4073F: arch/x86/platform/mrst/pmu.*
4074
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004075INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4076M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004077L: linux-wireless@vger.kernel.org
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004079F: Documentation/networking/README.ipw2100
Joe Perches679655d2009-04-07 20:44:32 -07004080F: Documentation/networking/README.ipw2200
Stanislav Yakovlevca907a92012-03-24 03:41:01 -04004081F: drivers/net/wireless/ipw2x00/
James Ketrenos826d2ab2005-11-07 18:56:59 -06004082
Shane Wang4bd96a72010-03-10 14:36:10 +08004083INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
Gang Weie9b7d7c2012-09-17 14:08:59 -07004084M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4085M: Gang Wei <gang.wei@intel.com>
Shane Wang4bd96a72010-03-10 14:36:10 +08004086M: Shane Wang <shane.wang@intel.com>
4087L: tboot-devel@lists.sourceforge.net
4088W: http://tboot.sourceforge.net
Gang Weie9b7d7c2012-09-17 14:08:59 -07004089T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
Shane Wang4bd96a72010-03-10 14:36:10 +08004090S: Supported
4091F: Documentation/intel_txt.txt
4092F: include/linux/tboot.h
4093F: arch/x86/kernel/tboot.c
4094
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004095INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07004096M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004097M: linux-wimax@intel.com
4098L: wimax@linuxwimax.org
4099S: Supported
4100W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07004101F: Documentation/wimax/README.i2400m
4102F: drivers/net/wimax/i2400m/
4103F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08004104
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004105INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4106M: Stanislaw Gruszka <sgruszka@redhat.com>
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004107L: linux-wireless@vger.kernel.org
Stanislaw Gruszka1c0ce892011-03-25 17:59:39 +01004108S: Supported
Wey-Yi Guyefa31442011-02-22 16:43:05 -08004109F: drivers/net/wireless/iwlegacy/
4110
Zhu Yib481de92007-09-25 17:54:57 -07004111INTEL WIRELESS WIFI LINK (iwlwifi)
Wey-Yi Guy15fae502012-04-16 12:03:35 -07004112M: Johannes Berg <johannes.berg@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07004113M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07004114M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07004115L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07004116W: http://intellinuxwireless.org
Wey-Yi Guyb62ff712011-09-22 15:14:49 -07004117T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
Zhu Yib481de92007-09-25 17:54:57 -07004118S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004119F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07004120
Tomas Winklerde8fe022012-05-09 16:39:02 +03004121INTEL MANAGEMENT ENGINE (mei)
4122M: Tomas Winkler <tomas.winkler@intel.com>
4123L: linux-kernel@vger.kernel.org
4124S: Supported
4125F: include/linux/mei.h
4126F: drivers/misc/mei/*
4127F: Documentation/mei/*
4128
Ralf Baechlecb109a02007-08-30 23:56:30 -07004129IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004130M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131L: linux-mips@linux-mips.org
4132S: Maintained
Jeff Kirsher8862bf12011-05-20 07:50:27 -07004133F: drivers/net/ethernet/sgi/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134
Ralf Baechlecb109a02007-08-30 23:56:30 -07004135IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004136M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01004137L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07004138S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004139F: drivers/tty/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07004140
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004141IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07004142M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004144F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145
Francois Romieu1202d6f2007-09-17 17:13:55 -07004146IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004147M: Francois Romieu <romieu@fr.zoreil.com>
4148M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07004149L: netdev@vger.kernel.org
4150S: Maintained
Jeff Kirsher7443713a2011-06-16 15:02:54 -07004151F: drivers/net/ethernet/icplus/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07004152
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004153IPATH DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04004154M: Mike Marciniszyn <infinipath@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004155L: linux-rdma@vger.kernel.org
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07004156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004157F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08004158
Corey Minyard4409ebe2006-04-20 02:43:12 -07004159IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004160M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08004161L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07004162W: http://openipmi.sourceforge.net/
4163S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004164F: Documentation/IPMI.txt
4165F: drivers/char/ipmi/
4166F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07004167
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004168IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004169M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004170L: linux-scsi@vger.kernel.org
4171W: http://www.adaptec.com/
4172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004173F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004174
4175IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07004176M: Wensong Zhang <wensong@linux-vs.org>
4177M: Simon Horman <horms@verge.net.au>
4178M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004179L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004180L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004182F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07004183F: include/net/ip_vs.h
4184F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07004185F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186
Randy Dunlape7839f22008-10-12 16:11:45 -07004187IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004188M: Jiri Kosina <jkosina@suse.cz>
4189M: David Sterba <dsterba@suse.cz>
Jiri Kosina92094aa2011-11-13 21:41:00 +01004190S: Odd Fixes
Greg Kroah-Hartman282361a2011-02-22 16:23:22 -08004191F: drivers/tty/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01004192
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004193IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004194M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004195L: netdev@vger.kernel.org
4196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004197F: include/linux/ipx.h
4198F: include/net/ipx.h
4199F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004200
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004202M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07004203L: irda-users@lists.sourceforge.net (subscribers-only)
Wolfram Sangced649e2011-01-31 22:21:46 +01004204L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07004206S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02004207T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07004208F: Documentation/networking/irda.txt
4209F: drivers/net/irda/
4210F: include/net/irda/
4211F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004213IRQ SUBSYSTEM
4214M: Thomas Gleixner <tglx@linutronix.de>
4215S: Maintained
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004216T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02004217F: kernel/irq/
4218
Grant Likely7ab3a832012-02-14 14:06:47 -07004219IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4220M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4221M: Grant Likely <grant.likely@secretlab.ca>
4222T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4223S: Maintained
4224F: Documentation/IRQ-domain.txt
4225F: include/linux/irqdomain.h
4226F: kernel/irq/irqdomain.c
4227
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004228ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07004229M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004231F: Documentation/isapnp.txt
4232F: drivers/pnp/isapnp/
4233F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004234
Hans Verkuild39b84202012-11-23 07:07:02 -03004235ISA RADIO MODULE
4236M: Hans Verkuil <hverkuil@xs4all.nl>
4237L: linux-media@vger.kernel.org
4238T: git git://linuxtv.org/media_tree.git
4239W: http://linuxtv.org
4240S: Maintained
4241F: drivers/media/radio/radio-isa*
4242
Harry Wei71a6d0a2011-05-11 15:13:33 -07004243iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4244M: Peter Jones <pjones@redhat.com>
4245M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4246S: Maintained
4247F: drivers/firmware/iscsi_ibft*
4248
Mike Christie14816b1e2007-11-28 16:22:06 -08004249ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07004250M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08004251L: open-iscsi@googlegroups.com
4252W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07004253T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08004254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004255F: drivers/scsi/*iscsi*
4256F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08004257
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004259M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004260L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07004261L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07004263T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004265F: Documentation/isdn/
4266F: drivers/isdn/
4267F: include/linux/isdn.h
4268F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269
4270ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07004271M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07004272L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273W: http://www.melware.de
4274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004275F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276
Jean Delvared6248702010-03-05 22:17:20 +01004277IT87 HARDWARE MONITORING DRIVER
4278M: Jean Delvare <khali@linux-fr.org>
4279L: lm-sensors@lm-sensors.org
4280S: Maintained
4281F: Documentation/hwmon/it87
4282F: drivers/hwmon/it87.c
4283
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004284IT913X MEDIA DRIVER
4285M: Malcolm Priestley <tvboxspy@gmail.com>
4286L: linux-media@vger.kernel.org
4287W: http://linuxtv.org/
4288Q: http://patchwork.linuxtv.org/project/linux-media/list/
4289S: Maintained
4290F: drivers/media/usb/dvb-usb-v2/it913x*
4291
4292IT913X FE MEDIA DRIVER
4293M: Malcolm Priestley <tvboxspy@gmail.com>
4294L: linux-media@vger.kernel.org
4295W: http://linuxtv.org/
4296Q: http://patchwork.linuxtv.org/project/linux-media/list/
4297S: Maintained
4298F: drivers/media/dvb-frontends/it913x-fe*
4299
Hans Verkuil91821ff2007-12-02 09:35:33 -03004300IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03004301M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02004302L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004303L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004304T: git git://linuxtv.org/media_tree.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03004305W: http://www.ivtvdriver.org
4306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004307F: Documentation/video4linux/*.ivtv
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03004308F: drivers/media/pci/ivtv/
Joe Perches679655d2009-04-07 20:44:32 -07004309F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03004310
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004311IX2505V MEDIA DRIVER
4312M: Malcolm Priestley <tvboxspy@gmail.com>
4313L: linux-media@vger.kernel.org
4314W: http://linuxtv.org/
4315Q: http://patchwork.linuxtv.org/project/linux-media/list/
4316S: Maintained
4317F: drivers/media/dvb-frontends/ix2505v*
4318
Guenter Roeck4453d732010-08-09 17:21:08 -07004319JC42.4 TEMPERATURE SENSOR DRIVER
4320M: Guenter Roeck <linux@roeck-us.net>
4321L: lm-sensors@lm-sensors.org
4322S: Maintained
4323F: drivers/hwmon/jc42.c
4324F: Documentation/hwmon/jc42
4325
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004326JFS FILESYSTEM
Dave Kleikamp3256f802011-03-04 10:13:47 -06004327M: Dave Kleikamp <shaggy@kernel.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004328L: jfs-discussion@lists.sourceforge.net
4329W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07004330T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05004331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004332F: Documentation/filesystems/jfs.txt
4333F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004334
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004335JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004336M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004337L: netdev@vger.kernel.org
4338S: Maintained
Jeff Kirsher63d24a02011-06-15 10:17:58 -07004339F: drivers/net/ethernet/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08004340
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004342M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04004343L: linux-mtd@lists.infradead.org
4344W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004346F: fs/jffs2/
4347F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348
Josh Triplettde456d32006-07-30 03:04:00 -07004349JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004350M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02004351M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08004352L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07004353S: Maintained
Theodore Ts'od183e112011-05-26 09:53:09 -04004354F: fs/jbd/
4355F: include/linux/ext3_jbd.h
4356F: include/linux/jbd.h
4357
4358JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4359M: "Theodore Ts'o" <tytso@mit.edu>
4360L: linux-ext4@vger.kernel.org
4361S: Maintained
4362F: fs/jbd2/
4363F: include/linux/jbd2.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07004364
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004365JSM Neo PCI based serial card
Lucas Kannebley Tavares52b3bfc2011-10-28 13:52:08 -02004366M: Lucas Tavares <lucaskt@linux.vnet.ibm.com>
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004367L: linux-serial@vger.kernel.org
4368S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004369F: drivers/tty/serial/jsm/
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03004370
Clemens Ladischaf399172011-01-10 16:32:54 +01004371K10TEMP HARDWARE MONITORING DRIVER
4372M: Clemens Ladisch <clemens@ladisch.de>
4373L: lm-sensors@lm-sensors.org
4374S: Maintained
4375F: Documentation/hwmon/k10temp
4376F: drivers/hwmon/k10temp.c
4377
Rudolf Marek4660cb32006-10-08 22:01:26 +02004378K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004379M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02004380L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004382F: Documentation/hwmon/k8temp
4383F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384
4385KCONFIG
Michal Marek76ce94a2011-04-29 16:24:20 +02004386M: Michal Marek <mmarek@suse.cz>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004387L: linux-kbuild@vger.kernel.org
Michal Marek76ce94a2011-04-29 16:24:20 +02004388S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004389F: Documentation/kbuild/kconfig-language.txt
4390F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391
Vivek Goyalea6c2082006-05-20 14:59:55 -07004392KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07004393M: Vivek Goyal <vgoyal@redhat.com>
4394M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07004395L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07004396W: http://lse.sourceforge.net/kdump/
4397S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004398F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07004399
Hans Verkuilf41bf022012-11-23 07:04:36 -03004400KEENE FM RADIO TRANSMITTER DRIVER
4401M: Hans Verkuil <hverkuil@xs4all.nl>
4402L: linux-media@vger.kernel.org
4403T: git git://linuxtv.org/media_tree.git
4404W: http://linuxtv.org
4405S: Maintained
4406F: drivers/media/radio/radio-keene*
4407
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07004409M: Ian Kent <raven@themaw.net>
Ian Kentf694fc92012-02-27 08:03:38 +08004410L: autofs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004412F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413
Michal Marek70fb7ba2010-01-29 14:22:43 +01004414KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08004415M: Michal Marek <mmarek@suse.cz>
Joe Perches08deed12012-03-23 15:01:57 -07004416T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4417T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02004418L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08004419S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004420F: Documentation/kbuild/
4421F: Makefile
4422F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01004423F: scripts/basic/
4424F: scripts/mk*
4425F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426
4427KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07004428L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07004429W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07004430S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004432KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004433M: "J. Bruce Fields" <bfields@fieldses.org>
Neil Brown16141c02007-12-11 16:16:12 -08004434L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435W: http://nfs.sourceforge.net/
NeilBrown98fac23f2007-01-26 00:56:57 -08004436S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004437F: fs/nfsd/
4438F: include/linux/nfsd/
4439F: fs/lockd/
4440F: fs/nfs_common/
4441F: net/sunrpc/
4442F: include/linux/lockd/
4443F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444
Avi Kivity426d62e2006-12-13 00:34:03 -08004445KERNEL VIRTUAL MACHINE (KVM)
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03004446M: Marcelo Tosatti <mtosatti@redhat.com>
Gleb Natapov484cbfd2012-11-20 14:37:24 +02004447M: Gleb Natapov <gleb@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004448L: kvm@vger.kernel.org
4449W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08004450S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004451F: Documentation/*/kvm.txt
4452F: arch/*/kvm/
4453F: arch/*/include/asm/kvm*
4454F: include/linux/kvm*
4455F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08004456
Joerg Roedelad8003d2008-09-10 20:01:07 +02004457KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07004458M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004459L: kvm@vger.kernel.org
4460W: http://kvm.qumranet.com
4461S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004462F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07004463F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004464
Hollis Blanchard513014b2008-04-16 23:28:08 -05004465KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01004466M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004467L: kvm-ppc@vger.kernel.org
4468W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05004469S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004470F: arch/powerpc/include/asm/kvm*
4471F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05004472
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004473KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07004474M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03004475L: kvm-ia64@vger.kernel.org
4476W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004477S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004478F: Documentation/ia64/kvm.txt
4479F: arch/ia64/include/asm/kvm*
4480F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08004481
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004482KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07004483M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger4ae57b62012-06-05 13:05:02 +02004484M: Cornelia Huck <cornelia.huck@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004485M: linux390@de.ibm.com
4486L: linux-s390@vger.kernel.org
4487W: http://www.ibm.com/developerworks/linux/linux390/
4488S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004489F: Documentation/s390/kvm.txt
4490F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07004491F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01004492F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01004493
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004494KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07004495M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07004496W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07004497L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004499F: include/linux/kexec.h
4500F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07004501
David Howellse9714612010-03-29 23:42:09 +01004502KEYS/KEYRINGS:
4503M: David Howells <dhowells@redhat.com>
4504L: keyrings@linux-nfs.org
4505S: Maintained
Randy Dunlapd410fa42011-05-19 15:59:38 -07004506F: Documentation/security/keys.txt
David Howellse9714612010-03-29 23:42:09 +01004507F: include/linux/key.h
4508F: include/linux/key-type.h
4509F: include/keys/
4510F: security/keys/
4511
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004512KEYS-TRUSTED
4513M: David Safford <safford@watson.ibm.com>
4514M: Mimi Zohar <zohar@us.ibm.com>
4515L: linux-security-module@vger.kernel.org
4516L: keyrings@linux-nfs.org
4517S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004518F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004519F: include/keys/trusted-type.h
4520F: security/keys/trusted.c
4521F: security/keys/trusted.h
4522
4523KEYS-ENCRYPTED
4524M: Mimi Zohar <zohar@us.ibm.com>
4525M: David Safford <safford@watson.ibm.com>
4526L: linux-security-module@vger.kernel.org
4527L: keyrings@linux-nfs.org
4528S: Supported
Randy Dunlapd410fa42011-05-19 15:59:38 -07004529F: Documentation/security/keys-trusted-encrypted.txt
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004530F: include/keys/encrypted-type.h
Joe Perches19c90aa2012-01-10 15:09:00 -08004531F: security/keys/encrypted-keys/
Mimi Zohar7f3c68b2011-01-18 09:07:13 -05004532
Jason Wessel5b778da2010-05-20 21:04:28 -05004533KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07004534M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05004535W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004536L: kgdb-bugreport@lists.sourceforge.net
4537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004538F: Documentation/DocBook/kgdb.tmpl
4539F: drivers/misc/kgdbts.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08004540F: drivers/tty/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05004541F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07004542F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05004543F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05004544
Pekka Enberg456db8c2008-04-28 22:47:29 +03004545KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07004546M: Vegard Nossum <vegardno@ifi.uio.no>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02004547M: Pekka Enberg <penberg@kernel.org>
Pekka Enberg456db8c2008-04-28 22:47:29 +03004548S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08004549F: Documentation/kmemcheck.txt
4550F: arch/x86/include/asm/kmemcheck.h
4551F: arch/x86/mm/kmemcheck/
4552F: include/linux/kmemcheck.h
4553F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03004554
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004555KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07004556M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01004557S: Maintained
4558F: Documentation/kmemleak.txt
4559F: include/linux/kmemleak.h
4560F: mm/kmemleak.c
4561F: mm/kmemleak-test.c
4562
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004563KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07004564M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4565M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4566M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07004567M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004569F: Documentation/kprobes.txt
4570F: include/linux/kprobes.h
4571F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07004572
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004573KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004574M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07004575W: http://miguelojeda.es/auxdisplay.htm
4576W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004578F: Documentation/auxdisplay/ks0108
4579F: drivers/auxdisplay/ks0108.c
4580F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08004581
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07004584S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004585F: Documentation/networking/lapb-module.txt
4586F: include/*/lapb.h
4587F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588
4589LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07004590M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591L: linux-scsi@vger.kernel.org
4592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004593F: Documentation/scsi/53c700.txt
4594F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595
Richard Purdie263de9b2006-05-15 09:44:16 -07004596LED SUBSYSTEM
Bryan Wuc772fc22012-10-16 12:55:19 -07004597M: Bryan Wu <cooloney@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004598M: Richard Purdie <rpurdie@rpsys.net>
Bryan Wuaa69cb82012-05-31 19:51:37 +08004599L: linux-leds@vger.kernel.org
4600T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
Richard Purdie263de9b2006-05-15 09:44:16 -07004601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004602F: drivers/leds/
4603F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07004604
Jean Delvareb0461a42011-06-15 15:08:46 -07004605LEGACY EEPROM DRIVER
4606M: Jean Delvare <khali@linux-fr.org>
4607S: Maintained
4608F: Documentation/misc-devices/eeprom
4609F: drivers/misc/eeprom/eeprom.c
4610
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07004612M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613L: legousb-devel@lists.sourceforge.net
4614W: http://legousb.sourceforge.net/
4615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004616F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617
Michael Krufky055616a2012-10-02 00:56:06 -03004618LG2160 MEDIA DRIVER
4619M: Michael Krufky <mkrufky@linuxtv.org>
4620L: linux-media@vger.kernel.org
4621W: http://linuxtv.org/
4622W: http://github.com/mkrufky
4623Q: http://patchwork.linuxtv.org/project/linux-media/list/
4624T: git git://linuxtv.org/mkrufky/tuners.git
4625S: Maintained
4626F: drivers/media/dvb-frontends/lg2160.*
4627
Michael Krufky6f0e7722012-10-02 00:56:00 -03004628LGDT3305 MEDIA DRIVER
4629M: Michael Krufky <mkrufky@linuxtv.org>
4630L: linux-media@vger.kernel.org
4631W: http://linuxtv.org/
4632W: http://github.com/mkrufky
4633Q: http://patchwork.linuxtv.org/project/linux-media/list/
4634T: git git://linuxtv.org/mkrufky/tuners.git
4635S: Maintained
4636F: drivers/media/dvb-frontends/lgdt3305.*
4637
Rusty Russell568a17f2007-10-25 14:12:24 +10004638LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07004639M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004640L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10004641W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06004642S: Odd Fixes
Joe Perches070f4202012-02-03 15:37:13 -08004643F: arch/x86/include/asm/lguest*.h
Joe Perches679655d2009-04-07 20:44:32 -07004644F: arch/x86/lguest/
4645F: drivers/lguest/
4646F: include/linux/lguest*.h
Joe Perches070f4202012-02-03 15:37:13 -08004647F: tools/lguest/
Rusty Russell568a17f2007-10-25 14:12:24 +10004648
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07004650M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651W: http://www.ibm.com/linux/ltc/projects/ppc
4652S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004653F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654
Paul Mackerras852bb9f2008-07-04 21:04:42 +10004655LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07004656M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4657M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004659L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004660Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07004661T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00004663F: Documentation/powerpc/
4664F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665
4666LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004667M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004669L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004671F: arch/powerpc/platforms/powermac/
4672F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673
Grant Likely77a76362008-07-12 12:11:43 -06004674LINUX FOR POWERPC EMBEDDED MPC5XXX
Anatolij Gustschina1495072011-07-20 19:04:25 +00004675M: Anatolij Gustschin <agust@denx.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004676L: linuxppc-dev@lists.ozlabs.org
Anatolij Gustschina1495072011-07-20 19:04:25 +00004677T: git git://git.denx.de/linux-2.6-agust.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004679F: arch/powerpc/platforms/512x/
4680F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681
4682LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer30520912011-07-12 10:03:40 -04004683M: Josh Boyer <jwboyer@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004684M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004686L: linuxppc-dev@lists.ozlabs.org
Josh Boyer645609c2012-03-01 09:07:54 -05004687T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004689F: arch/powerpc/platforms/40x/
4690F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691
Grant Likely260c02a2007-10-02 12:15:34 +10004692LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07004693M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06004694W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004695L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00004696T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004698F: arch/powerpc/*/*virtex*
4699F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700
Tom Rinie93adf12005-07-26 12:49:53 -07004701LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07004702M: Vitaly Bordug <vitb@kernel.crashing.org>
4703M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07004704W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004705L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07004706S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07004707F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07004708
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07004710M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01004711W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004712L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01004713S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004714F: arch/powerpc/platforms/83xx/
Baruch Siach4c8f5812011-06-20 08:00:22 +03004715F: arch/powerpc/platforms/85xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716
Olof Johanssonab06ff32006-09-06 14:44:54 -05004717LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07004718M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004719L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00004720S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00004721F: arch/powerpc/platforms/pasemi/
4722F: drivers/*/*pasemi*
4723F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05004724
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07004726M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08004727L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728S: Supported
4729
Harry Weia23ce6d2011-02-11 16:52:20 +01004730LIS3LV02D ACCELEROMETER DRIVER
4731M: Eric Piel <eric.piel@tremplin-utc.net>
4732S: Maintained
Jean Delvareff606672011-03-21 17:59:36 +01004733F: Documentation/misc-devices/lis3lv02d
4734F: drivers/misc/lis3lv02d/
Éric Pielbd356652011-10-31 17:10:41 -07004735F: drivers/platform/x86/hp_accel.c
Harry Weia23ce6d2011-02-11 16:52:20 +01004736
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004737LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07004738M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004740F: include/linux/llc.h
4741F: include/net/llc*
4742F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004743
Adrien Demarez4e233cb2009-12-09 20:35:50 +01004744LM73 HARDWARE MONITOR DRIVER
4745M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
4746L: lm-sensors@lm-sensors.org
4747S: Maintained
4748F: drivers/hwmon/lm73.c
4749
Jean Delvare156e2d12011-07-25 21:46:11 +02004750LM78 HARDWARE MONITOR DRIVER
4751M: Jean Delvare <khali@linux-fr.org>
4752L: lm-sensors@lm-sensors.org
4753S: Maintained
4754F: Documentation/hwmon/lm78
4755F: drivers/hwmon/lm78.c
4756
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004758M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004759L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004761F: Documentation/hwmon/lm83
4762F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763
4764LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004765M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02004766L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004768F: Documentation/hwmon/lm90
4769F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004771LME2510 MEDIA DRIVER
4772M: Malcolm Priestley <tvboxspy@gmail.com>
4773L: linux-media@vger.kernel.org
4774W: http://linuxtv.org/
4775Q: http://patchwork.linuxtv.org/project/linux-media/list/
4776S: Maintained
4777F: drivers/media/usb/dvb-usb-v2/lmedm04*
4778
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004779LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07004780M: Peter Zijlstra <peterz@infradead.org>
4781M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01004782T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004784F: Documentation/lockdep*.txt
4785F: Documentation/lockstat.txt
4786F: include/linux/lockdep.h
4787F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02004788
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004789LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07004790M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01004791L: linux-ntfs-dev@lists.sourceforge.net
4792W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004794F: Documentation/ldm.txt
Joe Perches20d16fe2012-02-03 15:37:11 -08004795F: block/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796
Joern Engelef6ada32009-11-20 22:17:12 +01004797LogFS
4798M: Joern Engel <joern@logfs.org>
Prasad Joshi756ccb32011-09-13 23:04:11 +05304799M: Prasad Joshi <prasadjoshi.linux@gmail.com>
Joern Engelef6ada32009-11-20 22:17:12 +01004800L: logfs@logfs.org
4801W: logfs.org
4802S: Maintained
4803F: fs/logfs/
4804
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004805LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07004806M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08004807M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06004808L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004809L: linux-scsi@vger.kernel.org
4810W: http://www.lsilogic.com/support
4811S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004812F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07004813
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07004815M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816L: linux-scsi@vger.kernel.org
4817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004818F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819
Guenter Roecke5f5c992010-06-25 11:59:54 -07004820LTC4261 HARDWARE MONITOR DRIVER
4821M: Guenter Roeck <linux@roeck-us.net>
4822L: lm-sensors@lm-sensors.org
4823S: Maintained
4824F: Documentation/hwmon/ltc4261
4825F: drivers/hwmon/ltc4261.c
4826
Mike Frysinger81365c32008-10-29 14:01:12 -07004827LTP (Linux Test Project)
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004828M: Shubham Goyal <shubham@linux.vnet.ibm.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07004829M: Mike Frysinger <vapier@gentoo.org>
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004830M: Cyril Hrubis <chrubis@suse.cz>
4831M: Caspar Zhang <caspar@casparzhang.com>
4832M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07004833L: ltp-list@lists.sourceforge.net (subscribers-only)
4834W: http://ltp.sourceforge.net/
Wanlong Gao7d1ae8a2012-03-23 15:01:58 -07004835T: git git://github.com/linux-test-project/ltp.git
Subrata Modaka5fe2472010-08-09 17:20:50 -07004836T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07004837S: Maintained
4838
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004839M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004840M: Hirokazu Takata <takata@linux-m32r.org>
Paul Bolle0d89e542011-10-14 20:59:45 +02004841L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004842L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4843W: http://www.linux-m32r.org/
4844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004845F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07004846
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004848M: Geert Uytterhoeven <geert@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849L: linux-m68k@lists.linux-m68k.org
4850W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07004851T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004853F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07004854F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855
4856M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07004857M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01004859L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07004861F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862
4863M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07004864M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865W: http://www.tazenda.demon.co.uk/phil/linux-hp
4866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004867F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868
Malcolm Priestley68620bd2012-11-04 19:16:31 +01004869M88RS2000 MEDIA DRIVER
4870M: Malcolm Priestley <tvboxspy@gmail.com>
4871L: linux-media@vger.kernel.org
4872W: http://linuxtv.org/
4873Q: http://patchwork.linuxtv.org/project/linux-media/list/
4874S: Maintained
4875F: drivers/media/dvb-frontends/m88rs2000*
4876
Alexey Klimov07a092f2012-11-12 02:57:32 -03004877MA901 MASTERKIT USB FM RADIO DRIVER
4878M: Alexey Klimov <klimov.linux@gmail.com>
4879L: linux-media@vger.kernel.org
4880T: git git://linuxtv.org/media_tree.git
4881S: Maintained
4882F: drivers/media/radio/radio-ma901.c
4883
Jiri Benc64a327a2007-05-05 11:47:08 -07004884MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07004885M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07004886L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004887W: http://wireless.kernel.org/
Johannes Bergce466572012-06-05 15:42:55 +02004888T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4889T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Jiri Benc64a327a2007-05-05 11:47:08 -07004890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004891F: Documentation/networking/mac80211-injection.txt
4892F: include/net/mac80211.h
4893F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07004894
Stefano Brivio1036d862007-12-23 04:46:27 +01004895MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07004896M: Stefano Brivio <stefano.brivio@polimi.it>
4897M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01004898L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02004899W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
Johannes Bergce466572012-06-05 15:42:55 +02004900T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
4901T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Stefano Brivio1036d862007-12-23 04:46:27 +01004902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004903F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01004904
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004905MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004906M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004907L: netdev@vger.kernel.org
4908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004909F: drivers/net/macvlan.c
4910F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07004911
Michael Kerriskfaf16682005-07-31 22:34:47 -07004912MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07004913M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004914W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07004915L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07004916S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07004917
stephen hemminger44c14c12012-04-02 12:59:47 +00004918MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
4919M: Mirko Lindner <mlindner@marvell.com>
4920M: Stephen Hemminger <shemminger@vyatta.com>
4921L: netdev@vger.kernel.org
4922S: Maintained
4923F: drivers/net/ethernet/marvell/sk*
4924
Stefano Brivio74cda162007-11-19 20:27:46 +01004925MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004926M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01004927L: libertas-dev@lists.infradead.org
4928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004929F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01004930
Dale Farnsworthb60d6972006-01-16 16:45:45 -07004931MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004932M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004933L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00004934S: Maintained
Jeff Kirsher527a6262011-05-20 20:18:55 -07004935F: drivers/net/ethernet/marvell/mv643xx_eth.*
Joe Perches679655d2009-04-07 20:44:32 -07004936F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937
Bing Zhaofcad5842011-07-13 13:11:58 -07004938MARVELL MWIFIEX WIRELESS DRIVER
4939M: Bing Zhao <bzhao@marvell.com>
4940L: linux-wireless@vger.kernel.org
4941S: Maintained
4942F: drivers/net/wireless/mwifiex/
4943
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004944MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01004945M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004946L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02004947S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02004948F: drivers/net/wireless/mwl8k.c
4949
Pierre Ossman2a695672009-03-16 19:52:26 +01004950MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04004951M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04004952S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07004953F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01004954
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004956L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07004957S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004958F: drivers/video/matrox/matroxfb_*
4959F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960
Guenter Roeckca462082012-06-01 23:28:23 -07004961MAX16065 HARDWARE MONITOR DRIVER
4962M: Guenter Roeck <linux@roeck-us.net>
4963L: lm-sensors@lm-sensors.org
4964S: Maintained
4965F: Documentation/hwmon/max16065
4966F: drivers/hwmon/max16065.c
4967
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004968MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Hans J. Koch6a534c92011-04-14 15:22:16 -07004969M: "Hans J. Koch" <hjk@hansjkoch.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004970L: lm-sensors@lm-sensors.org
4971S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004972F: Documentation/hwmon/max6650
4973F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004974
Hans Verkuil9be3c9a2012-11-23 07:12:43 -03004975MAXIRADIO FM RADIO RECEIVER DRIVER
4976M: Hans Verkuil <hverkuil@xs4all.nl>
4977L: linux-media@vger.kernel.org
4978T: git git://linuxtv.org/media_tree.git
4979W: http://linuxtv.org
4980S: Maintained
4981F: drivers/media/radio/radio-maxiradio*
4982
Joe Perches127c49a2009-04-08 08:34:04 -07004983MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004984M: Mauro Carvalho Chehab <mchehab@redhat.com>
Joe Perches127c49a2009-04-08 08:34:04 -07004985P: LinuxTV.org Project
4986L: linux-media@vger.kernel.org
4987W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004988Q: http://patchwork.kernel.org/project/linux-media/list/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02004989T: git git://linuxtv.org/media_tree.git
Joe Perches127c49a2009-04-08 08:34:04 -07004990S: Maintained
4991F: Documentation/dvb/
4992F: Documentation/video4linux/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004993F: Documentation/DocBook/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004994F: drivers/media/
Mauro Carvalho Chehabffe06192011-11-24 19:22:10 -02004995F: drivers/staging/media/
Joe Perches127c49a2009-04-08 08:34:04 -07004996F: include/media/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02004997F: include/uapi/linux/dvb/
4998F: include/uapi/linux/videodev2.h
4999F: include/uapi/linux/media.h
5000F: include/uapi/linux/v4l2-*
5001F: include/uapi/linux/meye.h
5002F: include/uapi/linux/ivtv*
5003F: include/uapi/linux/uvcvideo.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005004
Hans Verkuil6149a932012-11-23 07:21:19 -03005005MEDIAVISION PRO MOVIE STUDIO DRIVER
5006M: Hans Verkuil <hverkuil@xs4all.nl>
5007L: linux-media@vger.kernel.org
5008T: git git://linuxtv.org/media_tree.git
5009W: http://linuxtv.org
5010S: Odd Fixes
5011F: drivers/media/parport/pms*
5012
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005013MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005014M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005015L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005016W: http://megaraid.lsilogic.com
5017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005018F: Documentation/scsi/megaraid.txt
5019F: drivers/scsi/megaraid.*
5020F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07005021
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005022MEMORY MANAGEMENT
5023L: linux-mm@kvack.org
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005024W: http://www.linux-mm.org
5025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005026F: include/linux/mm.h
5027F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07005028
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005029MEMORY RESOURCE CONTROLLER
KAMEZAWA Hiroyukic193c822011-12-08 14:34:10 -08005030M: Johannes Weiner <hannes@cmpxchg.org>
5031M: Michal Hocko <mhocko@suse.cz>
Balbir Singh185e5952011-06-15 15:08:30 -07005032M: Balbir Singh <bsingharora@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005033M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
KAMEZAWA Hiroyuki12340312011-11-15 14:35:59 -08005034L: cgroups@vger.kernel.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005035L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005037F: mm/memcontrol.c
Namhyung Kim4e4c9412011-05-26 16:25:32 -07005038F: mm/page_cgroup.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08005039
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005040MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07005041M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005043W: http://www.linux-mtd.infradead.org/
5044Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04005045T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005047F: drivers/mtd/
5048F: include/linux/mtd/
5049F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050
Michal Simekc6375b02009-03-27 14:25:52 +01005051MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07005052M: Michal Simek <monstr@monstr.eu>
Paul Bollef3cb0e32011-10-12 21:35:40 +02005053L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
Michal Simekc6375b02009-03-27 14:25:52 +01005054W: http://www.monstr.eu/fdt/
5055T: git git://git.monstr.eu/linux-2.6-microblaze.git
5056S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02005057F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058
5059MICROTEK X6 SCANNER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02005060M: Oliver Neukum <oliver@neukum.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005062F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063
5064MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07005065M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066L: linux-mips@linux-mips.org
Ralf Baechle60970502011-06-09 10:32:22 +01005067W: http://www.linux-mips.org/
Ralf Baechleb05e9882011-11-14 12:58:16 +00005068T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
Ralf Baechle60970502011-06-09 10:32:22 +01005069Q: http://patchwork.linux-mips.org/project/linux-mips/list/
Ralf Baechle7425b342006-03-10 13:47:21 +00005070S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005071F: Documentation/mips/
5072F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073
Hans Verkuil08b76202012-11-23 07:15:42 -03005074MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5075M: Hans Verkuil <hverkuil@xs4all.nl>
5076L: linux-media@vger.kernel.org
5077T: git git://linuxtv.org/media_tree.git
5078W: http://linuxtv.org
5079S: Odd Fixes
5080F: drivers/media/radio/radio-miropcm20*
5081
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005083M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005085F: include/linux/module.h
5086F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087
5088MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089W: http://popies.net/meye/
Stelian Popb7788e12011-01-12 16:59:53 -08005090S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005091F: Documentation/video4linux/meye.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005092F: drivers/media/pci/meye/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02005093F: include/uapi/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094
Pavel Pisac58ff042007-05-16 01:10:41 +02005095MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005096M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005097L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02005098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005099F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02005100
Jiri Slabyb9705b62008-04-30 00:53:48 -07005101MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07005102M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08005103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005104F: Documentation/serial/moxa-smartio
Joe Perchesc8974012011-04-14 15:22:05 -07005105F: drivers/tty/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08005106
Alexey Klimov889b2f82012-11-16 17:43:59 -03005107MR800 AVERMEDIA USB FM RADIO DRIVER
5108M: Alexey Klimov <klimov.linux@gmail.com>
5109L: linux-media@vger.kernel.org
5110T: git git://linuxtv.org/media_tree.git
5111S: Maintained
5112F: drivers/media/radio/radio-mr800.c
5113
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005114MSI LAPTOP SUPPORT
Joe Perches706e69d2011-03-22 16:34:26 -07005115M: "Lee, Chun-Yi" <jlee@novell.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05005116L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005118F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04005119
Anisse Astier0f1006b2009-12-17 11:28:49 +01005120MSI WMI SUPPORT
5121M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd09448532010-02-11 10:40:13 -05005122L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01005123S: Supported
5124F: drivers/platform/x86/msi-wmi.c
5125
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005126MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07005127M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07005128T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005129S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005130F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07005131
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02005132MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04005133M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07005134L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005135T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005137F: drivers/mmc/
5138F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01005139
David Brownell15a05802007-08-08 09:12:54 -07005140MULTIMEDIA CARD (MMC) ETC. OVER SPI
Grant Likely22b174f2011-06-06 00:40:48 -06005141S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005142F: drivers/mmc/host/mmc_spi.c
5143F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07005144
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005146M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005148F: Documentation/sound/oss/MultiSound
5149F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150
Jiri Slabyd7354102006-12-08 02:38:35 -08005151MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02005152S: Orphan
Joe Perchesc8974012011-04-14 15:22:05 -07005153F: drivers/tty/isicom.c
Joe Perches679655d2009-04-07 20:44:32 -07005154F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08005155
Felipe Balbi550a7372008-07-24 12:27:36 +03005156MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03005157M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005158L: linux-usb@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005159T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005161F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03005162
Michael Krufkyea0af5f2012-10-02 00:55:41 -03005163MXL5007T MEDIA DRIVER
5164M: Michael Krufky <mkrufky@linuxtv.org>
5165L: linux-media@vger.kernel.org
5166W: http://linuxtv.org/
5167W: http://github.com/mkrufky
5168Q: http://patchwork.linuxtv.org/project/linux-media/list/
5169T: git git://linuxtv.org/mkrufky/tuners.git
5170S: Maintained
5171F: drivers/media/tuners/mxl5007t.*
5172
Brice Goglin2d3cf582008-05-17 12:45:36 +02005173MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07005174M: Andrew Gallatin <gallatin@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02005175L: netdev@vger.kernel.org
5176W: http://www.myri.com/scs/download-Myri10GE.html
5177S: Supported
Jeff Kirsher93f78482011-05-13 02:24:46 -07005178F: drivers/net/ethernet/myricom/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02005179
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180NATSEMI ETHERNET DRIVER (DP8381x)
David S. Miller09d208e2012-04-10 21:10:43 -04005181S: Orphan
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07005182F: drivers/net/ethernet/natsemi/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183
Daniel Mack23dc05a2011-05-18 11:28:38 +02005184NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5185M: Daniel Mack <zonque@gmail.com>
5186S: Maintained
5187L: alsa-devel@alsa-project.org
5188W: http://www.native-instruments.com
5189F: sound/usb/caiaq/
5190
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07005192M: Petr Vandrovec <petr@vandrovec.name>
5193S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005194F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195
5196NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07005197M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198L: linux-scsi@vger.kernel.org
5199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005200F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005202NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07005203M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07005204L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00005205W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08005206S: Supported
5207F: drivers/infiniband/hw/nes/
5208
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005209NETEM NETWORK EMULATOR
Stephen Hemminger377a4672011-11-16 17:58:46 -05005210M: Stephen Hemminger <shemminger@vyatta.com>
David Brownellf318a632007-04-23 14:41:06 -07005211L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005213F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07005214
Jon Masonb2f5a052010-07-15 08:47:27 +00005215NETERION 10GbE DRIVERS (s2io/vxge)
Jon Masone3806882011-03-07 07:02:01 +00005216M: Jon Mason <jdmason@kudzu.us>
Jiri Slaby4a584482007-08-30 23:56:39 -07005217L: netdev@vger.kernel.org
Jiri Slaby4a584482007-08-30 23:56:39 -07005218S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005219F: Documentation/networking/s2io.txt
Jon Masonb2f5a052010-07-15 08:47:27 +00005220F: Documentation/networking/vxge.txt
Jeff Kirsher86387e12011-05-13 02:51:01 -07005221F: drivers/net/ethernet/neterion/
Jiri Slaby4a584482007-08-30 23:56:39 -07005222
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223NETFILTER/IPTABLES/IPCHAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224P: Harald Welte
5225P: Jozsef Kadlecsik
Pablo Neira Ayuso0e05e192011-11-01 09:44:56 +01005226M: Pablo Neira Ayuso <pablo@netfilter.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005227M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07005228L: netfilter-devel@vger.kernel.org
5229L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07005230L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231W: http://www.netfilter.org/
5232W: http://www.iptables.org/
Pablo Neira Ayusoa2da3992012-06-25 12:07:18 +02005233T: git git://1984.lsi.us.es/nf
5234T: git git://1984.lsi.us.es/nf-next
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005236F: include/linux/netfilter*
5237F: include/linux/netfilter/
5238F: include/net/netfilter/
5239F: net/*/netfilter.c
5240F: net/*/netfilter/
5241F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242
Paul Moore4cc67732006-09-25 15:57:13 -07005243NETLABEL
Paul Moore87a08742011-08-01 11:10:26 +00005244M: Paul Moore <paul@paul-moore.com>
Paul Moore4cc67732006-09-25 15:57:13 -07005245W: http://netlabel.sf.net
5246L: netdev@vger.kernel.org
Paul Moore87a08742011-08-01 11:10:26 +00005247S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005248F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07005249F: include/net/netlabel.h
5250F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07005251
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005253M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005255W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005257F: include/linux/netrom.h
5258F: include/net/netrom.h
5259F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260
Pavel Machek5ddb88c2006-09-29 02:01:29 -07005261NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07005262M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005264F: Documentation/blockdev/nbd.txt
5265F: drivers/block/nbd.c
5266F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267
Neil Horman6e436502009-10-05 03:56:55 +00005268NETWORK DROP MONITOR
5269M: Neil Horman <nhorman@tuxdriver.com>
5270L: netdev@vger.kernel.org
5271S: Maintained
5272W: https://fedorahosted.org/dropwatch/
5273F: net/core/drop_monitor.c
5274
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07005276M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005277L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00005278W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00005279W: http://patchwork.ozlabs.org/project/netdev/list/
Nicolas de Pesloüan814fd602011-08-23 23:31:42 +00005280T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5281T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005283F: net/
5284F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005285F: include/linux/in.h
5286F: include/linux/net.h
5287F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288
5289NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07005290M: "David S. Miller" <davem@davemloft.net>
5291M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Joe Perches8b58be82009-07-29 15:04:30 -07005292M: James Morris <jmorris@namei.org>
5293M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5294M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005295L: netdev@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07005296T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005298F: net/ipv4/
5299F: net/ipv6/
5300F: include/net/ip*
Eric Dumazet0a148422011-04-20 09:27:32 +00005301F: arch/x86/net/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302
David S. Miller73b76562012-10-16 14:08:40 -04005303NETWORKING [IPSEC]
5304M: Steffen Klassert <steffen.klassert@secunet.com>
5305M: Herbert Xu <herbert@gondor.apana.org.au>
5306M: "David S. Miller" <davem@davemloft.net>
5307L: netdev@vger.kernel.org
5308T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5309S: Maintained
5310F: net/xfrm/
5311F: net/key/
5312F: net/ipv4/xfrm*
5313F: net/ipv6/xfrm*
5314F: include/uapi/linux/xfrm.h
5315F: include/net/xfrm.h
5316
James Morris10e2ff12007-08-25 14:41:28 -07005317NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Paul Moore87a08742011-08-01 11:10:26 +00005318M: Paul Moore <paul@paul-moore.com>
James Morris10e2ff12007-08-25 14:41:28 -07005319L: netdev@vger.kernel.org
5320S: Maintained
5321
John W. Linville29f8f632006-01-18 14:52:48 -08005322NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07005323M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08005324L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005325Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches08deed12012-03-23 15:01:57 -07005326T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
John W. Linville29f8f632006-01-18 14:52:48 -08005327S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07005328F: net/mac80211/
5329F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07005330F: net/wireless/
5331F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07005332F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07005333F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07005334F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08005335
Joe Perches788873a2009-04-16 09:38:45 +00005336NETWORKING DRIVERS
5337L: netdev@vger.kernel.org
5338W: http://www.linuxfoundation.org/en/Net
Joe Perches08deed12012-03-23 15:01:57 -07005339T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5340T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
Joe Perches788873a2009-04-16 09:38:45 +00005341S: Odd Fixes
5342F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00005343F: include/linux/if_*
Jean Delvare0b63bf12012-10-18 22:11:38 +02005344F: include/linux/netdevice.h
5345F: include/linux/arcdevice.h
5346F: include/linux/etherdevice.h
5347F: include/linux/fcdevice.h
5348F: include/linux/fddidevice.h
5349F: include/linux/hippidevice.h
5350F: include/linux/inetdevice.h
Joe Perches788873a2009-04-16 09:38:45 +00005351
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005352NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha83c07dd2011-08-18 04:12:32 -07005353M: Sony Chacko <sony.chacko@qlogic.com>
5354M: Rajesh Borundia <rajesh.borundia@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005355L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00005356W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005357S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07005358F: drivers/net/ethernet/qlogic/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005359
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005360NFC SUBSYSTEM
5361M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5362M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5363M: Samuel Ortiz <sameo@linux.intel.com>
5364L: linux-wireless@vger.kernel.org
Samuel Ortiz5adf54d2012-07-18 12:58:51 +02005365L: linux-nfc@lists.01.org (moderated for non-subscribers)
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005366S: Maintained
5367F: net/nfc/
5368F: include/linux/nfc.h
Ilan Elias55eb94f2011-09-18 11:19:34 +03005369F: include/net/nfc/
Aloisio Almeida Jr6423d302011-08-19 16:09:49 -03005370F: drivers/nfc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04005372NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07005373M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05005374L: linux-nfs@vger.kernel.org
5375W: http://client.linux-nfs.org
5376T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005378F: fs/lockd/
5379F: fs/nfs/
5380F: fs/nfs_common/
5381F: net/sunrpc/
5382F: include/linux/lockd/
5383F: include/linux/nfs*
5384F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385
5386NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005387M: Jan-Pascal van Best <janpascal@vanbest.org>
5388M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005389L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390S: Maintained
Jeff Kirsher8efc9122011-05-12 21:21:33 -07005391F: drivers/net/ethernet/racal/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005393NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005394M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09005395L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005396W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09005397T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005398S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005399F: Documentation/filesystems/nilfs2.txt
5400F: fs/nilfs2/
5401F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07005402
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005404M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005407F: Documentation/scsi/NinjaSCSI.txt
5408F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409
5410NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005411M: GOTO Masanori <gotom@debian.or.jp>
5412M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005415F: Documentation/scsi/NinjaSCSI.txt
5416F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005419M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005421W: http://www.tuxera.com/
Anton Altaparmakove6f4dee2012-02-27 09:08:33 +00005422T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00005423S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005424F: Documentation/filesystems/ntfs.txt
5425F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005427NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005428M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005429L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01005430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005431F: drivers/video/riva/
5432F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433
Tony Lindgrenf5525782009-05-28 13:23:53 -07005434OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07005435M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005436L: linux-omap@vger.kernel.org
5437W: http://www.muru.com/linux/omap/
5438W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08005439Q: http://patchwork.kernel.org/project/linux-omap/list/
Jarkko Nikula30bd0122011-11-04 13:18:02 +02005440T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005441S: Maintained
Felipe Contreras4e04d5a32009-09-21 17:04:25 -07005442F: arch/arm/*omap*/
Jean Delvare046d0a32012-01-12 20:32:05 +01005443F: drivers/i2c/busses/i2c-omap.c
5444F: include/linux/i2c-omap.h
Tony Lindgrenf5525782009-05-28 13:23:53 -07005445
5446OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005447M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005448L: linux-omap@vger.kernel.org
5449S: Maintained
5450F: arch/arm/*omap*/*clock*
5451
5452OMAP POWER MANAGEMENT SUPPORT
Kevin Hilman126f7e22011-01-04 15:33:08 -08005453M: Kevin Hilman <khilman@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005454L: linux-omap@vger.kernel.org
5455S: Maintained
5456F: arch/arm/*omap*/*pm*
Kevin Hilmanc46938d2012-07-11 14:02:40 -07005457F: drivers/cpufreq/omap-cpufreq.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005458
Paul Walmsley692ab1f2011-03-09 18:44:28 -07005459OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5460M: Rajendra Nayak <rnayak@ti.com>
5461M: Paul Walmsley <paul@pwsan.com>
5462L: linux-omap@vger.kernel.org
5463S: Maintained
5464F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5465F: arch/arm/mach-omap2/powerdomain44xx.c
5466F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5467F: arch/arm/mach-omap2/clockdomain44xx.c
5468
Tony Lindgrenf5525782009-05-28 13:23:53 -07005469OMAP AUDIO SUPPORT
Jarkko Nikula6c284902012-04-03 09:45:43 +03005470M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Jarkko Nikula7ec41ee2011-08-11 15:44:57 +03005471M: Jarkko Nikula <jarkko.nikula@bitmer.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005472L: alsa-devel@alsa-project.org (subscribers-only)
5473L: linux-omap@vger.kernel.org
5474S: Maintained
5475F: sound/soc/omap/
5476
5477OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005478M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005479L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07005480L: linux-omap@vger.kernel.org
5481S: Maintained
5482F: drivers/video/omap/
5483
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005484OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen830e6382011-02-23 16:34:17 +02005485M: Tomi Valkeinen <tomi.valkeinen@ti.com>
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005486L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005487L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005488S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02005489F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03005490F: Documentation/arm/OMAP/DSS
5491
Ohad Ben-Cohen8b37fcf2011-09-12 10:43:01 +03005492OMAP HARDWARE SPINLOCK SUPPORT
5493M: Ohad Ben-Cohen <ohad@wizery.com>
5494L: linux-omap@vger.kernel.org
5495S: Maintained
5496F: drivers/hwspinlock/omap_hwspinlock.c
5497F: arch/arm/mach-omap2/hwspinlock.c
5498
Tony Lindgrenf5525782009-05-28 13:23:53 -07005499OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005500M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005501L: linux-omap@vger.kernel.org
5502S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005503F: drivers/mmc/host/omap.c
5504
5505OMAP HS MMC SUPPORT
Venkatraman S0a4585c2012-08-17 23:59:53 +05305506M: Venkatraman S <svenkatr@ti.com>
5507L: linux-mmc@vger.kernel.org
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005508L: linux-omap@vger.kernel.org
Venkatraman S0a4585c2012-08-17 23:59:53 +05305509S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07005510F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07005511
5512OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005513M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005514S: Maintained
5515F: drivers/char/hw_random/omap-rng.c
5516
Paul Walmsleyf400c822010-12-06 19:08:54 -07005517OMAP HWMOD SUPPORT
5518M: Benoît Cousson <b-cousson@ti.com>
5519M: Paul Walmsley <paul@pwsan.com>
5520L: linux-omap@vger.kernel.org
5521S: Maintained
5522F: arch/arm/mach-omap2/omap_hwmod.c
5523F: arch/arm/plat-omap/include/plat/omap_hwmod.h
5524
5525OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5526M: Benoît Cousson <b-cousson@ti.com>
5527L: linux-omap@vger.kernel.org
5528S: Maintained
5529F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5530
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005531OMAP IMAGE SIGNAL PROCESSOR (ISP)
5532M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5533L: linux-media@vger.kernel.org
5534S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005535F: drivers/media/platform/omap3isp/
Laurent Pinchart7e8970e2011-02-12 18:05:06 -03005536
Tony Lindgrenf5525782009-05-28 13:23:53 -07005537OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03005538M: Felipe Balbi <balbi@ti.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07005539L: linux-usb@vger.kernel.org
5540L: linux-omap@vger.kernel.org
Felipe Balbi43b416e2011-05-13 15:21:47 +03005541T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
Tony Lindgrenf5525782009-05-28 13:23:53 -07005542S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07005543F: drivers/usb/*/*omap*
5544F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07005545
Kevin Hilman6d994712012-07-16 10:05:07 -07005546OMAP GPIO DRIVER
5547M: Santosh Shilimkar <santosh.shilimkar@ti.com>
5548M: Kevin Hilman <khilman@ti.com>
5549L: linux-omap@vger.kernel.org
5550S: Maintained
5551F: drivers/gpio/gpio-omap.c
5552
Bob Copeland0ad122d2008-07-25 19:45:18 -07005553OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005554M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07005555L: linux-karma-devel@lists.sourceforge.net
5556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005557F: Documentation/filesystems/omfs.txt
5558F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07005559
Harald Weltec1986ee2005-11-13 16:06:29 -08005560OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005561M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08005562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005563F: drivers/char/pcmcia/cm4000_cs.c
5564F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08005565
Harald Welte77c44ab2005-11-13 16:06:26 -08005566OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005567M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08005568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005569F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08005570
Jonathan Corbet77d51402007-03-22 19:44:17 -03005571OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005572M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005573L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02005574T: git git://linuxtv.org/media_tree.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03005575S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03005576F: drivers/media/i2c/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03005577
Thomas Gleixner431bca72007-05-02 09:31:35 +02005578ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005579M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02005580L: linux-mtd@lists.infradead.org
5581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005582F: drivers/mtd/onenand/
5583F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02005584
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005586M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587L: osst-users@lists.sourceforge.net
5588L: linux-scsi@vger.kernel.org
5589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005590F: drivers/scsi/osst*
5591F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005593OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005594M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01005595L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005597F: Documentation/i2c/busses/i2c-ocores
5598F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005599
Grant Likely860c44c2009-10-26 16:49:49 -07005600OPEN FIRMWARE AND FLATTENED DEVICE TREE
5601M: Grant Likely <grant.likely@secretlab.ca>
Rob Herringf910b832011-09-14 07:40:10 -05005602M: Rob Herring <rob.herring@calxeda.com>
Paul Bolle78bba982011-02-12 12:33:59 +01005603L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
Grant Likely860c44c2009-10-26 16:49:49 -07005604W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06005605T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07005606S: Maintained
Rob Herringf910b832011-09-14 07:40:10 -05005607F: Documentation/devicetree
Grant Likely860c44c2009-10-26 16:49:49 -07005608F: drivers/of
5609F: include/linux/of*.h
Rob Herring36165f52012-10-01 11:13:21 -05005610F: scripts/dtc
Grant Likely860c44c2009-10-26 16:49:49 -07005611K: of_get_property
Mark Brownd945fa02011-08-02 14:13:26 +09005612K: of_match_table
Grant Likely860c44c2009-10-26 16:49:49 -07005613
Jonas Bonn19f9d392011-06-04 22:00:38 +03005614OPENRISC ARCHITECTURE
5615M: Jonas Bonn <jonas@southpole.se>
5616W: http://openrisc.net
Paul Bolleeab7c1c2011-10-14 21:00:37 +02005617L: linux@lists.openrisc.net (moderated for non-subscribers)
Jonas Bonn19f9d392011-06-04 22:00:38 +03005618S: Maintained
5619T: git git://openrisc.net/~jonas/linux
5620F: arch/openrisc
5621
Jesse Grossccb13522011-10-25 19:26:31 -07005622OPENVSWITCH
5623M: Jesse Gross <jesse@nicira.com>
5624L: dev@openvswitch.org
5625W: http://openvswitch.org
5626T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5627S: Maintained
5628F: net/openvswitch/
5629
Clemens Ladischaf399172011-01-10 16:32:54 +01005630OPL4 DRIVER
5631M: Clemens Ladisch <clemens@ladisch.de>
5632L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5633T: git git://git.alsa-project.org/alsa-kernel.git
5634S: Maintained
5635F: sound/drivers/opl4/
5636
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637OPROFILE
Robert Richter4cf7e712012-10-29 18:53:25 +01005638M: Robert Richter <rric@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639L: oprofile-list@lists.sf.net
5640S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02005641F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07005642F: arch/*/oprofile/
5643F: drivers/oprofile/
5644F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005645
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005646ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07005647M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08005648M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005649L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5650W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07005651T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005652S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005653F: Documentation/filesystems/ocfs2.txt
5654F: Documentation/filesystems/dlmfs.txt
5655F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005656
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07005658L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02005659W: http://wireless.kernel.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07005660W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01005661S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005662F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005664OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005665M: Boaz Harrosh <bharrosh@panasas.com>
Benny Halevydf4e33a2011-09-14 16:22:26 -07005666M: Benny Halevy <bhalevy@tonian.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02005667L: osd-dev@open-osd.org
5668W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07005669T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02005670S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005671F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07005672F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03005673F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02005674
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005675P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005676M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005677L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02005678W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005680F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005681
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005682PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005683M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005684L: netdev@vger.kernel.org
5685S: Maintained
Jeff Kirsherded19ad2011-05-15 20:56:37 -07005686F: drivers/net/ethernet/pasemi/*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06005687
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005688PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005689M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01005690L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005692F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01005693
Steffen Klassert48fc2672010-08-13 10:10:46 -04005694PADATA PARALLEL EXECUTION MECHANISM
5695M: Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klassert48fc2672010-08-13 10:10:46 -04005696L: linux-crypto@vger.kernel.org
5697S: Maintained
5698F: kernel/padata.c
5699F: include/linux/padata.h
5700F: Documentation/padata.txt
5701
Harald Welte709ee532008-09-23 17:46:57 +02005702PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005703M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd09448532010-02-11 10:40:13 -05005704L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02005705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005706F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02005707
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01005708PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07005709M: David Howells <dhowells@redhat.com>
5710M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01005711L: linux-am33-list@redhat.com (moderated for non-subscribers)
5712W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005714F: Documentation/mn10300/
5715F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01005716
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005718L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08005719S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005720F: drivers/parport/
5721F: include/linux/parport*.h
5722F: drivers/char/ppdev.c
5723F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005725PARAVIRT_OPS INTERFACE
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08005726M: Jeremy Fitzhardinge <jeremy@goop.org>
Joe Perches8b58be82009-07-29 15:04:30 -07005727M: Chris Wright <chrisw@sous-sol.org>
5728M: Alok Kataria <akataria@vmware.com>
5729M: Rusty Russell <rusty@rustcorp.com.au>
Michael Wittenc996d8b2010-11-15 19:55:34 +00005730L: virtualization@lists.linux-foundation.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005731S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005732F: Documentation/ia64/paravirt_ops.txt
5733F: arch/*/kernel/paravirt*
5734F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005735
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07005737M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07005738L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739W: http://www.torque.net/linux-pp.html
5740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005741F: Documentation/blockdev/paride.txt
5742F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743
5744PARISC ARCHITECTURE
James Bottomleyb8828772009-08-04 23:59:55 +00005745M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinb38a03b2012-02-24 10:36:16 -05005746M: Helge Deller <deller@gmx.de>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00005747L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08005749Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches08deed12012-03-23 15:01:57 -07005750T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005752F: arch/parisc/
5753F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754
Jim Cromie1662d322006-10-06 00:43:59 -07005755PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005756M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005757L: lm-sensors@lm-sensors.org
5758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005759F: Documentation/hwmon/pc87360
5760F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07005761
5762PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005763M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005764S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005765F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07005766
Jean Delvare1ad107f2010-08-14 21:09:00 +02005767PC87427 HARDWARE MONITORING DRIVER
5768M: Jean Delvare <khali@linux-fr.org>
5769L: lm-sensors@lm-sensors.org
5770S: Maintained
5771F: Documentation/hwmon/pc87427
5772F: drivers/hwmon/pc87427.c
5773
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005774PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005775M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005776S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005777F: drivers/leds/leds-pca9532.c
5778F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02005779
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005780PCA9541 I2C BUS MASTER SELECTOR DRIVER
Guenter Roeckca462082012-06-01 23:28:23 -07005781M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005782L: linux-i2c@vger.kernel.org
5783S: Maintained
Wolfram Sangb4f0b742012-04-25 22:29:43 +02005784F: drivers/i2c/muxes/i2c-mux-pca9541.c
Guenter Roeck5ce914a2010-10-24 18:16:59 +02005785
Wolfram Sanga1867d32009-09-18 22:45:51 +02005786PCA9564/PCA9665 I2C BUS DRIVER
5787M: Wolfram Sang <w.sang@pengutronix.de>
5788L: linux-i2c@vger.kernel.org
5789S: Maintained
5790F: drivers/i2c/algos/i2c-algo-pca.c
5791F: drivers/i2c/busses/i2c-pca-*
5792F: include/linux/i2c-algo-pca.h
5793F: include/linux/i2c-pca-platform.h
5794
Khalid Aziz3971dae2012-04-12 12:49:13 -07005795PCDP - PRIMARY CONSOLE AND DEBUG PORT
Khalid Aziz055e72f2012-10-04 17:12:40 -07005796M: Khalid Aziz <khalid@gonehiking.org>
Khalid Aziz3971dae2012-04-12 12:49:13 -07005797S: Maintained
5798F: drivers/firmware/pcdp.*
5799
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005800PCI ERROR RECOVERY
Joe Perches63059022012-06-07 14:21:10 -07005801M: Linas Vepstas <linasvepstas@gmail.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07005802L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005803S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005804F: Documentation/PCI/pci-error-recovery.txt
5805F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06005806
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807PCI SUBSYSTEM
Jesse Barnes5ac3a6d2012-03-20 11:55:20 -07005808M: Bjorn Helgaas <bhelgaas@google.com>
Jesse Barnes29054742008-05-03 08:35:49 -07005809L: linux-pci@vger.kernel.org
Bjorn Helgaas99662dd2012-05-07 08:36:08 -06005810Q: http://patchwork.ozlabs.org/project/linux-pci/list/
Bjorn Helgaasc0233ed2012-05-24 14:18:14 -06005811T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005813F: Documentation/PCI/
5814F: drivers/pci/
5815F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005818P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07005819L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08005820W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07005821T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07005822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005823F: Documentation/pcmcia/
5824F: drivers/pcmcia/
5825F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826
5827PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08005828M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005829L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830S: Maintained
Jeff Kirsherb955f6c2011-03-30 07:46:36 -07005831F: drivers/net/ethernet/amd/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832
Steffen Klassert48fc2672010-08-13 10:10:46 -04005833PCRYPT PARALLEL CRYPTO ENGINE
5834M: Steffen Klassert <steffen.klassert@secunet.com>
5835L: linux-crypto@vger.kernel.org
5836S: Maintained
5837F: crypto/pcrypt.c
5838F: include/crypto/pcrypt.h
5839
Tejun Heoe72df0b2010-12-10 17:02:49 +01005840PER-CPU MEMORY ALLOCATOR
5841M: Tejun Heo <tj@kernel.org>
5842M: Christoph Lameter <cl@linux-foundation.org>
Tejun Heoe72df0b2010-12-10 17:02:49 +01005843T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
5844S: Maintained
5845F: include/linux/percpu*.h
5846F: mm/percpu*.c
5847F: arch/*/include/asm/percpu.h
5848
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005849PER-TASK DELAY ACCOUNTING
Balbir Singh185e5952011-06-15 15:08:30 -07005850M: Balbir Singh <bsingharora@gmail.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005852F: include/linux/delayacct.h
5853F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07005854
Ingo Molnar57c0c152009-09-21 12:20:38 +02005855PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005856M: Peter Zijlstra <a.p.zijlstra@chello.nl>
5857M: Paul Mackerras <paulus@samba.org>
Ingo Molnardd9b2382012-03-19 21:03:46 +01005858M: Ingo Molnar <mingo@redhat.com>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02005859M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005860T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005861S: Supported
Geunsik Limd53e8362011-08-18 16:44:57 +09005862F: kernel/events/*
Vincent Legolla0032362009-10-13 14:48:14 +02005863F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005864F: arch/*/kernel/perf_event*.c
5865F: arch/*/kernel/*/perf_event*.c
5866F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005867F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01005868F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02005869F: arch/*/kernel/perf_callchain.c
5870F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10005871
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005872PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005873M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005874L: linux-abi-devel@lists.sourceforge.net
5875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005876F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01005877
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005878PHONET PROTOCOL
Rémi Denis-Courmont2a06b402012-04-12 03:39:18 +00005879M: Remi Denis-Courmont <courmisch@gmail.com>
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00005880S: Supported
5881F: Documentation/networking/phonet.txt
5882F: include/linux/phonet.h
5883F: include/net/phonet/
5884F: net/phonet/
5885
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005887M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888L: linux-mtd@lists.infradead.org
5889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005890F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891
Bruno Prémontefdbb102012-07-30 21:39:03 +02005892PICOLCD HID DRIVER
5893M: Bruno Prémont <bonbons@linux-vserver.org>
5894L: linux-input@vger.kernel.org
5895S: Maintained
5896F: drivers/hid/hid-picolcd*
5897
Jamie Ilesa53bfa02011-12-12 20:28:42 +00005898PICOXCELL SUPPORT
5899M: Jamie Iles <jamie@jamieiles.com>
5900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5901T: git git://github.com/jamieiles/linux-2.6-ji.git
5902S: Supported
5903F: arch/arm/mach-picoxcell
5904F: drivers/*/picoxcell*
5905F: drivers/*/*/picoxcell*
5906
Linus Walleij2744e8a2011-05-02 20:50:54 +02005907PIN CONTROL SUBSYSTEM
5908M: Linus Walleij <linus.walleij@linaro.org>
5909S: Maintained
Stephen Warren07f29ba2011-12-08 15:16:19 -07005910F: drivers/pinctrl/
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005911F: include/linux/pinctrl/
Linus Walleij2744e8a2011-05-02 20:50:54 +02005912
Viresh Kumardeda8282012-03-28 22:27:07 +05305913PIN CONTROLLER - ST SPEAR
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005914M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumardeda8282012-03-28 22:27:07 +05305915L: spear-devel@list.st.com
5916L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5917W: http://www.st.com/spear
5918S: Maintained
Uwe Kleine-König8e406fe2012-07-30 18:38:34 +02005919F: drivers/pinctrl/spear/
Viresh Kumardeda8282012-03-28 22:27:07 +05305920
Peter Osterlund249a6772005-09-27 21:45:30 -07005921PKTCDVD DRIVER
Jiri Kosinadbd47132012-09-04 11:07:38 +02005922M: Jiri Kosina <jkosina@suse.cz>
Peter Osterlund249a6772005-09-27 21:45:30 -07005923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005924F: drivers/block/pktcdvd.c
5925F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07005926
GuanXuetaob31d8272011-01-16 00:35:49 +08005927PKUNITY SOC DRIVERS
5928M: Guan Xuetao <gxt@mprc.pku.edu.cn>
5929W: http://mprc.pku.edu.cn/~guanxuetao/linux
5930S: Maintained
5931T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
5932F: drivers/input/serio/i8042-unicore32io.h
GuanXuetaod10e4a62011-02-26 21:29:29 +08005933F: drivers/i2c/busses/i2c-puv3.c
GuanXuetaoce443ab2011-02-26 21:39:10 +08005934F: drivers/video/fb-puv3.c
Guan Xuetao2809e802011-05-26 16:43:27 +08005935F: drivers/rtc/rtc-puv3.c
GuanXuetaob31d8272011-01-16 00:35:49 +08005936
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005937PMBUS HARDWARE MONITORING DRIVERS
Guenter Roeckca462082012-06-01 23:28:23 -07005938M: Guenter Roeck <linux@roeck-us.net>
Guenter Roeck9d2ecfb2011-07-12 07:15:19 -07005939L: lm-sensors@lm-sensors.org
5940W: http://www.lm-sensors.org/
5941W: http://www.roeck-us.net/linux/drivers/
5942T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5943S: Maintained
5944F: Documentation/hwmon/pmbus
5945F: drivers/hwmon/pmbus/
5946F: include/linux/i2c/pmbus.h
5947
Anil Ravindranath89a36812009-08-25 17:35:18 -07005948PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07005949M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07005950L: linux-scsi@vger.kernel.org
5951W: http://www.pmc-sierra.com/
5952S: Supported
5953F: drivers/scsi/pmcraid.*
5954
jack wangdbf9bfe2009-10-14 16:19:21 +08005955PMC SIERRA PM8001 DRIVER
5956M: jack_wang@usish.com
5957M: lindar_liu@usish.com
5958L: linux-scsi@vger.kernel.org
5959S: Supported
5960F: drivers/scsi/pm8001/
5961
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07005963M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01005964T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005966F: fs/timerfd.c
5967F: include/linux/timer*
5968F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969
Anton Vorontsov3be86142007-07-15 04:43:36 +04005970POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005971M: Anton Vorontsov <cbou@mail.ru>
5972M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07005973T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04005974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005975F: include/linux/power_supply.h
Anton Vorontsov8cd725a2012-05-05 03:37:15 -07005976F: drivers/power/
Anton Vorontsov3be86142007-07-15 04:43:36 +04005977
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005979M: Adam Belay <abelay@mit.edu>
Bjorn Helgaasc2d197e2011-07-08 15:39:48 -07005980M: Bjorn Helgaas <bhelgaas@google.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005982F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983
Vitaly Wool999445d2007-01-04 13:07:03 +01005984PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005985M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005986L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01005987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005988F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01005989
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07005991M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992L: linux-ppp@vger.kernel.org
5993S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07005994F: drivers/net/ppp/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995
5996PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07005997M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005999F: net/atm/pppoatm.c
6000F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001
6002PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07006003M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006005F: drivers/net/ppp/pppoe.c
6006F: drivers/net/ppp/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007
James Chapmana6d23702007-06-27 15:53:17 -07006008PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07006009M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07006010S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07006011F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07006012F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07006013
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006014PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006015M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006016W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6017L: linuxpps@ml.enneenne.com (subscribers-only)
6018S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07006019F: Documentation/pps/
6020F: drivers/pps/
6021F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006022
Harry Wei71a6d0a2011-05-11 15:13:33 -07006023PPTP DRIVER
6024M: Dmitry Kozlov <xeb@mail.ru>
6025L: netdev@vger.kernel.org
6026S: Maintained
Jeff Kirsher224cf5a2011-07-31 02:38:19 -07006027F: drivers/net/ppp/pptp.c
Harry Wei71a6d0a2011-05-11 15:13:33 -07006028W: http://sourceforge.net/projects/accel-pptp
6029
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07006031M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006032L: kpreempt-tech@lists.sourceforge.net
6033W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6034S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006035F: Documentation/preempt-locking.txt
6036F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037
6038PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006039M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07006040L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04006041W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04006042S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07006043F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006045PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006046M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006047L: linux-ide@vger.kernel.org
6048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006049F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01006050
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006051PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006052M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006053L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006054L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006055S: Maintained
Jeff Kirsher8df158a2011-07-30 00:36:02 -07006056F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09006057
Geoff Levandf58a9d12006-11-23 00:46:51 +01006058PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00006059M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006060L: linuxppc-dev@lists.ozlabs.org
6061L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00006062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006063F: arch/powerpc/boot/ps3*
6064F: arch/powerpc/include/asm/lv1call.h
6065F: arch/powerpc/include/asm/ps3*.h
6066F: arch/powerpc/platforms/ps3/
6067F: drivers/*/ps3*
6068F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00006069F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07006070F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00006071F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01006072
Jim Pariscffb4add2009-01-06 11:32:10 +00006073PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006074M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006075L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00006076S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07006077F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00006078
Anton Vorontsov8defe592012-08-03 18:07:20 -07006079PSTORE FILESYSTEM
6080M: Anton Vorontsov <cbouatmailru@gmail.com>
6081M: Colin Cross <ccross@android.com>
6082M: Kees Cook <keescook@chromium.org>
6083M: Tony Luck <tony.luck@intel.com>
6084S: Maintained
6085T: git git://git.infradead.org/users/cbou/linux-pstore.git
6086F: fs/pstore/
6087F: include/linux/pstore*
6088F: drivers/firmware/efivars.c
6089F: drivers/acpi/apei/erst.c
6090
Richard Cochran7fbc4152012-03-10 01:55:53 +00006091PTP HARDWARE CLOCK SUPPORT
6092M: Richard Cochran <richardcochran@gmail.com>
6093S: Maintained
6094W: http://linuxptp.sourceforge.net/
6095F: Documentation/ABI/testing/sysfs-ptp
6096F: Documentation/ptp/*
Joe Perches0ecb3cd2012-10-04 17:12:37 -07006097F: drivers/net/ethernet/freescale/gianfar_ptp.c
Richard Cochran7fbc4152012-03-10 01:55:53 +00006098F: drivers/net/phy/dp83640*
6099F: drivers/ptp/*
6100F: include/linux/ptp_cl*
6101
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006102PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006103M: Roland McGrath <roland@redhat.com>
6104M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07006105S: Maintained
6106F: include/asm-generic/syscall.h
6107F: include/linux/ptrace.h
6108F: include/linux/regset.h
6109F: include/linux/tracehook.h
6110F: kernel/ptrace.c
6111
Michael Krufky83202042006-07-03 00:24:18 -07006112PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006113M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03006114L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006115L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07006116W: http://www.isely.net/pvrusb2/
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006117T: git git://linuxtv.org/media_tree.git
Michael Krufky83202042006-07-03 00:24:18 -07006118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006119F: Documentation/video4linux/README.pvrusb2
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006120F: drivers/media/usb/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07006121
Hans de Goede39532e62012-11-04 17:05:59 -03006122PWC WEBCAM DRIVER
6123M: Hans de Goede <hdegoede@redhat.com>
6124L: linux-media@vger.kernel.org
6125T: git git://linuxtv.org/media_tree.git
6126S: Maintained
6127F: drivers/media/usb/pwc/*
6128
Thierry Reding200efed2012-03-27 13:16:18 +02006129PWM SUBSYSTEM
6130M: Thierry Reding <thierry.reding@avionic-design.de>
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006131L: linux-kernel@vger.kernel.org
6132S: Maintained
Thierry Reding200efed2012-03-27 13:16:18 +02006133W: http://gitorious.org/linux-pwm
6134T: git git://gitorious.org/linux-pwm/linux-pwm.git
6135F: Documentation/pwm.txt
6136F: Documentation/devicetree/bindings/pwm/
6137F: include/linux/pwm.h
6138F: include/linux/of_pwm.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006139F: drivers/pwm/
Thierry Redinga140b982012-09-24 17:17:30 -07006140F: drivers/video/backlight/pwm_bl.c
6141F: include/linux/pwm_backlight.h
Sascha Hauer0c2498f2011-01-28 09:40:40 +01006142
Eric Miao30ec2612008-06-12 15:21:41 -07006143PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006144M: Eric Miao <eric.y.miao@gmail.com>
6145M: Russell King <linux@arm.linux.org.uk>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006146M: Haojian Zhuang <haojian.zhuang@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006147L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006148T: git git://github.com/hzhuang1/linux.git
6149T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006151F: arch/arm/mach-pxa/
6152F: drivers/pcmcia/pxa2xx*
Joe Perches9df92e62012-01-10 15:09:06 -08006153F: drivers/spi/spi-pxa2xx*
Joe Perches679655d2009-04-07 20:44:32 -07006154F: drivers/usb/gadget/pxa2*
6155F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01006156F: sound/arm/pxa*
6157F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006159MMP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006160M: Eric Miao <eric.y.miao@gmail.com>
Haojian Zhuanga323f662012-03-14 18:33:07 +08006161M: Haojian Zhuang <haojian.zhuang@gmail.com>
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006162L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006163T: git git://github.com/hzhuang1/linux.git
6164T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006165S: Maintained
Haojian Zhuang3f640c62011-12-09 09:58:41 +08006166F: arch/arm/mach-mmp/
Eric Miaoe8e6cb32010-01-05 15:28:26 +08006167
Pierre Ossman272f1332007-05-14 21:25:26 +02006168PXA MMCI DRIVER
6169S: Orphan
6170
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006171PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006172M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08006173L: rtc-linux@googlegroups.com
6174S: Maintained
6175
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006176QIB DRIVER
Mike Marciniszyn8473c602012-05-10 09:25:20 -04006177M: Mike Marciniszyn <infinipath@intel.com>
Mike Marciniszyn52a09a02011-07-13 09:19:10 -07006178L: linux-rdma@vger.kernel.org
6179S: Supported
6180F: drivers/infiniband/hw/qib/
6181
Jes Sorensen5e9772b2010-06-30 15:37:38 +02006182QLOGIC QLA1280 SCSI DRIVER
6183M: Michael Reed <mdr@sgi.com>
6184L: linux-scsi@vger.kernel.org
6185S: Maintained
6186F: drivers/scsi/qla1280.[ch]
6187
Linus Torvalds1da177e2005-04-16 15:20:36 -07006188QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006189M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08006190M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191L: linux-scsi@vger.kernel.org
6192S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006193F: Documentation/scsi/LICENSE.qla2xxx
6194F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195
Ravi Anand883c98f2010-04-28 11:45:49 +05306196QLOGIC QLA4XXX iSCSI DRIVER
6197M: Ravi Anand <ravi.anand@qlogic.com>
6198M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6199M: iscsi-driver@qlogic.com
6200L: linux-scsi@vger.kernel.org
6201S: Supported
6202F: drivers/scsi/qla4xxx/
6203
Ron Mercer5a4faa872006-07-25 00:40:21 -07006204QLOGIC QLA3XXX NETWORK DRIVER
Jitendra Kalsaria0a955c32011-12-16 11:41:37 +00006205M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006206M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07006207M: linux-driver@qlogic.com
6208L: netdev@vger.kernel.org
6209S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006210F: Documentation/networking/LICENSE.qla3xxx
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006211F: drivers/net/ethernet/qlogic/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07006212
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006213QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
Anirban Chakraborty2ab1c242012-07-17 09:22:09 +00006214M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Anirban Chakrabortye9877162011-08-18 21:31:22 -07006215M: Sony Chacko <sony.chacko@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006216M: linux-driver@qlogic.com
6217L: netdev@vger.kernel.org
6218S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006219F: drivers/net/ethernet/qlogic/qlcnic/
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00006220
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006221QLOGIC QLGE 10Gb ETHERNET DRIVER
Ron Mercerb997d792011-06-22 06:35:45 +00006222M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006223M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07006224M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006225L: netdev@vger.kernel.org
6226S: Supported
Jeff Kirsheraa43c212011-04-08 19:06:30 -07006227F: drivers/net/ethernet/qlogic/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04006228
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006230M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231W: http://www.alarsen.net/linux/qnx4fs/
6232S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006233F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07006234F: include/linux/qnx4_fs.h
6235F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236
Antti Palosaari91952bc2012-10-01 12:28:46 -03006237QT1010 MEDIA DRIVER
6238M: Antti Palosaari <crope@iki.fi>
6239L: linux-media@vger.kernel.org
6240W: http://linuxtv.org/
6241W: http://palosaari.fi/linux/
6242Q: http://patchwork.linuxtv.org/project/linux-media/list/
6243T: git git://linuxtv.org/anttip/media_tree.git
6244S: Maintained
6245F: drivers/media/tuners/qt1010*
6246
Richard Kuo4f4567c2011-10-31 18:56:38 -05006247QUALCOMM HEXAGON ARCHITECTURE
6248M: Richard Kuo <rkuo@codeaurora.org>
6249L: linux-hexagon@vger.kernel.org
6250S: Supported
6251F: arch/hexagon/
6252
Hans Verkuil35e35402012-11-23 07:02:29 -03006253QUICKCAM PARALLEL PORT WEBCAMS
6254M: Hans Verkuil <hverkuil@xs4all.nl>
6255L: linux-media@vger.kernel.org
6256T: git git://linuxtv.org/media_tree.git
6257W: http://linuxtv.org
6258S: Odd Fixes
6259F: drivers/media/parport/*-qcam*
6260
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006261RADOS BLOCK DEVICE (RBD)
Sage Weil09d90322012-07-30 16:27:48 -07006262M: Yehuda Sadeh <yehuda@inktank.com>
6263M: Sage Weil <sage@inktank.com>
6264M: Alex Elder <elder@inktank.com>
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006265M: ceph-devel@vger.kernel.org
Sage Weil09d90322012-07-30 16:27:48 -07006266W: http://ceph.com/
6267T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Yehuda Sadeh602adf42010-08-12 16:11:25 -07006268S: Supported
6269F: drivers/block/rbd.c
6270F: drivers/block/rbd_types.h
6271
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006273M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006274L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006276F: drivers/video/aty/radeon*
6277F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278
Hans de Goedec6c9b342012-11-04 17:03:58 -03006279RADIOSHARK RADIO DRIVER
6280M: Hans de Goede <hdegoede@redhat.com>
6281L: linux-media@vger.kernel.org
6282T: git git://linuxtv.org/media_tree.git
6283S: Maintained
6284F: drivers/media/radio/radio-shark.c
6285
6286RADIOSHARK2 RADIO DRIVER
6287M: Hans de Goede <hdegoede@redhat.com>
6288L: linux-media@vger.kernel.org
6289T: git git://linuxtv.org/media_tree.git
6290S: Maintained
6291F: drivers/media/radio/radio-shark2.c
6292F: drivers/media/radio/radio-tea5777.c
6293
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006295M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006296L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006298F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299
Randy Dunlape7839f22008-10-12 16:11:45 -07006300RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006301P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01006302M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01006303M: Gertjan van Wingerde <gwingerde@gmail.com>
Helmut Schaaf198f982011-01-30 13:21:41 +01006304M: Helmut Schaa <helmut.schaa@googlemail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006305L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01006306L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006307W: http://rt2x00.serialmonkey.com/
6308S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07006309T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07006310F: drivers/net/wireless/rt2x00/
6311
Nick Piggin9db55792008-02-08 04:19:49 -08006312RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10006313M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08006314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006315F: Documentation/blockdev/ramdisk.txt
6316F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08006317
Matt Mackall9e95ce22005-04-16 15:25:56 -07006318RANDOM NUMBER DRIVER
Theodore Ts'o330e0a02012-07-04 11:32:48 -04006319M: Theodore Ts'o" <tytso@mit.edu>
Matt Mackall9e95ce22005-04-16 15:25:56 -07006320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006321F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07006322
Matt Porter394b7012005-11-07 01:00:15 -08006323RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006324M: Matt Porter <mporter@kernel.crashing.org>
Alexandre Bounineb8bc1dd2011-03-04 17:36:28 -08006325M: Alexandre Bounine <alexandre.bounine@idt.com>
Matt Porter394b7012005-11-07 01:00:15 -08006326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006327F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08006328
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006329RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006330L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04006331S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006332F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006333
6334RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006335M: Josh Triplett <josh@freedesktop.org>
6336M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006337S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006338T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07006339F: Documentation/RCU/torture.txt
6340F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006341
Florian Fainellic1f766b2008-02-06 22:39:44 +01006342RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07006343M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01006344S: Maintained
6345
Florian Fainellidb17f3952007-12-19 11:30:30 +01006346RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006347M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f3952007-12-19 11:30:30 +01006348L: netdev@vger.kernel.org
6349S: Maintained
Jeff Kirsher58565a32011-07-23 23:26:01 -07006350F: drivers/net/ethernet/rdc/r6040.c
Florian Fainellidb17f3952007-12-19 11:30:30 +01006351
Andy Grovera09ed662009-02-24 15:30:41 +00006352RDS - RELIABLE DATAGRAM SOCKETS
Or Gerlitzdd1294c2011-11-07 13:28:20 -05006353M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00006354L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00006355S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006356F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00006357
Josh Triplett595182b2006-10-04 02:17:21 -07006358READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07006359M: Dipankar Sarma <dipankar@in.ibm.com>
6360M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006361W: http://www.rdrop.com/users/paulmck/RCU/
Josh Triplett595182b2006-10-04 02:17:21 -07006362S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07006363T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006364F: Documentation/RCU/
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006365X: Documentation/RCU/torture.txt
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006366F: include/linux/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006367F: kernel/rcu*
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08006368X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07006369
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006370REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006371M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo764654932006-12-10 02:19:06 -08006372L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08006373Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006375F: Documentation/rtc.txt
6376F: drivers/rtc/
6377F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08006378
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07006380L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006382F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383
Mark Brownb83a3132011-05-11 19:59:58 +02006384REGISTER MAP ABSTRACTION
6385M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6386T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6387S: Supported
6388F: drivers/base/regmap/
6389F: include/linux/regmap.h
6390
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006391REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6392M: Ohad Ben-Cohen <ohad@wizery.com>
Ohad Ben-Cohen6bb697b2012-06-19 10:22:35 +03006393T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006394S: Maintained
6395F: drivers/remoteproc/
6396F: Documentation/remoteproc.txt
Joe Perches6fc26482012-04-05 14:25:13 -07006397F: include/linux/remoteproc.h
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02006398
Ivo van Doorne08976452008-04-12 19:23:55 +02006399RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07006400M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02006401L: linux-wireless@vger.kernel.org
Johannes Bergce466572012-06-05 15:42:55 +02006402W: http://wireless.kernel.org/
6403T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6404T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Ivo van Doorne08976452008-04-12 19:23:55 +02006405S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08006406F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07006407F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02006408
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006409RICOH SMARTMEDIA/XD DRIVER
6410M: Maxim Levitsky <maximlevitsky@gmail.com>
6411S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07006412F: drivers/mtd/nand/r852.c
6413F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02006414
Maxim Levitsky92634122011-03-25 01:56:59 -07006415RICOH R5C592 MEMORYSTICK DRIVER
6416M: Maxim Levitsky <maximlevitsky@gmail.com>
6417S: Maintained
6418F: drivers/memstick/host/r592.*
6419
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420ROCKETPORT DRIVER
6421P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422W: http://www.comtrol.com
6423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006424F: Documentation/serial/rocket.txt
Joe Perchesc8974012011-04-14 15:22:05 -07006425F: drivers/tty/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426
6427ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006428M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02006430W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006432F: include/linux/rose.h
6433F: include/net/rose.h
6434F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435
Antti Palosaari91952bc2012-10-01 12:28:46 -03006436RTL2830 MEDIA DRIVER
6437M: Antti Palosaari <crope@iki.fi>
6438L: linux-media@vger.kernel.org
6439W: http://linuxtv.org/
6440W: http://palosaari.fi/linux/
6441Q: http://patchwork.linuxtv.org/project/linux-media/list/
6442T: git git://linuxtv.org/anttip/media_tree.git
6443S: Maintained
6444F: drivers/media/dvb-frontends/rtl2830*
6445
Larry Finger59840482008-11-12 17:13:09 -06006446RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006447M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04006448L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006449W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006450T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04006451S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006452F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04006453
Larry Finger59840482008-11-12 17:13:09 -06006454RTL8187 WIRELESS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03006455M: Herton Ronaldo Krzesinski <herton@canonical.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006456M: Hin-Tak Leung <htl10@users.sourceforge.net>
6457M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006458L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006459W: http://wireless.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07006460T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07006461S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05006462F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06006463
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006464RTL8192CE WIRELESS DRIVER
6465M: Larry Finger <Larry.Finger@lwfinger.net>
6466M: Chaoming Li <chaoming_li@realsil.com.cn>
6467L: linux-wireless@vger.kernel.org
Johannes Berg491b26b2012-06-05 14:21:14 +02006468W: http://wireless.kernel.org/
Larry Finger3cf0c8a2010-12-16 09:13:21 -06006469T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6470S: Maintained
6471F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06006472F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02006473
6474S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006475M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006476L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006478F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08006479
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480S390
Joe Perches8b58be82009-07-29 15:04:30 -07006481M: Martin Schwidefsky <schwidefsky@de.ibm.com>
6482M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006483M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006484L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006485W: http://www.ibm.com/developerworks/linux/linux390/
6486S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006487F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01006488F: drivers/s390/
Joe Perches20d16fe2012-02-03 15:37:11 -08006489F: block/partitions/ibm.c
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02006490F: Documentation/s390/
6491F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08006492
6493S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006494M: Ursula Braun <ursula.braun@de.ibm.com>
6495M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006496M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006497L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006498W: http://www.ibm.com/developerworks/linux/linux390/
6499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006500F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08006501
Felix Beckfeed9b62009-03-26 15:24:23 +01006502S390 ZCRYPT DRIVER
Holger Dengler51120c22011-01-12 09:55:32 +01006503M: Holger Dengler <hd@linux.vnet.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01006504M: linux390@de.ibm.com
6505L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01006506W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01006507S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006508F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01006509
Heiko Carstens5238da42006-02-11 17:56:01 -08006510S390 ZFCP DRIVER
Christof Schmittd38e19d2011-01-10 11:12:40 +01006511M: Steffen Maier <maier@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08006512M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01006513L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08006514W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006516F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517
Ursula Braundd96df22007-09-19 13:09:02 +02006518S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07006519M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02006520M: linux390@de.ibm.com
6521L: linux-s390@vger.kernel.org
6522W: http://www.ibm.com/developerworks/linux/linux390/
6523S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006524F: drivers/s390/net/*iucv*
6525F: include/net/iucv/
6526F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02006527
Ben Dooks4dde7f72008-06-30 22:40:38 +01006528S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07006529M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07006530L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01006531S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006532F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01006533
Hans Verkuil1f15a222012-11-23 07:45:29 -03006534SAA6588 RDS RECEIVER DRIVER
6535M: Hans Verkuil <hverkuil@xs4all.nl>
6536L: linux-media@vger.kernel.org
6537T: git git://linuxtv.org/media_tree.git
6538W: http://linuxtv.org
6539S: Odd Fixes
6540F: drivers/media/i2c/saa6588*
6541
Mauro Carvalho Chehab98ed12e2012-11-02 11:34:14 -02006542SAA7134 VIDEO4LINUX DRIVER
6543M: Mauro Carvalho Chehab <mchehab@redhat.com>
6544L: linux-media@vger.kernel.org
6545W: http://linuxtv.org
6546T: git git://linuxtv.org/media_tree.git
6547S: Odd fixes
6548F: Documentation/video4linux/saa7134/
6549F: drivers/media/pci/saa7134/
6550
Linus Torvalds1da177e2005-04-16 15:20:36 -07006551SAA7146 VIDEO4LINUX-2 DRIVER
Hans Verkuil566b8152012-11-23 09:58:12 -03006552M: Hans Verkuil <hverkuil@xs4all.nl>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006553L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02006554T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006555S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03006556F: drivers/media/common/saa7146/
6557F: drivers/media/pci/saa7146/
6558F: include/media/saa7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559
Corentin Chary92304a42011-12-05 12:38:35 -05006560SAMSUNG LAPTOP DRIVER
6561M: Corentin Chary <corentincj@iksaif.net>
6562L: platform-driver-x86@vger.kernel.org
6563S: Maintained
6564F: drivers/platform/x86/samsung-laptop.c
6565
Mark Brown4a109cc2010-09-24 10:50:46 +01006566SAMSUNG AUDIO (ASoC) DRIVERS
Sangbeom Kim250b6852011-08-23 19:36:59 +09006567M: Sangbeom Kim <sbkim73@samsung.com>
Mark Brown4a109cc2010-09-24 10:50:46 +01006568L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6569S: Supported
Mark Brown7a939412010-11-24 17:20:27 +00006570F: sound/soc/samsung
Mark Brown4a109cc2010-09-24 10:50:46 +01006571
Jingoo Han0d89a282011-12-19 11:09:35 +09006572SAMSUNG FRAMEBUFFER DRIVER
6573M: Jingoo Han <jg1.han@samsung.com>
6574L: linux-fbdev@vger.kernel.org
6575S: Maintained
6576F: drivers/video/s3c-fb.c
6577
Sangbeom Kimf69d3a12012-07-11 21:08:22 +09006578SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6579M: Sangbeom Kim <sbkim73@samsung.com>
6580L: linux-kernel@vger.kernel.org
6581S: Supported
6582F: drivers/mfd/sec*.c
6583F: drivers/regulator/s2m*.c
6584F: drivers/regulator/s5m*.c
6585F: drivers/rtc/rtc-sec.c
6586F: include/linux/mfd/samsung/
6587
Sylwester Nawrocki6fd86ab2012-11-15 18:05:15 -03006588SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6589M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6590L: linux-media@vger.kernel.org
6591L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6592S: Maintained
6593F: drivers/media/platform/s3c-camif/
6594F: include/media/s3c_camif.h
6595
Alan Coxca749e22011-03-18 13:56:14 +00006596SERIAL DRIVERS
6597M: Alan Cox <alan@linux.intel.com>
6598L: linux-serial@vger.kernel.org
6599S: Maintained
6600F: drivers/tty/serial
6601
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306602SYNOPSYS DESIGNWARE DMAC DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006603M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumaraecb7b62011-05-24 14:04:09 +05306604S: Maintained
6605F: include/linux/dw_dmac.h
6606F: drivers/dma/dw_dmac_regs.h
6607F: drivers/dma/dw_dmac.c
6608
Thomas Gleixner88606e82010-12-14 21:37:13 +01006609TIMEKEEPING, NTP
6610M: John Stultz <johnstul@us.ibm.com>
6611M: Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006612T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
Thomas Gleixner88606e82010-12-14 21:37:13 +01006613S: Supported
6614F: include/linux/clocksource.h
6615F: include/linux/time.h
6616F: include/linux/timex.h
Thomas Gleixner88606e82010-12-14 21:37:13 +01006617F: kernel/time/clocksource.c
6618F: kernel/time/time*.c
6619F: kernel/time/ntp.c
Thomas Gleixnerbbe7b8b2011-05-20 11:38:24 +02006620F: drivers/clocksource
Thomas Gleixner88606e82010-12-14 21:37:13 +01006621
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006622TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03006623M: Huang Shijie <shijie8@gmail.com>
6624M: Kang Yong <kangyong@telegent.com>
6625M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006626S: Supported
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03006627F: drivers/media/usb/tlg2300
Huang Shijie5b3f03f2010-02-02 04:07:47 -03006628
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006630M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006632F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633
6634SCHEDULER
Ingo Molnardd9b2382012-03-19 21:03:46 +01006635M: Ingo Molnar <mingo@redhat.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006636M: Peter Zijlstra <peterz@infradead.org>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01006637T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638S: Maintained
Namhyung Kim95c0d712012-07-03 23:37:31 +09006639F: kernel/sched/
Joe Perches679655d2009-04-07 20:44:32 -07006640F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641
Chen Liqin6bcf6732009-06-13 15:24:33 +08006642SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07006643M: Chen Liqin <liqin.chen@sunplusct.com>
6644M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08006645W: http://www.sunplusct.com
6646S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07006647F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08006648
Linus Torvalds1da177e2005-04-16 15:20:36 -07006649SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006650M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006651L: linux-scsi@vger.kernel.org
6652W: http://www.kernel.dk
6653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006654F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655
Roland Dreierfb50a832010-10-07 09:54:53 -07006656SCSI RDMA PROTOCOL (SRP) INITIATOR
6657M: David Dillow <dillowda@ornl.gov>
6658L: linux-rdma@vger.kernel.org
6659S: Supported
6660W: http://www.openfabrics.org
6661Q: http://patchwork.kernel.org/project/linux-rdma/list/
6662T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6663F: drivers/infiniband/ulp/srp/
6664F: include/scsi/srp.h
6665
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006667M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668L: linux-scsi@vger.kernel.org
6669W: http://www.torque.net/sg
6670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006671F: drivers/scsi/sg.c
6672F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006673
6674SCSI SUBSYSTEM
James Bottomleyc95286d2011-05-26 15:08:56 -05006675M: "James E.J. Bottomley" <JBottomley@parallels.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006676L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006677T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6678T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6679T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006681F: drivers/scsi/
6682F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006683
6684SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006685M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006686L: linux-scsi@vger.kernel.org
6687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006688F: Documentation/scsi/st.txt
6689F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690
6691SCTP PROTOCOL
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006692M: Vlad Yasevich <vyasevich@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006693M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07006694L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07006695W: http://lksctp.sourceforge.net
Vlad Yasevich8b6efb72012-04-26 10:27:18 +00006696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006697F: Documentation/networking/sctp.txt
6698F: include/linux/sctp.h
6699F: include/net/sctp/
6700F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006701
6702SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07006703M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006704S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006705F: Documentation/i2c/busses/scx200_acb
Joe Perches390889b2011-03-22 16:34:34 -07006706F: arch/x86/platform/scx200/
Joe Perches679655d2009-04-07 20:44:32 -07006707F: drivers/watchdog/scx200_wdt.c
6708F: drivers/i2c/busses/scx200*
6709F: drivers/mtd/maps/scx200_docflash.c
6710F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07006711
6712SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006713M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006715F: drivers/char/scx200_gpio.c
6716F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07006717
6718SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006719M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07006720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006721F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006722
Sascha Sommer6a369132008-07-15 14:21:29 +02006723SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006724M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02006725L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006727F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02006728
Randy Dunlape7839f22008-10-12 16:11:45 -07006729SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04006730M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006731L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04006732T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6733S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07006734F: drivers/mmc/host/sdhci.*
Joe Perchesd4a45782012-01-10 15:08:54 -08006735F: drivers/mmc/host/sdhci-pltfm.[ch]
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006736
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03006737SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07006738M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10006739L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07006740L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006741S: Maintained
Joe Perchesd4a45782012-01-10 15:08:54 -08006742F: drivers/mmc/host/sdhci-pltfm.[ch]
Linus Torvalds1da177e2005-04-16 15:20:36 -07006743
Ben Dooks0d1bb412009-06-14 13:52:37 +01006744SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006745M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07006746L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01006747S: Maintained
6748F: drivers/mmc/host/sdhci-s3c.c
6749
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006750SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07006751M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07006752L: spear-devel@list.st.com
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07006753L: linux-mmc@vger.kernel.org
6754S: Maintained
6755F: drivers/mmc/host/sdhci-spear.c
6756
James Morris8711cca2008-12-04 03:19:45 +11006757SECURITY SUBSYSTEM
James Morris9b45c0d2012-02-22 12:45:07 +11006758M: James Morris <james.l.morris@oracle.com>
James Morris8711cca2008-12-04 03:19:45 +11006759L: linux-security-module@vger.kernel.org (suggested Cc:)
James Morris89879a72012-01-18 10:40:44 +11006760T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
James Morris9ccf0102012-04-09 15:48:07 +10006761W: http://kernsec.org/
James Morris8711cca2008-12-04 03:19:45 +11006762S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07006763F: security/
James Morris8711cca2008-12-04 03:19:45 +11006764
Linus Torvalds1da177e2005-04-16 15:20:36 -07006765SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07006766M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767S: Supported
6768
6769SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006770M: Stephen Smalley <sds@tycho.nsa.gov>
James Morris9b45c0d2012-02-22 12:45:07 +11006771M: James Morris <james.l.morris@oracle.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006772M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006773L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04006774W: http://selinuxproject.org
Eric Paris6bde95c2011-04-01 17:09:41 -04006775T: git git://git.infradead.org/users/eparis/selinux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006776S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006777F: include/linux/selinux*
6778F: security/selinux/
Eric Paris6bde95c2011-04-01 17:09:41 -04006779F: scripts/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006780
John Johansenc1c124e2010-07-29 14:48:09 -07006781APPARMOR SECURITY MODULE
6782M: John Johansen <john.johansen@canonical.com>
6783L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
6784W: apparmor.wiki.kernel.org
6785T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
6786S: Supported
6787F: security/apparmor/
6788
Jiri Slabycef2cf02007-05-08 00:31:45 -07006789SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07006790M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07006791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006792F: drivers/misc/phantom.c
6793F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07006794
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006795SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006796M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006798T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006799S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07006800F: drivers/ata/
6801F: include/linux/ata.h
6802F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006803
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306804SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006805M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Joe Perches3387f652009-11-11 14:26:11 -08006806L: linux-scsi@vger.kernel.org
Jayamohan Kallickal0ca43cc2011-03-25 14:23:58 -07006807W: http://www.emulex.com
Joe Perches3387f652009-11-11 14:26:11 -08006808S: Supported
6809F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05306810
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006811SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Ajit Khapardefea3af62011-02-04 13:03:35 -08006812M: Sathya Perla <sathya.perla@emulex.com>
6813M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
6814M: Ajit Khaparde <ajit.khaparde@emulex.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07006815L: netdev@vger.kernel.org
Ajit Khapardefea3af62011-02-04 13:03:35 -08006816W: http://www.emulex.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07006817S: Supported
Jeff Kirsher9aebddd2011-05-13 00:37:27 -07006818F: drivers/net/ethernet/emulex/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07006819
Ben Hutchings8ceee662008-04-27 12:55:59 +01006820SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00006821M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
Joe Perchesc06f51e2009-08-26 08:47:47 +00006822M: Ben Hutchings <bhutchings@solarflare.com>
6823L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01006824S: Supported
Jeff Kirsher874aeea2011-05-13 00:17:42 -07006825F: drivers/net/ethernet/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01006826
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006827SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006828M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006830F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006831
6832SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006833M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006834L: linux-ia64@vger.kernel.org
6835S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006836F: Documentation/ia64/serial.txt
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08006837F: drivers/tty/serial/ioc?_serial.c
Joe Perches679655d2009-04-07 20:44:32 -07006838F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006839
Linus Torvalds1da177e2005-04-16 15:20:36 -07006840SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07006841M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006842L: linux-visws-devel@lists.sf.net
6843W: http://linux-visws.sf.net
6844S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07006845F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006846
Jack Steiner75312612008-08-15 00:40:42 -07006847SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006848M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07006849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006850F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07006851
Hans Verkuil49cc6292012-11-30 07:13:29 -03006852SI470X FM RADIO RECEIVER I2C DRIVER
6853M: Hans Verkuil <hverkuil@xs4all.nl>
6854L: linux-media@vger.kernel.org
6855T: git git://linuxtv.org/media_tree.git
6856W: http://linuxtv.org
6857S: Odd Fixes
6858F: drivers/media/radio/si470x/radio-si470x-i2c.c
6859
6860SI470X FM RADIO RECEIVER USB DRIVER
6861M: Hans Verkuil <hverkuil@xs4all.nl>
6862L: linux-media@vger.kernel.org
6863T: git git://linuxtv.org/media_tree.git
6864W: http://linuxtv.org
6865S: Maintained
6866F: drivers/media/radio/si470x/radio-si470x-common.c
6867F: drivers/media/radio/si470x/radio-si470x.h
6868F: drivers/media/radio/si470x/radio-si470x-usb.c
6869
Len Brown6349d992009-08-14 15:07:14 -04006870SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07006871M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04006872L: sfi-devel@simplefirmware.org
6873W: http://simplefirmware.org/
6874T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006875S: Supported
Joe Perches943fc812011-03-22 16:34:36 -07006876F: arch/x86/platform/sfi/
Len Brown6349d992009-08-14 15:07:14 -04006877F: drivers/sfi/
6878F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006879
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880SIMTEC EB110ATX (Chalice CATS)
6881P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006882P: Vincent Sanders <vince@simtec.co.uk>
6883M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006884W: http://www.simtec.co.uk/products/EB110ATX/
6885S: Supported
6886
6887SIMTEC EB2410ITX (BAST)
6888P: Ben Dooks
Ben Dooksb16957c2011-02-01 15:52:38 -08006889P: Vincent Sanders <vince@simtec.co.uk>
6890M: Simtec Linux Team <linux@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006891W: http://www.simtec.co.uk/products/EB2410ITX/
6892S: Supported
Ben Dooks58322032011-02-01 15:52:37 -08006893F: arch/arm/mach-s3c2410/mach-bast.c
6894F: arch/arm/mach-s3c2410/bast-ide.c
6895F: arch/arm/mach-s3c2410/bast-irq.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006896
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006897TI DAVINCI MACHINE SUPPORT
Kevin Hilman3ba789c2011-02-08 13:23:09 -08006898M: Sekhar Nori <nsekhar@ti.com>
6899M: Kevin Hilman <khilman@ti.com>
Sekhar Norif296ed72012-01-27 21:09:52 +05306900L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
Sekhar Noric9f46a82012-01-27 21:12:20 +05306901T: git git://gitorious.org/linux-davinci/linux-davinci.git
Joe Perches8a6e2532010-03-05 13:43:11 -08006902Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006903S: Supported
6904F: arch/arm/mach-davinci
Jean Delvare046d0a32012-01-12 20:32:05 +01006905F: drivers/i2c/busses/i2c-davinci.c
Kevin Hilman4c5adde2009-06-19 12:02:33 -07006906
Lad, Prabhakar8d4b3f02012-11-19 05:48:21 -03006907TI DAVINCI SERIES MEDIA DRIVER
6908M: Manjunath Hadli <manjunath.hadli@ti.com>
6909M: Prabhakar Lad <prabhakar.lad@ti.com>
6910L: linux-media@vger.kernel.org
6911L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
6912W: http://linuxtv.org/
6913Q: http://patchwork.linuxtv.org/project/linux-media/list/
6914T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
6915S: Supported
6916F: drivers/media/platform/davinci/
6917F: include/media/davinci/
6918
Francois Romieu92aab3c2005-07-30 13:11:18 +02006919SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006920M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02006921L: netdev@vger.kernel.org
6922S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006923F: drivers/net/ethernet/sis/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02006924
Linus Torvalds1da177e2005-04-16 15:20:36 -07006925SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006926M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006927W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07006928L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006929S: Maintained
Jeff Kirsher8c7de402011-06-13 08:43:49 -07006930F: drivers/net/ethernet/sis/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006931
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006932SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006933M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01006934L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006936F: Documentation/i2c/busses/i2c-sis96x
6937F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04006938
Linus Torvalds1da177e2005-04-16 15:20:36 -07006939SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006940M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006941W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006943F: Documentation/fb/sisfb.txt
6944F: drivers/video/sis/
6945F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006946
6947SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006948M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006949W: http://www.winischhofer.at/linuxsisusbvga.shtml
6950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006951F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006952
Christoph Lameter415ad262007-07-26 10:40:56 -07006953SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07006954M: Christoph Lameter <cl@linux-foundation.org>
Pekka Enberg2ed1c522011-01-15 13:30:04 +02006955M: Pekka Enberg <penberg@kernel.org>
Joe Perches8b58be82009-07-29 15:04:30 -07006956M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07006957L: linux-mm@kvack.org
6958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006959F: include/linux/sl?b*.h
6960F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07006961
Paul E. McKenney9fab97872012-05-07 09:36:34 -07006962SLEEPABLE READ-COPY UPDATE (SRCU)
6963M: Lai Jiangshan <laijs@cn.fujitsu.com>
6964M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6965W: http://www.rdrop.com/users/paulmck/RCU/
6966S: Supported
6967T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6968F: include/linux/srcu*
6969F: kernel/srcu*
6970
Casey Schaufler66372842012-05-23 18:34:52 -07006971SMACK SECURITY MODULE
6972M: Casey Schaufler <casey@schaufler-ca.com>
6973L: linux-security-module@vger.kernel.org
6974W: http://schaufler-ca.com
6975T: git git://git.gitorious.org/smack-next/kernel.git
6976S: Maintained
6977F: Documentation/security/Smack.txt
6978F: security/smack/
6979
Linus Torvalds1da177e2005-04-16 15:20:36 -07006980SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04006981M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04006982S: Odd Fixes
Jeff Kirsherae150432011-05-12 20:21:07 -07006983F: drivers/net/ethernet/smsc/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006984
Sakari Ailuse8e31622012-11-12 18:14:39 -03006985SMIA AND SMIA++ IMAGE SENSOR DRIVER
6986M: Sakari Ailus <sakari.ailus@iki.fi>
6987L: linux-media@vger.kernel.org
6988S: Maintained
6989F: drivers/media/i2c/smiapp
6990F: include/media/smiapp.h
6991F: drivers/media/i2c/smiapp-pll.c
6992F: drivers/media/i2c/smiapp-pll.h
6993
Guenter Roeck920fa1f2010-08-09 17:21:06 -07006994SMM665 HARDWARE MONITOR DRIVER
6995M: Guenter Roeck <linux@roeck-us.net>
6996L: lm-sensors@lm-sensors.org
6997S: Maintained
6998F: Documentation/hwmon/smm665
6999F: drivers/hwmon/smm665.c
7000
Steve Glendinning9df73052010-08-14 21:08:54 +02007001SMSC EMC2103 HARDWARE MONITOR DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007002M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning9df73052010-08-14 21:08:54 +02007003L: lm-sensors@lm-sensors.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007004S: Maintained
Steve Glendinning9df73052010-08-14 21:08:54 +02007005F: Documentation/hwmon/emc2103
7006F: drivers/hwmon/emc2103.c
7007
Hans de Goedea98d5062011-03-21 17:59:36 +01007008SMSC SCH5627 HARDWARE MONITOR DRIVER
7009M: Hans de Goede <hdegoede@redhat.com>
7010L: lm-sensors@lm-sensors.org
7011S: Supported
7012F: Documentation/hwmon/sch5627
7013F: drivers/hwmon/sch5627.c
7014
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007015SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007016M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007017L: lm-sensors@lm-sensors.org
7018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007019F: Documentation/hwmon/smsc47b397
7020F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04007021
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007022SMSC911x ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007023M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007024L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007026F: include/linux/smsc911x.h
Jeff Kirsherae150432011-05-12 20:21:07 -07007027F: drivers/net/ethernet/smsc/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00007028
Steve Glendinning2cb37722008-12-11 20:54:30 -08007029SMSC9420 PCI ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007030M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2cb37722008-12-11 20:54:30 -08007031L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007032S: Maintained
Jeff Kirsherae150432011-05-12 20:21:07 -07007033F: drivers/net/ethernet/smsc/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08007034
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007035SMSC UFX6000 and UFX7000 USB to VGA DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007036M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007037L: linux-fbdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01007038S: Maintained
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01007039F: drivers/video/smscufx.c
7040
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007041SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07007042M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007043L: linux-altix@sgi.com
7044L: linux-ia64@vger.kernel.org
7045W: http://www.sgi.com/altix
7046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007047F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007048
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007049SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007050M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03007051L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02007052T: git git://linuxtv.org/media_tree.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02007053S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03007054F: include/media/soc*
7055F: drivers/media/i2c/soc_camera/
7056F: drivers/media/platform/soc_camera/
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03007057
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007058SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007059M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007061F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007062
Linus Torvalds1da177e2005-04-16 15:20:36 -07007063SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007064M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007065L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08007066S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007067F: drivers/md/
7068F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069
Linus Torvalds1da177e2005-04-16 15:20:36 -07007070SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007071M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07007072L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007073S: Maintained
Jeff Kirsherd9fb9f32011-05-18 05:14:22 -07007074F: drivers/net/ethernet/natsemi/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007075
Michael Buesch61e115a2007-09-18 15:12:50 -04007076SONICS SILICON BACKPLANE DRIVER (SSB)
Michael Büscheb032b92011-07-04 20:50:05 +02007077M: Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007078L: netdev@vger.kernel.org
7079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007080F: drivers/ssb/
7081F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04007082
Linus Torvalds1da177e2005-04-16 15:20:36 -07007083SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007084M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd09448532010-02-11 10:40:13 -05007085L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01007086W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007088F: Documentation/laptops/sony-laptop.txt
7089F: drivers/char/sonypi.c
7090F: drivers/platform/x86/sony-laptop.c
7091F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007092
Alex Dubovbaf85322008-02-09 10:20:54 -08007093SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07007094M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08007095W: http://tifmxx.berlios.de/
7096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007097F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08007098
Linus Torvalds1da177e2005-04-16 15:20:36 -07007099SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07007100M: Jaroslav Kysela <perex@perex.cz>
7101M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07007102L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07007103W: http://www.alsa-project.org/
Takashi Iwaidde7ad82011-10-25 10:00:22 +02007104T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
Joe Perches3126a172009-04-15 23:38:45 -07007105T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007106S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07007107F: Documentation/sound/
7108F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07007109F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007110
Mark Brownbd903bd2008-11-19 19:16:05 +00007111SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwood63405ce2011-05-12 18:49:15 +01007112M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07007113M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown86f14df2011-11-02 21:36:32 +00007114T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
Joe Perches93711662009-06-16 15:34:07 -07007115L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01007116W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007117S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007118F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01007119F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02007120
Sam Ravnborg473321f2009-01-04 15:47:49 -08007121SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07007122M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007123L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007124Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches08deed12012-03-23 15:01:57 -07007125T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7126T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007128F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07007129F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007130
David S. Miller6404fcc2010-03-16 01:00:17 -07007131SPARC SERIAL DRIVERS
7132M: "David S. Miller" <davem@davemloft.net>
7133L: sparclinux@vger.kernel.org
Joe Perches08deed12012-03-23 15:01:57 -07007134T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7135T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
David S. Miller6404fcc2010-03-16 01:00:17 -07007136S: Maintained
Paul Gortmaker68163832012-02-09 18:48:19 -05007137F: include/linux/sunserialcore.h
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007138F: drivers/tty/serial/suncore.c
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007139F: drivers/tty/serial/sunhv.c
7140F: drivers/tty/serial/sunsab.c
7141F: drivers/tty/serial/sunsab.h
7142F: drivers/tty/serial/sunsu.c
7143F: drivers/tty/serial/sunzilog.c
7144F: drivers/tty/serial/sunzilog.h
David S. Miller6404fcc2010-03-16 01:00:17 -07007145
Christopher Li389325b2012-04-05 14:25:14 -07007146SPARSE CHECKER
7147M: "Christopher Li" <sparse@chrisli.org>
7148L: linux-sparse@vger.kernel.org
7149W: https://sparse.wiki.kernel.org/
7150T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7151T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7152S: Maintained
7153F: include/linux/compiler.h
7154
viresh kumarfc0c1952010-04-01 12:31:21 +01007155SPEAR PLATFORM SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007156M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307157M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007158L: spear-devel@list.st.com
7159L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007160W: http://www.st.com/spear
7161S: Maintained
7162F: arch/arm/plat-spear/
7163
Viresh Kumar71e09a92012-04-20 22:39:48 +05307164SPEAR13XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007165M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307166M: Shiraz Hashim <shiraz.hashim@st.com>
7167L: spear-devel@list.st.com
7168L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7169W: http://www.st.com/spear
7170S: Maintained
7171F: arch/arm/mach-spear13xx/
7172
viresh kumarfc0c1952010-04-01 12:31:21 +01007173SPEAR3XX MACHINE SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007174M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307175M: Shiraz Hashim <shiraz.hashim@st.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007176L: spear-devel@list.st.com
7177L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007178W: http://www.st.com/spear
7179S: Maintained
7180F: arch/arm/mach-spear3xx/
7181
7182SPEAR6XX MACHINE SUPPORT
7183M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Viresh Kumar71e09a92012-04-20 22:39:48 +05307184M: Shiraz Hashim <shiraz.hashim@st.com>
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007185M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007186L: spear-devel@list.st.com
7187L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007188W: http://www.st.com/spear
7189S: Maintained
7190F: arch/arm/mach-spear6xx/
7191
7192SPEAR CLOCK FRAMEWORK SUPPORT
Andy Shevchenko2d8a3b32012-10-04 17:12:39 -07007193M: Viresh Kumar <viresh.linux@gmail.com>
Viresh Kumarfbfa0742012-03-15 15:17:09 -07007194L: spear-devel@list.st.com
7195L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
viresh kumarfc0c1952010-04-01 12:31:21 +01007196W: http://www.st.com/spear
7197S: Maintained
Viresh Kumar5df33a62012-04-10 09:02:35 +05307198F: drivers/clk/spear/
viresh kumarfc0c1952010-04-01 12:31:21 +01007199
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007200SPI SUBSYSTEM
Grant Likelyd33c8612009-11-25 07:32:25 -07007201M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007202L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08007203Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06007204T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007206F: Documentation/spi/
7207F: drivers/spi/
7208F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007209
Jim Lewis2752e4012006-09-29 02:01:19 -07007210SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07007211M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7212M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e4012006-09-29 02:01:19 -07007213L: netdev@vger.kernel.org
7214S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007215F: Documentation/networking/spider_net.txt
Jeff Kirsher8df158a2011-07-30 00:36:02 -07007216F: drivers/net/ethernet/toshiba/spider_net*
Jim Lewis2752e4012006-09-29 02:01:19 -07007217
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007218SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007219M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10007220L: linuxppc-dev@lists.ozlabs.org
7221L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007222W: http://www.ibm.com/developerworks/power/cell/
7223S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007224F: Documentation/filesystems/spufs.txt
7225F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007226
Phillip Lougherfc555842009-01-05 08:46:29 +00007227SQUASHFS FILE SYSTEM
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01007228M: Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00007229L: squashfs-devel@lists.sourceforge.net (subscribers-only)
7230W: http://squashfs.org.uk
7231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007232F: Documentation/filesystems/squashfs.txt
7233F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00007234
Linus Torvalds1da177e2005-04-16 15:20:36 -07007235SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07007236M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007238F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007239
Linus Torvalds26e9a392008-10-17 09:50:12 -07007240STABLE BRANCH
Greg KH879a5a02012-01-31 20:02:00 -08007241M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perchesbc7a2f32011-12-09 13:54:34 -08007242L: stable@vger.kernel.org
Greg KH879a5a02012-01-31 20:02:00 -08007243S: Supported
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007244
Linus Torvalds26e9a392008-10-17 09:50:12 -07007245STAGING SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08007246M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman630081f2011-10-03 16:02:41 -07007247T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07007248L: devel@driverdev.osuosl.org
Greg KH879a5a02012-01-31 20:02:00 -08007249S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007250F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07007251
Joe Perchesc8c8b102011-07-05 09:42:12 -07007252STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7253M: Henk de Groot <pe1dnn@amsat.org>
7254S: Odd Fixes
7255F: drivers/staging/wlags49_h2/
7256F: drivers/staging/wlags49_h25/
7257
Joe Perchesc9555152011-07-05 09:42:01 -07007258STAGING - ASUS OLED
7259M: Jakub Schmidtke <sjakub@gmail.com>
7260S: Odd Fixes
7261F: drivers/staging/asus_oled/
7262
Joe Perchesebd3d012011-07-05 09:42:02 -07007263STAGING - COMEDI
7264M: Ian Abbott <abbotti@mev.co.uk>
7265M: Mori Hess <fmhess@users.sourceforge.net>
7266S: Odd Fixes
7267F: drivers/staging/comedi/
7268
Joe Perches8ca572c2011-07-05 09:42:03 -07007269STAGING - CRYSTAL HD VIDEO DECODER
7270M: Naren Sankar <nsankar@broadcom.com>
7271M: Jarod Wilson <jarod@wilsonet.com>
7272M: Scott Davilla <davilla@4pi.com>
7273M: Manu Abraham <abraham.manu@gmail.com>
7274S: Odd Fixes
7275F: drivers/staging/crystalhd/
7276
Joe Perches0f16ffc2011-07-05 09:42:04 -07007277STAGING - ECHO CANCELLER
7278M: Steve Underwood <steveu@coppice.org>
7279M: David Rowe <david@rowetel.com>
7280S: Odd Fixes
7281F: drivers/staging/echo/
7282
Mark Einon8dc2bbe72011-08-29 18:42:37 +01007283STAGING - ET131X NETWORK DRIVER
7284M: Mark Einon <mark.einon@gmail.com>
7285S: Odd Fixes
7286F: drivers/staging/et131x/
7287
Joe Perchesa0138162011-07-05 15:21:34 -07007288STAGING - FLARION FT1000 DRIVERS
7289M: Marek Belisko <marek.belisko@gmail.com>
7290S: Odd Fixes
7291F: drivers/staging/ft1000/
7292
Joe Perchesec3fab92011-07-05 09:42:05 -07007293STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7294M: David Täht <d@teklibre.com>
7295S: Odd Fixes
7296F: drivers/staging/frontier/
7297
Joe Perches6c1bb422011-07-05 09:42:07 -07007298STAGING - INDUSTRIAL IO
7299M: Jonathan Cameron <jic23@cam.ac.uk>
Joe Perchesa0138162011-07-05 15:21:34 -07007300L: linux-iio@vger.kernel.org
Joe Perches6c1bb422011-07-05 09:42:07 -07007301S: Odd Fixes
7302F: drivers/staging/iio/
7303
Joe Perchesa0138162011-07-05 15:21:34 -07007304STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7305M: Jarod Wilson <jarod@wilsonet.com>
7306W: http://www.lirc.org/
7307S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007308F: drivers/staging/media/lirc/
Joe Perchesa0138162011-07-05 15:21:34 -07007309
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007310STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
Julian Andres Klodeb8125382011-09-27 19:01:05 +02007311M: Julian Andres Klode <jak@jak-linux.org>
Marc Dietrich7c6b6c72011-09-27 19:00:46 +02007312M: Marc Dietrich <marvin24@gmx.de>
7313L: ac100@lists.launchpad.net (moderated for non-subscribers)
7314S: Maintained
7315F: drivers/staging/nvec/
7316
Joe Perchesa0138162011-07-05 15:21:34 -07007317STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7318M: Andres Salomon <dilinger@queued.net>
7319M: Chris Ball <cjb@laptop.org>
7320M: Jon Nettleton <jon.nettleton@gmail.com>
7321W: http://wiki.laptop.org/go/DCON
7322S: Odd Fixes
7323F: drivers/staging/olpc_dcon/
7324
Chris Kelly94cfdd12012-03-14 10:55:42 +00007325STAGING - OZMO DEVICES USB OVER WIFI DRIVER
Chris Kelly678b7c12012-03-29 12:09:45 +00007326M: Rupesh Gujare <rgujare@ozmodevices.com>
Chris Kelly94cfdd12012-03-14 10:55:42 +00007327M: Chris Kelly <ckelly@ozmodevices.com>
7328S: Maintained
7329F: drivers/staging/ozwpan/
7330
Joe Perchesa0138162011-07-05 15:21:34 -07007331STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
Joe Perches29e70172011-07-05 09:42:08 -07007332M: Willy Tarreau <willy@meta-x.org>
7333S: Odd Fixes
7334F: drivers/staging/panel/
7335
Joe Perchesa0138162011-07-05 15:21:34 -07007336STAGING - REALTEK RTL8712U DRIVERS
7337M: Larry Finger <Larry.Finger@lwfinger.net>
7338M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7339S: Odd Fixes
7340F: drivers/staging/rtl8712/
7341
Joe Perches9629fa82011-07-05 09:42:09 -07007342STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7343M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
7344S: Odd Fixes
7345F: drivers/staging/sm7xx/
7346
Joe Perchesa0138162011-07-05 15:21:34 -07007347STAGING - SOFTLOGIC 6x10 MPEG CODEC
7348M: Ben Collins <bcollins@bluecherry.net>
7349S: Odd Fixes
Joe Perchesb2b01862012-01-10 15:09:01 -08007350F: drivers/staging/media/solo6x10/
Joe Perchesa0138162011-07-05 15:21:34 -07007351
7352STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7353M: William Hubbs <w.d.hubbs@gmail.com>
7354M: Chris Brannon <chris@the-brannons.com>
7355M: Kirk Reiser <kirk@braille.uwo.ca>
7356M: Samuel Thibault <samuel.thibault@ens-lyon.org>
7357L: speakup@braille.uwo.ca
7358W: http://www.linux-speakup.org/
7359S: Odd Fixes
7360F: drivers/staging/speakup/
7361
7362STAGING - TI DSP BRIDGE DRIVERS
7363M: Omar Ramirez Luna <omar.ramirez@ti.com>
7364S: Odd Fixes
7365F: drivers/staging/tidspbridge/
7366
Joe Perchesa0138162011-07-05 15:21:34 -07007367STAGING - USB ENE SM/MS CARD READER DRIVER
7368M: Al Cho <acho@novell.com>
7369S: Odd Fixes
7370F: drivers/staging/keucr/
7371
Joe Perchesb3e871c2011-07-05 09:42:10 -07007372STAGING - VIA VT665X DRIVERS
7373M: Forest Bond <forest@alittletooquiet.net>
7374S: Odd Fixes
7375F: drivers/staging/vt665?/
7376
Joe Perches81a9a522011-07-05 09:42:11 -07007377STAGING - WINBOND IS89C35 WLAN USB DRIVER
7378M: Pavel Machek <pavel@ucw.cz>
7379S: Odd Fixes
7380F: drivers/staging/winbond/
7381
Joe Perches709bcb02011-07-05 09:42:13 -07007382STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
Aaro Koskinen3e39e662011-12-09 20:22:04 +02007383M: Arnaud Patard <arnaud.patard@rtp-net.org>
Joe Perches709bcb02011-07-05 09:42:13 -07007384S: Odd Fixes
7385F: drivers/staging/xgifb/
7386
Linus Torvalds1da177e2005-04-16 15:20:36 -07007387STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007388M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07007389S: Odd Fixes
Jeff Kirsher9bba23b2011-07-24 02:13:24 -07007390F: drivers/net/ethernet/adaptec/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007391
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007392SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07007393M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007394W: http://sammy.net/sun3/
7395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007396F: arch/m68k/kernel/*sun3*
7397F: arch/m68k/sun3*/
7398F: arch/m68k/include/asm/sun3*
Jeff Kirshere689cf42011-05-12 23:04:46 -07007399F: drivers/net/ethernet/i825xx/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007400
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007401SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07007402M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09007403L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007404W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08007405Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtee565102012-04-11 12:58:33 +09007406T: git git://github.com/pmundt/linux-sh.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09007407S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09007408F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07007409F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09007410F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007411
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007412SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07007413M: Len Brown <len.brown@intel.com>
7414M: Pavel Machek <pavel@ucw.cz>
7415M: "Rafael J. Wysocki" <rjw@sisk.pl>
WANG Congbf1c1382011-10-08 20:57:50 +02007416L: linux-pm@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007417S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007418F: Documentation/power/
7419F: arch/x86/kernel/acpi/
7420F: drivers/base/power/
7421F: kernel/power/
7422F: include/linux/suspend.h
7423F: include/linux/freezer.h
7424F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007425
7426SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07007427M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007428L: linux-video@atrey.karlin.mff.cuni.cz
7429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007430F: Documentation/svga.txt
7431F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007432
Konrad Rzeszutek Wilk6e28b762012-10-08 16:28:05 -07007433SWIOTLB SUBSYSTEM
7434M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7435L: linux-kernel@vger.kernel.org
7436S: Supported
7437F: lib/swiotlb.c
7438F: arch/*/kernel/pci-swiotlb.c
7439F: include/linux/swiotlb.h
7440
Linus Torvalds1da177e2005-04-16 15:20:36 -07007441SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007442M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007444F: Documentation/filesystems/sysv-fs.txt
7445F: fs/sysv/
7446F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007448TARGET SUBSYSTEM
7449M: Nicholas A. Bellinger <nab@linux-iscsi.org>
7450L: linux-scsi@vger.kernel.org
Nicholas Bellingerb9f5edc2011-07-27 20:21:15 +00007451L: target-devel@vger.kernel.org
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007452L: http://groups.google.com/group/linux-iscsi-target-dev
7453W: http://www.linux-iscsi.org
Joe Perches08deed12012-03-23 15:01:57 -07007454T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
Nicholas Bellinger86cfa7f2011-05-23 14:10:32 -07007455S: Supported
7456F: drivers/target/
7457F: include/target/
7458F: Documentation/target/
7459
Alan Cox4e688522008-04-30 00:52:11 -07007460TASKSTATS STATISTICS INTERFACE
Balbir Singh185e5952011-06-15 15:08:30 -07007461M: Balbir Singh <bsingharora@gmail.com>
Alan Cox4e688522008-04-30 00:52:11 -07007462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007463F: Documentation/accounting/taskstats*
7464F: include/linux/taskstats*
7465F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07007466
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007467TC CLASSIFIER
jamalf935f3f2012-05-24 02:45:02 +00007468M: Jamal Hadi Salim <jhs@mojatatu.com>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007469L: netdev@vger.kernel.org
7470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007471F: include/linux/pkt_cls.h
7472F: include/net/pkt_cls.h
7473F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07007474
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007475TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007476M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7477M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007478W: http://tcp-lp-mod.sourceforge.net/
7479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007480F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07007481
Antti Palosaari91952bc2012-10-01 12:28:46 -03007482TDA10071 MEDIA DRIVER
7483M: Antti Palosaari <crope@iki.fi>
7484L: linux-media@vger.kernel.org
7485W: http://linuxtv.org/
7486W: http://palosaari.fi/linux/
7487Q: http://patchwork.linuxtv.org/project/linux-media/list/
7488T: git git://linuxtv.org/anttip/media_tree.git
7489S: Maintained
7490F: drivers/media/dvb-frontends/tda10071*
7491
7492TDA18212 MEDIA DRIVER
7493M: Antti Palosaari <crope@iki.fi>
7494L: linux-media@vger.kernel.org
7495W: http://linuxtv.org/
7496W: http://palosaari.fi/linux/
7497Q: http://patchwork.linuxtv.org/project/linux-media/list/
7498T: git git://linuxtv.org/anttip/media_tree.git
7499S: Maintained
7500F: drivers/media/tuners/tda18212*
7501
7502TDA18218 MEDIA DRIVER
7503M: Antti Palosaari <crope@iki.fi>
7504L: linux-media@vger.kernel.org
7505W: http://linuxtv.org/
7506W: http://palosaari.fi/linux/
7507Q: http://patchwork.linuxtv.org/project/linux-media/list/
7508T: git git://linuxtv.org/anttip/media_tree.git
7509S: Maintained
7510F: drivers/media/tuners/tda18218*
7511
Michael Krufky3b2f6ab2012-10-02 00:55:32 -03007512TDA18271 MEDIA DRIVER
7513M: Michael Krufky <mkrufky@linuxtv.org>
7514L: linux-media@vger.kernel.org
7515W: http://linuxtv.org/
7516W: http://github.com/mkrufky
7517Q: http://patchwork.linuxtv.org/project/linux-media/list/
7518T: git git://linuxtv.org/mkrufky/tuners.git
7519S: Maintained
7520F: drivers/media/tuners/tda18271*
7521
Michael Krufkye48307a2012-10-02 00:56:33 -03007522TDA827x MEDIA DRIVER
7523M: Michael Krufky <mkrufky@linuxtv.org>
7524L: linux-media@vger.kernel.org
7525W: http://linuxtv.org/
7526W: http://github.com/mkrufky
7527Q: http://patchwork.linuxtv.org/project/linux-media/list/
7528T: git git://linuxtv.org/mkrufky/tuners.git
7529S: Maintained
7530F: drivers/media/tuners/tda8290.*
7531
Michael Krufky66cf9212012-10-02 00:56:28 -03007532TDA8290 MEDIA DRIVER
7533M: Michael Krufky <mkrufky@linuxtv.org>
7534L: linux-media@vger.kernel.org
7535W: http://linuxtv.org/
7536W: http://github.com/mkrufky
7537Q: http://patchwork.linuxtv.org/project/linux-media/list/
7538T: git git://linuxtv.org/mkrufky/tuners.git
7539S: Maintained
7540F: drivers/media/tuners/tda8290.*
7541
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007542TDA9840 MEDIA DRIVER
7543M: Hans Verkuil <hverkuil@xs4all.nl>
7544L: linux-media@vger.kernel.org
7545T: git git://linuxtv.org/media_tree.git
7546W: http://linuxtv.org
7547S: Maintained
7548F: drivers/media/i2c/tda9840*
7549
Mauro Carvalho Chehab2cb654f2012-11-02 12:09:00 -02007550TEA5761 TUNER DRIVER
7551M: Mauro Carvalho Chehab <mchehab@redhat.com>
7552L: linux-media@vger.kernel.org
7553W: http://linuxtv.org
7554T: git git://linuxtv.org/media_tree.git
7555S: Odd fixes
7556F: drivers/media/tuners/tea5761.*
7557
7558TEA5767 TUNER DRIVER
7559M: Mauro Carvalho Chehab <mchehab@redhat.com>
7560L: linux-media@vger.kernel.org
7561W: http://linuxtv.org
7562T: git git://linuxtv.org/media_tree.git
7563S: Maintained
7564F: drivers/media/tuners/tea5767.*
7565
Hans Verkuil4b9fba32012-11-23 10:02:05 -03007566TEA6415C MEDIA DRIVER
7567M: Hans Verkuil <hverkuil@xs4all.nl>
7568L: linux-media@vger.kernel.org
7569T: git git://linuxtv.org/media_tree.git
7570W: http://linuxtv.org
7571S: Maintained
7572F: drivers/media/i2c/tea6415c*
7573
7574TEA6420 MEDIA DRIVER
7575M: Hans Verkuil <hverkuil@xs4all.nl>
7576L: linux-media@vger.kernel.org
7577T: git git://linuxtv.org/media_tree.git
7578W: http://linuxtv.org
7579S: Maintained
7580F: drivers/media/i2c/tea6420*
7581
Jiri Pirko3d249d42011-11-11 22:16:48 +00007582TEAM DRIVER
7583M: Jiri Pirko <jpirko@redhat.com>
7584L: netdev@vger.kernel.org
7585S: Supported
7586F: drivers/net/team/
7587F: include/linux/if_team.h
7588
Sean Young40ad4a32012-11-19 10:32:53 -03007589TECHNOTREND USB IR RECEIVER
7590M: Sean Young <sean@mess.org>
7591L: linux-media@vger.kernel.org
7592S: Maintained
7593F: drivers/media/rc/ttusbir.c
7594
Erik Gilling84b94142010-06-09 15:35:53 -07007595TEGRA SUPPORT
Stephen Warren243d58e2012-03-05 17:58:36 -07007596M: Stephen Warren <swarren@wwwdotorg.org>
Erik Gilling84b94142010-06-09 15:35:53 -07007597L: linux-tegra@vger.kernel.org
Olof Johanssonfd117cd2012-03-18 10:44:11 -07007598Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
7599T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
Erik Gilling84b94142010-06-09 15:35:53 -07007600S: Supported
7601F: arch/arm/mach-tegra
Stephen Warrend5703bd2012-09-04 15:55:43 -06007602F: arch/arm/boot/dts/tegra*
Uwe Kleine-König3d758612012-08-29 11:02:29 +02007603F: arch/arm/configs/tegra_defconfig
Erik Gilling84b94142010-06-09 15:35:53 -07007604
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007605TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007606M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007607L: netdev@vger.kernel.org
7608S: Supported
Jeff Kirsheref7f5422011-05-15 21:46:41 -07007609F: drivers/net/ethernet/tehuti/*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07007610
Alan Cox4e688522008-04-30 00:52:11 -07007611Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07007612M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07007613S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007614F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07007615
Randy Dunlap4480f15b2008-10-12 16:11:58 -07007616TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07007617M: Chris Zankel <chris@zankel.net>
Chris Zankelf959ed22012-10-03 15:02:19 -07007618M: Max Filippov <jcmvbkbc@gmail.com>
7619L: linux-xtensa@linux-xtensa.org
Alan Cox4e688522008-04-30 00:52:11 -07007620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007621F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07007622
Zhang Ruid3fb6952012-11-15 08:58:27 +08007623THERMAL
7624M: Zhang Rui <rui.zhang@intel.com>
7625L: linux-pm@vger.kernel.org
7626T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7627S: Supported
7628F: drivers/thermal/
7629F: include/linux/thermal.h
7630
Alan Cox4e688522008-04-30 00:52:11 -07007631THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007632M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07007633L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd09448532010-02-11 10:40:13 -05007634L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07007635W: http://ibm-acpi.sourceforge.net
7636W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07007637T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07007638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007639F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07007640
Alex Dubov4020f2d2006-10-04 02:15:37 -07007641TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007642M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007644F: drivers/misc/tifm*
7645F: drivers/mmc/host/tifm_sd.c
7646F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07007647
M R Swami Reddy152ad442012-04-02 20:02:31 +05307648TI LM49xxx FAMILY ASoC CODEC DRIVERS
7649M: M R Swami Reddy <mr.swami.reddy@ti.com>
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307650M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
M R Swami Reddy152ad442012-04-02 20:02:31 +05307651L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7652S: Maintained
7653F: sound/soc/codecs/lm49453*
M R Swami Reddyd392dea2012-06-07 18:37:54 +05307654F: sound/soc/codecs/isabelle*
M R Swami Reddy152ad442012-04-02 20:02:31 +05307655
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007656TI TWL4030 SERIES SOC CODEC DRIVER
Peter Ujfalusi3be79d12011-05-02 14:16:29 +03007657M: Peter Ujfalusi <peter.ujfalusi@ti.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03007658L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7659S: Maintained
7660F: sound/soc/codecs/twl4030*
7661
Luciano Coelho90921012011-11-20 21:40:41 +02007662TI WILINK WIRELESS DRIVERS
7663M: Luciano Coelho <coelho@ti.com>
7664L: linux-wireless@vger.kernel.org
7665W: http://wireless.kernel.org/en/users/Drivers/wl12xx
7666W: http://wireless.kernel.org/en/users/Drivers/wl1251
7667T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7668S: Maintained
7669F: drivers/net/wireless/ti/
7670F: include/linux/wl12xx.h
7671
Per Lidene86eaa32006-01-12 16:45:18 +01007672TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07007673M: Jon Maloy <jon.maloy@ericsson.com>
7674M: Allan Stephens <allan.stephens@windriver.com>
Allan Stephens633d2bd2011-03-13 15:44:07 -05007675L: netdev@vger.kernel.org (core kernel code)
7676L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
Per Lidene86eaa32006-01-12 16:45:18 +01007677W: http://tipc.sourceforge.net/
Per Lidene86eaa32006-01-12 16:45:18 +01007678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007679F: include/linux/tipc*.h
Joe Perches679655d2009-04-07 20:44:32 -07007680F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01007681
Chris Metcalf867e3592010-05-28 23:09:12 -04007682TILE ARCHITECTURE
7683M: Chris Metcalf <cmetcalf@tilera.com>
7684W: http://www.tilera.com/scm/
7685S: Supported
7686F: arch/tile/
Joe Perchesa2e60932011-02-22 21:42:01 -08007687F: drivers/tty/hvc/hvc_tile.c
Jeff Kirshercdd80bd2011-07-30 18:42:56 -07007688F: drivers/net/ethernet/tile/
Chris Metcalf5c770752011-03-01 13:01:49 -05007689F: drivers/edac/tile_edac.c
Chris Metcalf867e3592010-05-28 23:09:12 -04007690
Linus Torvalds1da177e2005-04-16 15:20:36 -07007691TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007692M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08007693L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007694W: http://sourceforge.net/projects/tlan/
7695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007696F: Documentation/networking/tlan.txt
Jeff Kirsherb544dba2011-06-14 12:56:50 -07007697F: drivers/net/ethernet/ti/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007698
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007699TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07007700M: Kentaro Takeda <takedakn@nttdata.co.jp>
7701M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09007702L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
7703L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007704L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
7705L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
7706W: http://tomoyo.sourceforge.jp/
Tetsuo Handa843d1832011-09-14 17:03:19 +09007707T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007709F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09007710
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007711TOPSTAR LAPTOP EXTRAS DRIVER
Herton Ronaldo Krzesinski9f0939b2011-02-24 15:18:07 -03007712M: Herton Ronaldo Krzesinski <herton@canonical.com>
Matthew Garrettd09448532010-02-11 10:40:13 -05007713L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03007714S: Maintained
7715F: drivers/platform/x86/topstar-laptop.c
7716
Linus Torvalds1da177e2005-04-16 15:20:36 -07007717TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd09448532010-02-11 10:40:13 -05007718L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02007719S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07007720F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007721
7722TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007723M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007724L: tlinux-users@tce.toshiba-dme.co.jp
7725W: http://www.buzzard.org.uk/toshiba/
7726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007727F: drivers/char/toshiba.c
7728F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007729
Pierre Ossmand719f902009-03-24 21:06:09 +01007730TMIO MMC DRIVER
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007731M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Joe Perches8b58be82009-07-29 15:04:30 -07007732M: Ian Molton <ian@mnementh.co.uk>
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007733L: linux-mmc@vger.kernel.org
Pierre Ossmand719f902009-03-24 21:06:09 +01007734S: Maintained
Guennadi Liakhovetskid1057c42011-07-17 22:04:07 +02007735F: drivers/mmc/host/tmio_mmc*
7736F: drivers/mmc/host/sh_mobile_sdhi.c
7737F: include/linux/mmc/tmio.h
7738F: include/linux/mmc/sh_mobile_sdhi.h
Pierre Ossmand719f902009-03-24 21:06:09 +01007739
Hugh Dickins98f32602009-05-21 20:33:58 +01007740TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07007741M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01007742L: linux-mm@kvack.org
7743S: Maintained
7744F: include/linux/shmem_fs.h
7745F: mm/shmem.c
7746
Mauro Carvalho Chehab45f95b52012-11-02 11:41:01 -02007747TM6000 VIDEO4LINUX DRIVER
7748M: Mauro Carvalho Chehab <mchehab@redhat.com>
7749L: linux-media@vger.kernel.org
7750W: http://linuxtv.org
7751T: git git://linuxtv.org/media_tree.git
7752S: Odd fixes
7753F: drivers/media/usb/tm6000/
7754
Alan Cox4e688522008-04-30 00:52:11 -07007755TPM DEVICE DRIVER
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007756M: Kent Yoder <key@linux.vnet.ibm.com>
7757M: Rajiv Andrade <mail@srajiv.net>
Alan Cox4e688522008-04-30 00:52:11 -07007758W: http://tpmdd.sourceforge.net
Rajiv Andradecbb2d5e2012-04-24 11:19:58 -03007759M: Marcel Selhorst <tpmdd@selhorst.net>
7760M: Sirrix AG <tpmdd@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08007761W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07007762L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07007763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007764F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07007765
Joe Perchesd6f005a2009-10-26 16:49:40 -07007766TRACING
7767M: Steven Rostedt <rostedt@goodmis.org>
7768M: Frederic Weisbecker <fweisbec@gmail.com>
7769M: Ingo Molnar <mingo@redhat.com>
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01007770T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07007771S: Maintained
7772F: Documentation/trace/ftrace.txt
7773F: arch/*/*/*/ftrace.h
7774F: arch/*/kernel/ftrace.c
7775F: include/*/ftrace.h
7776F: include/linux/trace*.h
7777F: include/trace/
7778F: kernel/trace/
7779
Linus Torvalds1da177e2005-04-16 15:20:36 -07007780TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07007781M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07007782T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007783S: Maintained
Joe Perches86ef9252011-03-31 00:19:19 +02007784K: ^Subject:.*(?i)trivial
Linus Torvalds1da177e2005-04-16 15:20:36 -07007785
Alan Cox4e688522008-04-30 00:52:11 -07007786TTY LAYER
Greg KH879a5a02012-01-31 20:02:00 -08007787M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7788S: Supported
Joe Perches08deed12012-03-23 15:01:57 -07007789T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
Lucas Kannebley Tavares8dd5d2f2012-01-09 17:39:24 -02007790F: drivers/tty/
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08007791F: drivers/tty/serial/serial_core.c
Alan Coxe3288772009-07-07 16:39:54 +01007792F: include/linux/serial_core.h
7793F: include/linux/serial.h
7794F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07007795
Antti Palosaari91952bc2012-10-01 12:28:46 -03007796TUA9001 MEDIA DRIVER
7797M: Antti Palosaari <crope@iki.fi>
7798L: linux-media@vger.kernel.org
7799W: http://linuxtv.org/
7800W: http://palosaari.fi/linux/
7801Q: http://patchwork.linuxtv.org/project/linux-media/list/
7802T: git git://linuxtv.org/anttip/media_tree.git
7803S: Maintained
7804F: drivers/media/tuners/tua9001*
7805
Grant Grundler740db6d2008-02-17 11:53:49 -07007806TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07007807M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07007808L: netdev@vger.kernel.org
7809S: Maintained
Joe Perches0f04e2a2012-01-10 15:08:56 -08007810F: drivers/net/ethernet/dec/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007811
7812TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07007813M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814L: vtun@office.satix.net
7815W: http://vtun.sourceforge.net/tun
7816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007817F: Documentation/networking/tuntap.txt
7818F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007819
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007820TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007821M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007823F: drivers/tc/
7824F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08007825
Linus Torvalds1da177e2005-04-16 15:20:36 -07007826U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007827M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007828L: linux-scsi@vger.kernel.org
7829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007830F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007831
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007832UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007833M: Artem Bityutskiy <dedekind1@gmail.com>
Artem Bityutskiycc8f9b92011-07-22 10:55:50 +03007834M: Adrian Hunter <adrian.hunter@intel.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007835L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007836T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007837W: http://www.linux-mtd.infradead.org/doc/ubifs.html
7838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007839F: Documentation/filesystems/ubifs.txt
7840F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007841
Alan Coxcc2020e2008-05-19 14:21:51 +01007842UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07007843M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01007844W: http://www.uclinux.org/
7845L: uclinux-dev@uclinux.org (subscribers-only)
7846S: Maintained
Joe Perches61bc02b2011-04-14 15:22:04 -07007847F: arch/m68k/*/*_no.*
7848F: arch/m68k/include/asm/*_no.*
Alan Coxcc2020e2008-05-19 14:21:51 +01007849
Robert P. J. Day14fadca2009-04-21 12:24:47 -07007850UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07007851M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01007852W: http://uclinux-h8.sourceforge.jp/
7853S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07007854F: arch/h8300/
7855F: drivers/ide/ide-h8300.c
Jeff Kirsher644570b2011-04-02 06:20:12 -07007856F: drivers/net/ethernet/8390/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01007857
Linus Torvalds1da177e2005-04-16 15:20:36 -07007858UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007859M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007861F: Documentation/filesystems/udf.txt
7862F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007863
Alan Coxcc2020e2008-05-19 14:21:51 +01007864UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07007865M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01007866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007867F: Documentation/filesystems/ufs.txt
7868F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01007869
David Herrmann0a09d3a2012-06-10 15:16:28 +02007870UHID USERSPACE HID IO DRIVER:
7871M: David Herrmann <dh.herrmann@googlemail.com>
7872L: linux-input@vger.kernel.org
7873S: Maintained
7874F: drivers/hid/uhid.c
7875F: include/linux/uhid.h
7876
David Vrabel18332a82008-09-17 16:34:44 +01007877ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01007878L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01007879S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00007880F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07007881F: include/linux/uwb.h
7882F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01007883
GuanXuetaob31d8272011-01-16 00:35:49 +08007884UNICORE32 ARCHITECTURE:
7885M: Guan Xuetao <gxt@mprc.pku.edu.cn>
7886W: http://mprc.pku.edu.cn/~guanxuetao/linux
7887S: Maintained
7888T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
7889F: arch/unicore32/
7890
Tony Finchd8379ab2009-11-27 15:50:30 +00007891UNIFDEF
7892M: Tony Finch <dot@dotat.at>
7893W: http://dotat.at/prog/unifdef
7894S: Maintained
7895F: scripts/unifdef.c
7896
Linus Torvalds1da177e2005-04-16 15:20:36 -07007897UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007898M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007899W: http://www.kernel.dk
7900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007901F: Documentation/cdrom/
7902F: drivers/cdrom/cdrom.c
7903F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007904
Vinayak Holikatti9941fa62012-04-20 14:11:50 +05307905UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
7906M: Vinayak Holikatti <vinholikatti@gmail.com>
7907M: Santosh Y <santoshsy@gmail.com>
7908L: linux-scsi@vger.kernel.org
7909S: Supported
7910F: Documentation/scsi/ufs.txt
7911F: drivers/scsi/ufs/
7912
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007913UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03007914M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007915W: http://www.linux-mtd.infradead.org/
7916L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03007917T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007918S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07007919F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07007920F: include/linux/mtd/ubi.h
7921F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07007922
Richard Weinberger76ac66e2012-09-26 17:51:50 +02007923UNSORTED BLOCK IMAGES (UBI) Fastmap
7924M: Richard Weinberger <richard@nod.at>
7925L: linux-mtd@lists.infradead.org
7926S: Maintained
7927F: drivers/mtd/ubi/fastmap.c
7928
Linus Torvalds1da177e2005-04-16 15:20:36 -07007929USB ACM DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007930M: Oliver Neukum <oliver@neukum.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07007931L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007933F: Documentation/usb/acm.txt
7934F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007935
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02007936USB ATTACHED SCSI
7937M: Matthew Wilcox <willy@linux.intel.com>
7938M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
7939L: linux-usb@vger.kernel.org
7940L: linux-scsi@vger.kernel.org
7941S: Supported
7942F: drivers/usb/storage/uas.c
7943
Linus Torvalds1da177e2005-04-16 15:20:36 -07007944USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07007945M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007946L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007947S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07007948F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007949
Linus Torvalds1da177e2005-04-16 15:20:36 -07007950USB CDC ETHERNET DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02007951M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007952L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007954F: drivers/net/usb/cdc_*.c
7955F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07007956
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007957USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007958M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007959L: linux-usb@vger.kernel.org
7960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007961F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02007962
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007963USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007964M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02007965L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007966W: http://www.linux-usb.org/usbnet
7967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007968F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01007969
Alan Coxcc2020e2008-05-19 14:21:51 +01007970USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07007971M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01007972L: rio500-users@lists.sourceforge.net
7973W: http://rio500.sourceforge.net
7974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007975F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01007976
Linus Torvalds1da177e2005-04-16 15:20:36 -07007977USB EHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04007978M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007979L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04007980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007981F: Documentation/usb/ehci.txt
7982F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007983
David Brownell69ae9e32006-11-14 02:03:31 -08007984USB GADGET/PERIPHERAL SUBSYSTEM
Felipe Balbid6d0f662011-06-08 19:16:28 +03007985M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007986L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08007987W: http://www.linux-usb.org/gadget
Felipe Balbid6d0f662011-06-08 19:16:28 +03007988T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07007990F: drivers/usb/gadget/
7991F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08007992
Jiri Kosina2dea64b2007-07-11 12:12:11 +02007993USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07007994M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02007995L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07007996T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07007997S: Maintained
Joe Perchesc2f01972011-06-01 10:59:13 -07007998F: Documentation/hid/hiddev.txt
Joe Perches679655d2009-04-07 20:44:32 -07007999F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008000
matt mooney857aab32011-06-17 15:50:46 -07008001USB/IP DRIVERS
8002M: Matt Mooney <mfm@muteddisk.com>
8003L: linux-usb@vger.kernel.org
8004S: Maintained
8005F: drivers/staging/usbip/
8006
Olav Kongas959eea22005-11-03 17:38:14 +02008007USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008008M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008009L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02008010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008011F: drivers/usb/host/isp116x*
8012F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02008013
Linus Torvalds1da177e2005-04-16 15:20:36 -07008014USB KAWASAKI LSI DRIVER
Oliver Neukum61eee9a2012-08-01 14:32:55 +02008015M: Oliver Neukum <oliver@neukum.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008016L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008018F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008019
8020USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008021M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008022L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08008023L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07008024S: Maintained
8025W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07008026F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008027
Clemens Ladischaf399172011-01-10 16:32:54 +01008028USB MIDI DRIVER
8029M: Clemens Ladisch <clemens@ladisch.de>
8030L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8031T: git git://git.alsa-project.org/alsa-kernel.git
8032S: Maintained
8033F: sound/usb/midi.*
8034
Linus Torvalds1da177e2005-04-16 15:20:36 -07008035USB OHCI DRIVER
Alan Stern578333a2011-06-15 16:32:46 -04008036M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008037L: linux-usb@vger.kernel.org
Alan Stern578333a2011-06-15 16:32:46 -04008038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008039F: Documentation/usb/ohci.txt
8040F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008041
Matthias Urlichsba460e42005-07-14 00:33:47 -07008042USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008043M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008044L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07008045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008046F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07008047
Linus Torvalds1da177e2005-04-16 15:20:36 -07008048USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008049M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008050L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008051L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008052W: http://pegasus2.sourceforge.net/
8053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008054F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008055
Felipe Balbid3ad5582012-05-21 16:24:49 +03008056USB PHY LAYER
8057M: Felipe Balbi <balbi@ti.com>
8058L: linux-usb@vger.kernel.org
8059T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8060S: Maintained
8061F: drivers/usb/phy/
8062F: drivers/usb/otg/
8063
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008064USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07008065M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008066L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07008067S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008068F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008069
8070USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008071M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008072L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02008073L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008074W: http://pegasus2.sourceforge.net/
8075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008076F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008077
Alan Cox4e688522008-04-30 00:52:11 -07008078USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008079M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008080L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008082F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07008083
8084USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008085M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008086L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07008087S: Maintained
8088W: http://geocities.com/i0xox0i
8089W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07008090F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07008091
Linus Torvalds1da177e2005-04-16 15:20:36 -07008092USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008093M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008094W: http://www.reiner-sct.de/support/treiber_cyberjack.php
8095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008096F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008097
8098USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008099M: Peter Berger <pberger@brimson.com>
8100M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008101L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008103F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008104
8105USB SERIAL DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008106M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008107L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008108S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008109F: Documentation/usb/usb-serial.txt
8110F: drivers/usb/serial/generic.c
8111F: drivers/usb/serial/usb-serial.c
8112F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008113
Linus Torvalds1da177e2005-04-16 15:20:36 -07008114USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008115M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008116L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008118F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008119
8120USB SERIAL KEYSPAN DRIVER
Greg KH879a5a02012-01-31 20:02:00 -08008121M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008122L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008124F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008125
8126USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008127M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008128L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008129W: http://www.connecttech.com
8130S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008131F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008132
Steve Glendinningb3f0db12012-08-15 21:53:38 +00008133USB SMSC75XX ETHERNET DRIVER
8134M: Steve Glendinning <steve.glendinning@shawell.net>
8135L: netdev@vger.kernel.org
8136S: Maintained
8137F: drivers/net/usb/smsc75xx.*
8138
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008139USB SMSC95XX ETHERNET DRIVER
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008140M: Steve Glendinning <steve.glendinning@shawell.net>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008141L: netdev@vger.kernel.org
Steve Glendinning90b24cf2012-04-16 12:13:29 +01008142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008143F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00008144
Luca Risoliaf423b9a2007-03-26 16:12:04 -03008145USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008146M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008147L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008148L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008149T: git git://linuxtv.org/media_tree.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008150W: http://www.linux-projects.org
8151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008152F: Documentation/video4linux/sn9c102.txt
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008153F: drivers/media/usb/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008154
8155USB SUBSYSTEM
Greg KH879a5a02012-01-31 20:02:00 -08008156M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008157L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008158W: http://www.linux-usb.org
Joe Perches08deed12012-03-23 15:01:57 -07008159T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008160S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008161F: Documentation/usb/
8162F: drivers/net/usb/
8163F: drivers/usb/
8164F: include/linux/usb.h
8165F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008166
8167USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008168M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008169L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008171F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008172
David Brownell69ae9e32006-11-14 02:03:31 -08008173USB "USBNET" DRIVER FRAMEWORK
Oliver Neukum686f13b2011-04-29 14:15:53 +02008174M: Oliver Neukum <oneukum@suse.de>
Peter Korsgaard043600a2007-06-27 21:18:18 +02008175L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08008176W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008178F: drivers/net/usb/usbnet.c
8179F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008180
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008181USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07008182M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Laurent Pinchart616bd4e2012-04-02 06:11:09 -03008183L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008184L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008185T: git git://linuxtv.org/media_tree.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03008186W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03008187S: Maintained
Mauro Carvalho Chehab0c0d06c2012-08-14 00:13:22 -03008188F: drivers/media/usb/uvc/
Mauro Carvalho Chehab6c0f0352012-11-02 11:56:03 -02008189F: include/uapi/linux/uvcvideo.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008190
Hans Verkuilb60b9c42012-11-23 07:54:42 -03008191USB VISION DRIVER
8192M: Hans Verkuil <hverkuil@xs4all.nl>
8193L: linux-media@vger.kernel.org
8194T: git git://linuxtv.org/media_tree.git
8195W: http://linuxtv.org
8196S: Odd Fixes
8197F: drivers/media/usb/usbvision/
8198
Laurent Pinchart8282da42012-10-04 02:32:42 +02008199USB WEBCAM GADGET
8200M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8201L: linux-usb@vger.kernel.org
8202S: Maintained
8203F: drivers/usb/gadget/*uvc*.c
8204F: drivers/usb/gadget/webcam.c
8205
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008206USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07008207M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008208L: linux-wireless@vger.kernel.org
8209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008210F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02008211
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008212USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08008213M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008214L: linux-usb@vger.kernel.org
8215S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08008216F: drivers/usb/host/xhci*
8217F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07008218
Linus Torvalds1da177e2005-04-16 15:20:36 -07008219USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04008220L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008221W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04008222S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07008223F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008224
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008225USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008226M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02008227L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03008228L: linux-media@vger.kernel.org
Mauro Carvalho Chehab275ffde2012-10-25 17:01:28 -02008229T: git git://linuxtv.org/media_tree.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008230W: http://royale.zerezo.com/zr364xx/
8231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008232F: Documentation/video4linux/zr364xx.txt
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008233F: drivers/media/usb/zr364xx/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008234
Randy Dunlape7839f22008-10-12 16:11:45 -07008235USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07008236M: Jeff Dike <jdike@addtoit.com>
Richard Weinbergerb15194b2011-03-26 20:48:57 +01008237M: Richard Weinberger <richard@nod.at>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008238L: user-mode-linux-devel@lists.sourceforge.net
8239L: user-mode-linux-user@lists.sourceforge.net
8240W: http://user-mode-linux.sourceforge.net
8241S: Maintained
Rob Landley61516582011-05-06 09:27:36 -07008242F: Documentation/virtual/uml/
Joe Perches679655d2009-04-07 20:44:32 -07008243F: arch/um/
Richard Weinbergerb0709892012-08-02 01:00:47 +02008244F: arch/x86/um/
Joe Perches679655d2009-04-07 20:44:32 -07008245F: fs/hostfs/
8246F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03008247
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008248USERSPACE I/O (UIO)
Hans J. Koch6a534c92011-04-14 15:22:16 -07008249M: "Hans J. Koch" <hjk@hansjkoch.de>
Greg KH879a5a02012-01-31 20:02:00 -08008250M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008252F: Documentation/DocBook/uio-howto.tmpl
8253F: drivers/uio/
8254F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01008255
Karel Zak256cccb2012-06-01 10:13:09 +02008256UTIL-LINUX PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07008257M: Karel Zak <kzak@redhat.com>
Karel Zak256cccb2012-06-01 10:13:09 +02008258L: util-linux@vger.kernel.org
8259W: http://en.wikipedia.org/wiki/Util-linux
8260T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
Karel Zakf899b0a2008-05-23 13:04:21 -07008261S: Maintained
8262
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008263UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008264M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008265L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008266W: http://dev.gentoo.org/~spock/projects/uvesafb/
8267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008268F: Documentation/fb/uvesafb.txt
8269F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07008270
Randy Dunlap4480f15b2008-10-12 16:11:58 -07008271VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07008272M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008274F: Documentation/filesystems/vfat.txt
8275F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008276
Alex Williamsoncba33452012-07-31 08:16:22 -06008277VFIO DRIVER
8278M: Alex Williamson <alex.williamson@redhat.com>
8279L: kvm@vger.kernel.org
8280S: Maintained
8281F: Documentation/vfio.txt
8282F: drivers/vfio/
8283F: include/linux/vfio.h
8284
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008285VIDEOBUF2 FRAMEWORK
8286M: Pawel Osciak <pawel@osciak.com>
8287M: Marek Szyprowski <m.szyprowski@samsung.com>
Marek Szyprowskie76e4702011-06-02 04:52:07 -03008288M: Kyungmin Park <kyungmin.park@samsung.com>
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008289L: linux-media@vger.kernel.org
8290S: Maintained
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008291F: drivers/media/v4l2-core/videobuf2-*
Pawel Osciak9e6f3432011-06-15 15:08:32 -07008292F: include/media/videobuf2-*
8293
Amit Shah9a824462010-03-23 18:23:09 +05308294VIRTIO CONSOLE DRIVER
8295M: Amit Shah <amit.shah@redhat.com>
8296L: virtualization@lists.linux-foundation.org
8297S: Maintained
8298F: drivers/char/virtio_console.c
8299F: include/linux/virtio_console.h
8300
Michael S. Tsirkin2426ec82011-01-31 16:46:20 +10308301VIRTIO CORE, NET AND BLOCK DRIVERS
8302M: Rusty Russell <rusty@rustcorp.com.au>
8303M: "Michael S. Tsirkin" <mst@redhat.com>
8304L: virtualization@lists.linux-foundation.org
8305S: Maintained
8306F: drivers/virtio/
8307F: drivers/net/virtio_net.c
8308F: drivers/block/virtio_blk.c
8309F: include/linux/virtio_*.h
8310
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008311VIRTIO HOST (VHOST)
8312M: "Michael S. Tsirkin" <mst@redhat.com>
8313L: kvm@vger.kernel.org
Michael Wittenc996d8b2010-11-15 19:55:34 +00008314L: virtualization@lists.linux-foundation.org
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00008315L: netdev@vger.kernel.org
8316S: Maintained
8317F: drivers/vhost/
8318F: include/linux/vhost.h
8319
Linus Torvalds1da177e2005-04-16 15:20:36 -07008320VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008321M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008322S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008323F: drivers/net/ethernet/via/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008324
Harald Weltef0bf7f62009-06-17 20:22:39 +02008325VIA SD/MMC CARD CONTROLLER DRIVER
Bruce Chang558bbb22011-01-13 15:45:37 -08008326M: Bruce Chang <brucechang@via.com.tw>
Joe Perches8b58be82009-07-29 15:04:30 -07008327M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02008328S: Maintained
8329F: drivers/mmc/host/via-sdmmc.c
8330
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008331VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008332M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01008333L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008334S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00008335F: include/linux/via-core.h
8336F: include/linux/via-gpio.h
8337F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07008338F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07008339
Francois Romieu01f20732007-01-26 00:57:17 -08008340VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008341M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08008342L: netdev@vger.kernel.org
8343S: Maintained
Jeff Kirsherf2148a42011-05-20 20:43:09 -07008344F: drivers/net/ethernet/via/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008345
Hans Verkuil0b7bc1f2012-11-23 08:21:50 -03008346VIVI VIRTUAL VIDEO DRIVER
8347M: Hans Verkuil <hverkuil@xs4all.nl>
8348L: linux-media@vger.kernel.org
8349T: git git://linuxtv.org/media_tree.git
8350W: http://linuxtv.org
8351S: Maintained
8352F: drivers/media/platform/vivi*
8353
Patrick McHardybe7f8272007-10-23 20:26:36 -07008354VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07008355M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07008356L: netdev@vger.kernel.org
8357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008358F: drivers/net/macvlan.c
8359F: include/linux/if_*vlan.h
8360F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07008361
Florian Fainelli55e331c2009-06-16 15:33:53 -07008362VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07008363M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08008364L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07008365S: Maintained
8366F: drivers/vlynq/vlynq.c
8367F: include/linux/vlynq.h
8368
Martyn Welch390beae2012-05-03 17:52:36 +01008369VME SUBSYSTEM
8370M: Martyn Welch <martyn.welch@ge.com>
Manohar Vanga1bd289d2012-06-14 15:57:01 +02008371M: Manohar Vanga <manohar.vanga@gmail.com>
Martyn Welch390beae2012-05-03 17:52:36 +01008372M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8373L: devel@driverdev.osuosl.org
8374S: Maintained
8375T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8376F: Documentation/vme_api.txt
8377F: drivers/staging/vme/
8378F: drivers/vme/
8379F: include/linux/vme*
8380
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008381VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08008382M: Shreyas Bhatewara <sbhatewara@vmware.com>
8383M: "VMware, Inc." <pv-drivers@vmware.com>
8384L: netdev@vger.kernel.org
8385S: Maintained
8386F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07008387
Alok Kataria851b1642009-10-13 14:51:05 -07008388VMware PVSCSI driver
Alok Katariaf2d7e402011-11-10 20:04:03 -08008389M: Arvind Kumar <arvindkumar@vmware.com>
Alok Kataria851b1642009-10-13 14:51:05 -07008390M: VMware PV-Drivers <pv-drivers@vmware.com>
8391L: linux-scsi@vger.kernel.org
8392S: Maintained
8393F: drivers/scsi/vmw_pvscsi.c
8394F: drivers/scsi/vmw_pvscsi.h
8395
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008396VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Liam Girdwood63405ce2011-05-12 18:49:15 +01008397M: Liam Girdwood <lrg@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07008398M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008399W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00008400W: http://www.slimlogic.co.uk/?p=48
Joe Perches08deed12012-03-23 15:01:57 -07008401T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008402S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008403F: drivers/regulator/
8404F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01008405
Juerg Haefligerab413192006-09-24 20:54:04 +02008406VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008407M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02008408L: lm-sensors@lm-sensors.org
8409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008410F: Documentation/hwmon/vt1211
8411F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02008412
Roger Lucas1de9e372005-11-26 20:20:05 +01008413VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008414M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01008415L: lm-sensors@lm-sensors.org
8416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008417F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01008418
Tony Olech88095e72011-05-14 16:48:13 -04008419VUB300 USB to SDIO/SD/MMC bridge chip
8420M: Tony Olech <tony.olech@elandigitalsystems.com>
8421L: linux-mmc@vger.kernel.org
8422L: linux-usb@vger.kernel.org
8423S: Supported
8424F: drivers/mmc/host/vub300.c
8425
Linus Torvalds1da177e2005-04-16 15:20:36 -07008426W1 DALLAS'S 1-WIRE BUS
Evgeniy Polyakova8018762011-08-25 15:59:06 -07008427M: Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008429F: Documentation/w1/
8430F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008431
Charles Spirakis13927072006-07-05 18:05:15 +02008432W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008433M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02008434L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04008435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008436F: Documentation/hwmon/w83791d
8437F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02008438
Rudolf Marek61db0112006-12-12 18:18:30 +01008439W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008440M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01008441L: lm-sensors@lm-sensors.org
8442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008443F: Documentation/hwmon/w83793
8444F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01008445
Jean Delvaree3760b42010-10-28 20:31:49 +02008446W83795 HARDWARE MONITORING DRIVER
8447M: Jean Delvare <khali@linux-fr.org>
8448L: lm-sensors@lm-sensors.org
8449S: Maintained
8450F: drivers/hwmon/w83795.c
8451
Linus Torvalds1da177e2005-04-16 15:20:36 -07008452W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008453M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008455F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008456
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008457WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008458M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00008459L: linux-watchdog@vger.kernel.org
8460W: http://www.linux-watchdog.org/
Wim Van Sebroeckf599aaf2012-02-28 17:11:05 +01008461T: git git://www.linux-watchdog.org/linux-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008463F: Documentation/watchdog/
8464F: drivers/watchdog/
8465F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01008466
Linus Torvalds1da177e2005-04-16 15:20:36 -07008467WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008468M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008469L: linux-scsi@vger.kernel.org
8470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008471F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008472
David Herrmannb22e00f2011-09-06 13:50:40 +02008473WIIMOTE HID DRIVER
8474M: David Herrmann <dh.herrmann@googlemail.com>
8475L: linux-input@vger.kernel.org
8476S: Maintained
8477F: drivers/hid/hid-wiimote*
8478
David Härdemane258b802009-09-21 17:04:53 -07008479WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07008480M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07008481S: Maintained
Joe Perches116ab802011-03-22 16:34:38 -07008482F: drivers/media/rc/winbond-cir.c
David Härdemane258b802009-09-21 17:04:53 -07008483
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008484WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07008485M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008486M: linux-wimax@intel.com
8487L: wimax@linuxwimax.org
8488S: Supported
8489W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07008490F: Documentation/wimax/README.wimax
8491F: include/linux/wimax.h
8492F: include/linux/wimax/debug.h
8493F: include/net/wimax.h
8494F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08008495
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008496WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008497M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008499F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05008500
Linus Torvalds1da177e2005-04-16 15:20:36 -07008501WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008502M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07008503L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03008504W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07008505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008506F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008507
Mark Brownfebf1df2008-04-02 00:51:09 -04008508WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07008509M: Mark Brown <broonie@opensource.wolfsonmicro.com>
8510M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04008511L: linux-input@vger.kernel.org
8512T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
8513W: http://opensource.wolfsonmicro.com/node/7
8514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008515F: drivers/input/touchscreen/*wm97*
8516F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04008517
Mark Brown055bcbc2010-08-13 14:18:12 +01008518WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07008519M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownfef95162012-04-04 12:06:24 +01008520L: patches@opensource.wolfsonmicro.com
Mark Browncf8eda32010-10-05 19:31:40 -07008521T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01008522T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07008523W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01008524S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08008525F: Documentation/hwmon/wm83??
Mark Brownaf1c5382011-10-14 21:09:43 +01008526F: arch/arm/mach-s3c64xx/mach-crag6410*
Mark Brownf05259a2012-05-17 10:04:57 +01008527F: drivers/clk/clk-wm83*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008528F: drivers/extcon/extcon-arizona.c
Mark Brownb75ea162009-07-02 16:43:08 +01008529F: drivers/leds/leds-wm83*.c
Mark Brown25b273b2012-06-05 18:13:53 +01008530F: drivers/gpio/gpio-*wm*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008531F: drivers/gpio/gpio-arizona.c
Mark Brownd22b0862012-01-21 13:29:27 -05008532F: drivers/hwmon/wm83??-hwmon.c
Mark Brown59ec6da2011-08-19 17:53:12 +09008533F: drivers/input/misc/wm831x-on.c
8534F: drivers/input/touchscreen/wm831x-ts.c
8535F: drivers/input/touchscreen/wm97*.c
Mark Brown9c30959882012-06-23 11:25:43 +01008536F: drivers/mfd/arizona*
8537F: drivers/mfd/wm*.c
Mark Brownb75ea162009-07-02 16:43:08 +01008538F: drivers/power/wm83*.c
8539F: drivers/rtc/rtc-wm83*.c
8540F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01008541F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01008542F: drivers/watchdog/wm83*_wdt.c
Mark Brown9c30959882012-06-23 11:25:43 +01008543F: include/linux/mfd/arizona/
Mark Brown3860e6c2009-09-09 14:46:43 +01008544F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01008545F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08008546F: include/linux/mfd/wm8400*
Mark Brown59ec6da2011-08-19 17:53:12 +09008547F: include/linux/wm97xx.h
Mark Brown055bcbc2010-08-13 14:18:12 +01008548F: include/sound/wm????.h
Mark Brown9c30959882012-06-23 11:25:43 +01008549F: sound/soc/codecs/arizona.?
Mark Brown055bcbc2010-08-13 14:18:12 +01008550F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01008551
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008552WORKQUEUE
8553M: Tejun Heo <tj@kernel.org>
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01008554T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8555S: Maintained
8556F: include/linux/workqueue.h
8557F: kernel/workqueue.c
8558F: Documentation/workqueue.txt
8559
Linus Torvalds1da177e2005-04-16 15:20:36 -07008560X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008561M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008562L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00008563S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07008564F: Documentation/networking/x25*
8565F: include/net/x25*
8566F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008567
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008568X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07008569M: Thomas Gleixner <tglx@linutronix.de>
8570M: Ingo Molnar <mingo@redhat.com>
8571M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08008572M: x86@kernel.org
Peter Zijlstra75fc2d32011-12-05 17:27:08 +01008573T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008575F: Documentation/x86/
8576F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07008577
Matthew Garrettd09448532010-02-11 10:40:13 -05008578X86 PLATFORM DRIVERS
8579M: Matthew Garrett <mjg@redhat.com>
8580L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07008581T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd09448532010-02-11 10:40:13 -05008582S: Maintained
8583F: drivers/platform/x86
8584
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008585X86 MCE INFRASTRUCTURE
8586M: Tony Luck <tony.luck@intel.com>
Borislav Petkov487ba8e2012-10-29 18:40:10 +01008587M: Borislav Petkov <bp@alien8.de>
Ingo Molnarc1f5c542011-06-18 22:51:13 +02008588L: linux-edac@vger.kernel.org
8589S: Maintained
8590F: arch/x86/kernel/cpu/mcheck/*
8591
Mauro Carvalho Chehabd6fad502012-11-02 12:05:07 -02008592XC2028/3028 TUNER DRIVER
8593M: Mauro Carvalho Chehab <mchehab@redhat.com>
8594L: linux-media@vger.kernel.org
8595W: http://linuxtv.org
8596T: git git://linuxtv.org/media_tree.git
8597S: Maintained
8598F: drivers/media/tuners/tuner-xc2028.*
8599
Ian Campbellc4468082011-04-27 15:26:46 -07008600XEN HYPERVISOR INTERFACE
Ian Campbellc4468082011-04-27 15:26:46 -07008601M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Jeremy Fitzhardinged6331802011-11-18 15:56:06 -08008602M: Jeremy Fitzhardinge <jeremy@goop.org>
Ian Campbellc4468082011-04-27 15:26:46 -07008603L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8604L: virtualization@lists.linux-foundation.org
8605S: Supported
8606F: arch/x86/xen/
8607F: drivers/*/xen-*front.c
8608F: drivers/xen/
8609F: arch/x86/include/asm/xen/
8610F: include/xen/
8611
Stefano Stabellini77bfb472012-09-14 13:35:15 +00008612XEN HYPERVISOR ARM
8613M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8614L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8615S: Supported
8616F: arch/arm/xen/
8617F: arch/arm/include/asm/xen/
8618
Ian Campbell9b57e1a2011-04-03 23:12:23 +00008619XEN NETWORK BACKEND DRIVER
8620M: Ian Campbell <ian.campbell@citrix.com>
8621L: xen-devel@lists.xensource.com (moderated for non-subscribers)
8622L: netdev@vger.kernel.org
8623S: Supported
8624F: drivers/net/xen-netback/*
8625
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008626XEN PCI SUBSYSTEM
8627M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008628L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02008629S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008630F: arch/x86/pci/*xen*
8631F: drivers/pci/*xen*
8632
8633XEN SWIOTLB SUBSYSTEM
8634M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08008635L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04008636S: Supported
8637F: arch/x86/xen/*swiotlb*
8638F: drivers/xen/*swiotlb*
8639
Linus Torvalds1da177e2005-04-16 15:20:36 -07008640XFS FILESYSTEM
8641P: Silicon Graphics Inc
Alex Elderc8891322011-11-18 17:21:05 +00008642M: Ben Myers <bpm@sgi.com>
8643M: Alex Elder <elder@kernel.org>
Ben Myers18caa672012-04-12 17:05:05 +00008644M: xfs@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10008645L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07008646W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07008647T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008648S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07008649F: Documentation/filesystems/xfs.txt
8650F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008651
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008652XILINX AXI ETHERNET DRIVER
Michal Simek59a54f32012-04-12 01:11:12 +00008653M: Anirudha Sarangi <anirudh@xilinx.com>
8654M: John Linn <John.Linn@xilinx.com>
danborkmann@iogearbox.net8a3b7a22012-01-19 00:39:31 +00008655S: Maintained
8656F: drivers/net/ethernet/xilinx/xilinx_axienet*
8657
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008658XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008659M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008660W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008662F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02008663
Peter Korsgaard238b8722006-12-06 20:35:17 -08008664XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008665M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08008666L: linux-serial@vger.kernel.org
8667S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008668F: drivers/tty/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08008669
Linus Torvalds1da177e2005-04-16 15:20:36 -07008670YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008671M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008672L: linux-hams@vger.kernel.org
8673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008674F: drivers/net/hamradio/yam*
8675F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008676
Henkaf64a5e2005-10-12 15:02:56 +02008677YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008678M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02008679L: usbb2k-api-dev@nongnu.org
8680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008681F: Documentation/input/yealink.txt
8682F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02008683
Linus Torvalds1da177e2005-04-16 15:20:36 -07008684Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07008685M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008686W: http://yaina.de/jreuter/
8687W: http://www.qsl.net/dl1bke/
8688L: linux-hams@vger.kernel.org
8689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008690F: Documentation/networking/z8530drv.txt
8691F: drivers/net/hamradio/*scc.c
8692F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07008693
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008694ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008695M: Daniel Drake <dsd@gentoo.org>
8696M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008697W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07008698L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008699L: zd1211-devs@lists.sourceforge.net (subscribers-only)
8700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07008701F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01008702
Linus Torvalds1da177e2005-04-16 15:20:36 -07008703ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07008704L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03008705L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07008706W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03008707T: Mercurial http://linuxtv.org/hg/v4l-dvb
8708S: Odd Fixes
Mauro Carvalho Chehab90d72ac2012-09-15 17:59:42 -03008709F: drivers/media/pci/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008710
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008711ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07008712M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008713S: Maintained
Greg Kroah-Hartmandf621252011-01-13 14:47:04 -08008714F: drivers/tty/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07008715
Linus Torvalds1da177e2005-04-16 15:20:36 -07008716THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07008717M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07008718L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08008719Q: http://patchwork.kernel.org/project/LKML/list/
Tracey Dentd16adea2011-08-11 02:59:00 -04008720T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07008721S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07008722F: *
8723F: */